From a5a4347f149d0e870a9db320a56697524dfc69f3 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sat, 19 Oct 2024 13:24:00 +0000 Subject: [PATCH 01/37] fix no mempool flag --- counterparty-core/counterpartycore/lib/follow.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/follow.py b/counterparty-core/counterpartycore/lib/follow.py index 93b99c271c..aa287494e6 100644 --- a/counterparty-core/counterpartycore/lib/follow.py +++ b/counterparty-core/counterpartycore/lib/follow.py @@ -99,7 +99,8 @@ def connect_to_zmq(self): self.zmq_sub_socket_sequence.setsockopt(zmq.RCVTIMEO, ZMQ_TIMEOUT) self.zmq_sub_socket_sequence.setsockopt_string(zmq.SUBSCRIBE, "rawtx") self.zmq_sub_socket_sequence.setsockopt_string(zmq.SUBSCRIBE, "hashtx") - self.zmq_sub_socket_sequence.setsockopt_string(zmq.SUBSCRIBE, "sequence") + if not config.NO_MEMPOOL: + self.zmq_sub_socket_sequence.setsockopt_string(zmq.SUBSCRIBE, "sequence") self.zmq_sub_socket_sequence.connect(self.zmq_sequence_address) self.zmq_sub_socket_rawblock = self.zmq_context.socket(zmq.SUB) self.zmq_sub_socket_rawblock.setsockopt(zmq.RCVHWM, 0) @@ -222,7 +223,8 @@ async def handle(self): util.BLOCK_PARSER_STATUS = "following" # sequence topic - await self.receive_multipart(self.zmq_sub_socket_sequence, "sequence") + if not config.NO_MEMPOOL: + await self.receive_multipart(self.zmq_sub_socket_sequence, "sequence") # check rawblock topic check_block_delay = 10 if config.NETWORK_NAME == "mainnet" else 0.5 if time.time() - self.last_block_check_time > check_block_delay: From 5496518ec5fadc6d30325b14418cf78d2629fb1d Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sat, 19 Oct 2024 13:37:44 +0000 Subject: [PATCH 02/37] Fix logging --- counterparty-core/counterpartycore/lib/api/api_v1.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/api/api_v1.py b/counterparty-core/counterpartycore/lib/api/api_v1.py index 24a7e58996..2c02d12253 100644 --- a/counterparty-core/counterpartycore/lib/api/api_v1.py +++ b/counterparty-core/counterpartycore/lib/api/api_v1.py @@ -621,7 +621,7 @@ def create_method(**kwargs): ) as error: # TypeError happens when unexpected keyword arguments are passed in error_msg = f"Error composing {tx} transaction via API: {str(error)}" - logging.warning(error_msg) + logger.trace(error_msg) raise JSONRPCDispatchException( # noqa: B904 code=JSON_RPC_ERROR_API_COMPOSE, message=error_msg ) @@ -1227,7 +1227,7 @@ def handle_rest(path_args, flask_request): exceptions.TransactionError, exceptions.BalanceError, ) as error: - error_msg = logging.warning( + error_msg = logger.trace( f"{error.__class__.__name__} -- error composing {query_type} transaction via API: {error}" ) return flask.Response(error_msg, 400, mimetype="application/json") From 9cd1aa498d363d84abb21e4156d0515884fb0a49 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sat, 19 Oct 2024 13:46:49 +0000 Subject: [PATCH 03/37] Add checkpoints --- counterparty-core/counterpartycore/lib/check.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/counterparty-core/counterpartycore/lib/check.py b/counterparty-core/counterpartycore/lib/check.py index 65ff449b2a..6a492055af 100644 --- a/counterparty-core/counterpartycore/lib/check.py +++ b/counterparty-core/counterpartycore/lib/check.py @@ -651,6 +651,14 @@ "ledger_hash": "76ca4415a24ae04579b05b517f41441b7cb45eb881db71d1b59de5d373a4bc28", "txlist_hash": "b05b906391cf96d5b4b5893c5fda13fb64635d26785ee3ad1330fe701eb41cb4", }, + 866000: { + "ledger_hash": "5bfa1fef4356b1326c8edfe1af582911461d86132dd768028511d20ed2d9e3f5", + "txlist_hash": "19d1621ea05abd741e05e361ce96708e8dc1b442fb89079af370abd2698549db", + }, + 866330: { + "ledger_hash": "1c5f82ee5009fbc3d94bb8ff88d644aa0b2ec42f21409b315f555f1006bca6fc", + "txlist_hash": "1f5db508a80205eaaa6d915402c7833a0851bb369bea54a600e2fdda7e1d7ff5", + }, } CONSENSUS_HASH_VERSION_TESTNET = 7 From 1b7be0b95b2af9f78d18346eac851792faee5d87 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sat, 19 Oct 2024 17:07:37 +0000 Subject: [PATCH 04/37] Fix checking when mint reach the hard cap --- counterparty-core/counterpartycore/lib/messages/fairmint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/counterparty-core/counterpartycore/lib/messages/fairmint.py b/counterparty-core/counterpartycore/lib/messages/fairmint.py index 40317adc6c..17bf15effc 100644 --- a/counterparty-core/counterpartycore/lib/messages/fairmint.py +++ b/counterparty-core/counterpartycore/lib/messages/fairmint.py @@ -290,7 +290,7 @@ def parse(db, tx, message): # we check if the hard cap is reached and in this case... if fairminter["hard_cap"] > 0: asset_supply = ledger.asset_supply(db, fairminter["asset"]) - if asset_supply + quantity == fairminter["hard_cap"]: + if asset_supply + earn_quantity == fairminter["hard_cap"]: # ...we unlock the issuances for this assets bindings["fair_minting"] = False # we check if we need to lock the assets From 16f0c8acf35267260cc69d4b16d0b84a4590df1f Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sat, 19 Oct 2024 17:10:49 +0000 Subject: [PATCH 05/37] update release notes --- release-notes/release-notes-v10.4.3.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/release-notes/release-notes-v10.4.3.md b/release-notes/release-notes-v10.4.3.md index f4b6b80221..58d762a946 100644 --- a/release-notes/release-notes-v10.4.3.md +++ b/release-notes/release-notes-v10.4.3.md @@ -18,12 +18,14 @@ This release is not a protocol change and does not require a database reparse. - Tweak mempool cleaning in API Watcher - Fix `AttributeError` on `get_transactions` (API v1) - Catch `BadRequest` error (API v2) -- Fix off-by-one error in RSFetcher reorg logic +- Fix checking when a fairmint reaches the hard cap +- Fix `--no-mempool` flag ## Codebase - Add `regtest` and `mainnet` test for the `healthz` endpoint - Re-enable `check.asset_conservation()` and run it in the background, in a separate thread, both at startup and every 12 hours +- Add checkpoints for block 866000 and block 866300 ## API From e9bd9253407647c3f7c844d488456d807c0995c9 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sat, 19 Oct 2024 17:31:30 +0000 Subject: [PATCH 06/37] update release notes --- release-notes/release-notes-v10.5.0.md | 1 + 1 file changed, 1 insertion(+) diff --git a/release-notes/release-notes-v10.5.0.md b/release-notes/release-notes-v10.5.0.md index a9ef7259f8..f774daa07d 100644 --- a/release-notes/release-notes-v10.5.0.md +++ b/release-notes/release-notes-v10.5.0.md @@ -17,6 +17,7 @@ This update requires an automatic reparse from block 865999. - Fix missing check of locked description - Fix missing compound index on `status`, `tx_index` and `asset_longname` - Fix divisibility checking when creating a fairminter +- Fix checking when a fairmint reach the hard cap ## Codebase From e59dfce4b79ce14027bf35076c63e3d8658aac89 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sat, 19 Oct 2024 17:44:57 +0000 Subject: [PATCH 07/37] Don't run ParentProcessChecker with gunicorn --- counterparty-core/counterpartycore/lib/api/api_server.py | 3 ++- counterparty-core/counterpartycore/lib/api/wsgi.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/api/api_server.py b/counterparty-core/counterpartycore/lib/api/api_server.py index 92ed9bd6de..dd6baf7202 100644 --- a/counterparty-core/counterpartycore/lib/api/api_server.py +++ b/counterparty-core/counterpartycore/lib/api/api_server.py @@ -408,7 +408,8 @@ def run_api_server(args, interruped_value, server_ready_value): try: # Init the HTTP Server. wsgi_server = wsgi.WSGIApplication(app, args=args) - ParentProcessChecker(interruped_value, wsgi_server).start() + if config.WSGI_SERVER != "gunicorn": + ParentProcessChecker(interruped_value, wsgi_server).start() app.app_context().push() # Run app server (blocking) server_ready_value.value = 1 diff --git a/counterparty-core/counterpartycore/lib/api/wsgi.py b/counterparty-core/counterpartycore/lib/api/wsgi.py index 3cd2d7d68d..86ced3470e 100644 --- a/counterparty-core/counterpartycore/lib/api/wsgi.py +++ b/counterparty-core/counterpartycore/lib/api/wsgi.py @@ -210,7 +210,7 @@ def __init__(self, app, args=None): "worker_class": "gthread", "daemon": True, "threads": 2, - "loglevel": "debug", + # "loglevel": "debug", # "access-logfile": "-", } self.application = app From 0e7e37795a9fb95cf34d056b04caad2f0795a8d1 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sat, 19 Oct 2024 19:02:51 +0000 Subject: [PATCH 08/37] Revert "Don't run ParentProcessChecker with gunicorn" This reverts commit e59dfce4b79ce14027bf35076c63e3d8658aac89. --- counterparty-core/counterpartycore/lib/api/api_server.py | 3 +-- counterparty-core/counterpartycore/lib/api/wsgi.py | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/api/api_server.py b/counterparty-core/counterpartycore/lib/api/api_server.py index dd6baf7202..92ed9bd6de 100644 --- a/counterparty-core/counterpartycore/lib/api/api_server.py +++ b/counterparty-core/counterpartycore/lib/api/api_server.py @@ -408,8 +408,7 @@ def run_api_server(args, interruped_value, server_ready_value): try: # Init the HTTP Server. wsgi_server = wsgi.WSGIApplication(app, args=args) - if config.WSGI_SERVER != "gunicorn": - ParentProcessChecker(interruped_value, wsgi_server).start() + ParentProcessChecker(interruped_value, wsgi_server).start() app.app_context().push() # Run app server (blocking) server_ready_value.value = 1 diff --git a/counterparty-core/counterpartycore/lib/api/wsgi.py b/counterparty-core/counterpartycore/lib/api/wsgi.py index 86ced3470e..3cd2d7d68d 100644 --- a/counterparty-core/counterpartycore/lib/api/wsgi.py +++ b/counterparty-core/counterpartycore/lib/api/wsgi.py @@ -210,7 +210,7 @@ def __init__(self, app, args=None): "worker_class": "gthread", "daemon": True, "threads": 2, - # "loglevel": "debug", + "loglevel": "debug", # "access-logfile": "-", } self.application = app From c9bea2b0c5eff5fa427a4ff72a7a838635a14e83 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sat, 19 Oct 2024 19:55:32 +0000 Subject: [PATCH 09/37] fix --no-mempool --- counterparty-core/counterpartycore/lib/follow.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/follow.py b/counterparty-core/counterpartycore/lib/follow.py index aa287494e6..4651036edd 100644 --- a/counterparty-core/counterpartycore/lib/follow.py +++ b/counterparty-core/counterpartycore/lib/follow.py @@ -89,8 +89,9 @@ def __init__(self, db): self.last_block_check_time = 0 self.last_software_version_check_time = 0 # catch up and clean mempool before starting - mempool.parse_raw_mempool(self.db) - mempool.clean_mempool(self.db) + if not config.NO_MEMPOOL: + mempool.parse_raw_mempool(self.db) + mempool.clean_mempool(self.db) def connect_to_zmq(self): self.zmq_context = zmq.asyncio.Context() From 25235e3ee1fbcb8bd29dc72005c7bb665fcfa051 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sat, 19 Oct 2024 19:58:56 +0000 Subject: [PATCH 10/37] fix --no-mempool again --- counterparty-core/counterpartycore/lib/api/api_watcher.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/counterparty-core/counterpartycore/lib/api/api_watcher.py b/counterparty-core/counterpartycore/lib/api/api_watcher.py index 931bbdee14..2249eb887a 100644 --- a/counterparty-core/counterpartycore/lib/api/api_watcher.py +++ b/counterparty-core/counterpartycore/lib/api/api_watcher.py @@ -802,6 +802,8 @@ def gen_random_tx_index(event): def synchronize_mempool(api_db, ledger_db): + if config.NO_MEMPOOL: + return logger.trace("API Watcher - Synchronizing mempool...") global MEMPOOL_SKIP_EVENT_HASHES # noqa: PLW0602 try: From 2024fd701a276d69cf326ab4f0ea7ff7f3e32c6f Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Sat, 19 Oct 2024 22:35:21 -0400 Subject: [PATCH 11/37] Increase Waitress Threads --- counterparty-core/counterpartycore/lib/api/wsgi.py | 2 +- release-notes/release-notes-v10.5.0.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/counterparty-core/counterpartycore/lib/api/wsgi.py b/counterparty-core/counterpartycore/lib/api/wsgi.py index 3cd2d7d68d..842167e29e 100644 --- a/counterparty-core/counterpartycore/lib/api/wsgi.py +++ b/counterparty-core/counterpartycore/lib/api/wsgi.py @@ -274,7 +274,7 @@ def __init__(self, app, args=None): self.args = args self.timer_db = get_db_connection(config.API_DATABASE, read_only=True, check_wal=False) self.server = waitress.server.create_server( - self.app, host=config.API_HOST, port=config.API_PORT + self.app, host=config.API_HOST, port=config.API_PORT, threads=20 ) def run(self): diff --git a/release-notes/release-notes-v10.5.0.md b/release-notes/release-notes-v10.5.0.md index 1754b301e6..f342612254 100644 --- a/release-notes/release-notes-v10.5.0.md +++ b/release-notes/release-notes-v10.5.0.md @@ -30,6 +30,7 @@ This update requires an automatic reparse from block 865999. - Have `--force` bypass checks that node is caught up - Have `/v2/blocks/last` return the last parsed block and not the block currently being parsed +- Make the number of Waitress threads configurable (default 4 -> 20) ## CLI From d070d393ab7d7c60238d4978a72da282933c42f1 Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Sat, 19 Oct 2024 23:25:41 -0400 Subject: [PATCH 12/37] Increase Default DB Connection Pool Size --- counterparty-core/counterpartycore/lib/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/counterparty-core/counterpartycore/lib/config.py b/counterparty-core/counterpartycore/lib/config.py index 6097699647..2e6f826c9f 100644 --- a/counterparty-core/counterpartycore/lib/config.py +++ b/counterparty-core/counterpartycore/lib/config.py @@ -185,4 +185,4 @@ LOG_IN_CONSOLE = False -DEFAULT_DB_CONNECTION_POOL_SIZE = 10 +DEFAULT_DB_CONNECTION_POOL_SIZE = 30 From 14ed25499760209881443fdc5dd3144d45b0f661 Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Sat, 19 Oct 2024 23:31:04 -0400 Subject: [PATCH 13/37] Configurable Waitress Threads --- counterparty-core/counterpartycore/cli.py | 7 +++++++ counterparty-core/counterpartycore/lib/config.py | 1 + counterparty-core/counterpartycore/server.py | 6 ++++++ 3 files changed, 14 insertions(+) diff --git a/counterparty-core/counterpartycore/cli.py b/counterparty-core/counterpartycore/cli.py index 5164c8460f..a9e6f005bd 100755 --- a/counterparty-core/counterpartycore/cli.py +++ b/counterparty-core/counterpartycore/cli.py @@ -309,6 +309,13 @@ def float_range_checker(arg): "help": "size of the database connection pool", }, ], + [ + ("--waitress-threads",), + { + "type": int, + "help": "number of threads for the Waitress WSGI server (if enabled)", + }, + ], [ ("--json-logs",), { diff --git a/counterparty-core/counterpartycore/lib/config.py b/counterparty-core/counterpartycore/lib/config.py index 2e6f826c9f..3f26361662 100644 --- a/counterparty-core/counterpartycore/lib/config.py +++ b/counterparty-core/counterpartycore/lib/config.py @@ -186,3 +186,4 @@ LOG_IN_CONSOLE = False DEFAULT_DB_CONNECTION_POOL_SIZE = 30 +DEFAULT_WAITRESS_THREADS = 10 diff --git a/counterparty-core/counterpartycore/server.py b/counterparty-core/counterpartycore/server.py index cc47fdb191..c9e0b3d9e5 100755 --- a/counterparty-core/counterpartycore/server.py +++ b/counterparty-core/counterpartycore/server.py @@ -176,6 +176,7 @@ def initialise_config( zmq_publisher_port=None, db_connection_pool_size=None, wsgi_server="waitress", + waitress_threads=20, gunicorn_workers=2, ): # log config already initialized @@ -598,6 +599,11 @@ def initialise_config( else: config.DB_CONNECTION_POOL_SIZE = config.DEFAULT_DB_CONNECTION_POOL_SIZE + if waitress_threads: + config.WAITRESS_THREADS = waitress_threads + else: + config.WAITRESS_THREADS = config.DEFAULT_WAITRESS_THREADS + config.WSGI_SERVER = wsgi_server config.GUNICORN_WORKERS = gunicorn_workers From 59c53a0c653f649529143275485bb17745f02ebe Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Sat, 19 Oct 2024 23:33:42 -0400 Subject: [PATCH 14/37] Typo --- counterparty-core/counterpartycore/server.py | 1 + 1 file changed, 1 insertion(+) diff --git a/counterparty-core/counterpartycore/server.py b/counterparty-core/counterpartycore/server.py index c9e0b3d9e5..8ff5c48448 100755 --- a/counterparty-core/counterpartycore/server.py +++ b/counterparty-core/counterpartycore/server.py @@ -649,6 +649,7 @@ def initialise_log_and_config(args): "zmq_publisher_port": args.zmq_publisher_port, "db_connection_pool_size": args.db_connection_pool_size, "wsgi_server": args.wsgi_server, + "waitress_threads": args.waitress_threads, "gunicorn_workers": args.gunicorn_workers, } From 0d905f94e3b09bccbe540dfbf61537882216bf2d Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Sat, 19 Oct 2024 23:46:58 -0400 Subject: [PATCH 15/37] 20 is a lot --- counterparty-core/counterpartycore/lib/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/counterparty-core/counterpartycore/lib/config.py b/counterparty-core/counterpartycore/lib/config.py index 3f26361662..55dedb4f7f 100644 --- a/counterparty-core/counterpartycore/lib/config.py +++ b/counterparty-core/counterpartycore/lib/config.py @@ -185,5 +185,5 @@ LOG_IN_CONSOLE = False -DEFAULT_DB_CONNECTION_POOL_SIZE = 30 +DEFAULT_DB_CONNECTION_POOL_SIZE = 20 DEFAULT_WAITRESS_THREADS = 10 From 36e4ed7fcfa0b0e353c5ba35a3e33040e515cc3a Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sun, 20 Oct 2024 08:24:34 +0000 Subject: [PATCH 16/37] fix tests --- .../test/fixtures/api_v2_fixtures.json | 429 +++--- .../test/fixtures/contract_vectors/ledger.py | 18 +- .../scenarios/parseblock_unittest_fixture.sql | 1334 ++++++++--------- .../fixtures/scenarios/unittest_fixture.sql | 1332 ++++++++-------- .../counterpartycore/test/parse_block_test.py | 4 +- 5 files changed, 1576 insertions(+), 1541 deletions(-) diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index efd87dc80c..f236dd9416 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -7,9 +7,9 @@ "block_time": 310703000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "cbc22749655ce8e7fb2eeb4d1737a04dec7bc096ce84b00bf83ca4c7040f448a", + "ledger_hash": "1734f9eb30868d2383fdb38bbda66b1b937209c143632aabc05bf1de167eda66", "txlist_hash": "b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786", - "messages_hash": "704f5a0685b1309b5ba2a9082d9706ae7b9fe4e7b735a008b3c450eeeb2a4460", + "messages_hash": "afb721e64a36bca838751fa2eca929a4fe485fbe69f8fc944e90de74019fd629", "transaction_count": 0, "confirmed": true }, @@ -19,9 +19,9 @@ "block_time": 310702000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "7cb406b1ee19e1ecfc41009f312d918ac0574b92809d99dbfd99bac88992a4fe", + "ledger_hash": "059893c8ed0250380ad8102a8a17d60a92f1abf09000ff41766cbd846aa1efa2", "txlist_hash": "0b912b59131e6aef7fb3313ef75bc138dc1f612d76e77cf583074564ddb6d35c", - "messages_hash": "2a4a14311bfbe235c7a867c69eeadf9d336667ec2abd8ecd3e9468897b0064c9", + "messages_hash": "5a3dfae16547617feeeaed1657c4375f36a5cd2dbbbd2fa22e4faf759f3c15b4", "transaction_count": 0, "confirmed": true }, @@ -31,9 +31,9 @@ "block_time": 310701000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "562a0f298a796b936c21bf552e6945ed2263b62d4022f7a072dc6a4790173e8d", + "ledger_hash": "f235ba99322c9bf8dc115d7fe2b5e51db41b06026ac193718e47e89398c621f5", "txlist_hash": "6b6c62d0facf03efea19bf2e8fa69ecd3c433d45a0ca6b3ed57ed0e5d69b1e2f", - "messages_hash": "965d20b7bbd4c014879731b7ab95f5b38335d80f74c8dc8ccc49e9222144d2c4", + "messages_hash": "b7a4328312125afc3fb1ea33e0d2bb7b8fae879670b170208355a4a27dc48150", "transaction_count": 0, "confirmed": true }, @@ -43,9 +43,9 @@ "block_time": 310700000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "9cac238e8006f150dbd1f09f1743cb50e1870775d67a256ae5c06e0b72fd0b6e", + "ledger_hash": "43196ba8bf43fd138dd117cb0a9c1738d3a2c8917c2ea73893647a2ac0fbe0b8", "txlist_hash": "1977d48057c66abe87f0bdffbcf4d501bd4b9fe138c0bc381409bc44bd503084", - "messages_hash": "ab881a7cc3381dbeb809e622050540b87c404a8a723334e4d6b46482d54f325c", + "messages_hash": "a6aed16c4649d912789340a2a6a297058790efbf230facad044428560dc5836f", "transaction_count": 0, "confirmed": true }, @@ -55,9 +55,9 @@ "block_time": 310699000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "d3ea9e3e4912d71dde006b1f1b2d412d213bee18c8c7606982a08f405c932a12", + "ledger_hash": "66cf0537b2abf572ae579fdb3512d125c181e2a1835b38f89cfee64113922cd7", "txlist_hash": "d91fc03fd15e2ca4fc59b7be29586b0c8f2942abca45ccb49f2fc84e3eff8f94", - "messages_hash": "b84e80bcae7f2d7d19a8a6deee33b8836bd6bd62b53f9a8d38995bf458c39b06", + "messages_hash": "f9a65859e75811f5fff2ece7af021acfbe3f359717c438b682fbfee5c178a0ea", "transaction_count": 0, "confirmed": true }, @@ -67,9 +67,9 @@ "block_time": 310698000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "7a3e7800ae592d461c8d4a90597d65257e14082534f0052e862ea6665151fa65", + "ledger_hash": "aa8b6ca04c8551bacd6f964f2521c07b30d3c07978c992dc59633894ad1baedc", "txlist_hash": "9b6c282c7fb96cbca27fe6b73253cfc31b93ff71dc0d116ebd0d661c33adde58", - "messages_hash": "124decc91575b2b3b4e5c82252f5bad4c3fbad53d82e2cb387ebdf516582ca73", + "messages_hash": "6b61c09bd220de51ea7ce3730d0fb6562e321e30c180ed71088da4b2cc1bd71f", "transaction_count": 0, "confirmed": true }, @@ -79,9 +79,9 @@ "block_time": 310697000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "ef8ebcfad12ea2bdff5760d7a28fd6e0c9ff1f80c5db666df99daf73bb758584", + "ledger_hash": "ae9aa7c4e06059f148a8ed8bf2a4f69c492fac7109a778afbf6cc4d96d36dc55", "txlist_hash": "663e67da5996a4c9877a6c6cb61730798695aee9d89674823917dee2d1ab9708", - "messages_hash": "1f8c4bf719ff7da97a2ae86354d1d9453f98f772b3302afaf87143d198d2c480", + "messages_hash": "b6a66a5e44254ed9459a2fa8a198d060e218db5dce05a6e3904336be3ec5d0f3", "transaction_count": 0, "confirmed": true }, @@ -91,9 +91,9 @@ "block_time": 310696000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "122e4a4d499019a24ee9fcb024541d3ad30e06cda616f82b21a5e18bcaf58728", + "ledger_hash": "75b37c234c5951fb06761175db6d2a9584aa779f35f2f1516ec828230b6b1383", "txlist_hash": "deb12f7c45ab5944a6e08fb2933d3a435860f9e1d8a758486b5e5995258ca973", - "messages_hash": "c65d6968b5674d0faa3ba0ced721c7bb0e452d06db2cd4cc0c87056b42cd81ce", + "messages_hash": "ffd24c9a2503318daab14dd046c526ed11ed3bfd5bb8207cf0048bc689ed4366", "transaction_count": 0, "confirmed": true }, @@ -103,9 +103,9 @@ "block_time": 310695000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "e6a29a3329dac5849c6019688653cb9179792254ea263d908ee1840812eae1e1", + "ledger_hash": "d5ca4a21b2fbe8121c241c097d9f76156106b345296426b5b55bc4885fba4b80", "txlist_hash": "9b08253a46b87ab3df60af60b519dd0c689c0acaca38bcc33f01000bf6b871d3", - "messages_hash": "b0a954ecb6f6b298444e634e0e35c8dc8e642d4cc766e403d18e013081e38552", + "messages_hash": "cdb61ca3479bf5ad207d85590e721983539e58188ddf7f8b539e0e7a02b6463d", "transaction_count": 0, "confirmed": true }, @@ -115,9 +115,9 @@ "block_time": 310694000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "2571bbddd1991d25250bcd1789cd861bda55aeff5e70c90fd854bf7850b478e8", + "ledger_hash": "582bf82bf4bf07a0d20259ae9026e726afcfff035ce715d13a473313dacaa5f1", "txlist_hash": "52939845593123714b4bd665600642d14b61a384befa3498c7582806448150a1", - "messages_hash": "4fd7a64e2d1cfea79d942ac7b358740a3c066cd72c8ec30133cf420f51053212", + "messages_hash": "44f8b452d9ac57fee090eb5d5626b32a388955bb30c5bca995ec3175e87bb4d0", "transaction_count": 0, "confirmed": true } @@ -132,9 +132,9 @@ "block_time": 310703000, "previous_block_hash": null, "difficulty": null, - "ledger_hash": "cbc22749655ce8e7fb2eeb4d1737a04dec7bc096ce84b00bf83ca4c7040f448a", + "ledger_hash": "1734f9eb30868d2383fdb38bbda66b1b937209c143632aabc05bf1de167eda66", "txlist_hash": "b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786", - "messages_hash": "704f5a0685b1309b5ba2a9082d9706ae7b9fe4e7b735a008b3c450eeeb2a4460", + "messages_hash": "afb721e64a36bca838751fa2eca929a4fe485fbe69f8fc944e90de74019fd629", "transaction_count": 0, "confirmed": true } @@ -1113,7 +1113,7 @@ "description": "softcap description", "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "divisible": true, - "locked": true + "locked": false }, "total_normalized": "0.00000050" }, @@ -1387,86 +1387,100 @@ "http://localhost:10009/v2/addresses/events?verbose=true&limit=6&addresses=mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc,mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns": { "result": [ { - "event_index": 1355, - "event": "ORDER_MATCH_EXPIRATION", + "event_index": 1368, + "event": "CREDIT", "params": { - "block_index": 310513, - "order_match_id": "74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81", - "tx0_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - "tx1_address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", - "block_time": 310513000 + "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "asset": "A160361285792733729", + "block_index": 310520, + "calling_function": "premint", + "event": "0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9", + "quantity": 20, + "tx_index": 0, + "utxo": null, + "utxo_address": null, + "block_time": 310520000, + "asset_info": { + "asset_longname": "", + "description": "softcap description", + "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000020" }, "tx_hash": null, - "block_index": 310513, - "block_time": 310513000 + "block_index": 310520, + "block_time": 310520000 }, { - "event_index": 1327, - "event": "DEBIT", + "event_index": 1367, + "event": "CREDIT", "params": { - "action": "attach to utxo", - "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - "asset": "DIVISIBLE", - "block_index": 310508, - "event": "ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e", - "quantity": 1, - "tx_index": 509, + "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "asset": "A160361285792733729", + "block_index": 310520, + "calling_function": "fairmint commission", + "event": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "quantity": 6, + "tx_index": 507, "utxo": null, "utxo_address": null, - "block_time": 310508000, + "block_time": 310520000, "asset_info": { - "asset_longname": null, - "description": "Divisible asset", - "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + "asset_longname": "", + "description": "softcap description", + "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "divisible": true, "locked": false }, - "quantity_normalized": "0.00000001" + "quantity_normalized": "0.00000006" }, - "tx_hash": "ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e", - "block_index": 310508, - "block_time": 310508000 + "tx_hash": null, + "block_index": 310520, + "block_time": 310520000 }, { - "event_index": 1326, - "event": "ASSET_DESTRUCTION", + "event_index": 1366, + "event": "CREDIT", "params": { - "asset": "XCP", - "block_index": 310508, - "quantity": 10, - "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - "status": "valid", - "tag": "attach to utxo fee", - "tx_hash": "ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e", - "tx_index": 509, - "block_time": 310508000, + "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "asset": "A160361285792733729", + "block_index": 310520, + "calling_function": "unescrowed fairmint", + "event": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "quantity": 14, + "tx_index": 507, + "utxo": null, + "utxo_address": null, + "block_time": 310520000, "asset_info": { + "asset_longname": "", + "description": "softcap description", + "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "locked": false }, - "quantity_normalized": "0.00000010" + "quantity_normalized": "0.00000014" }, - "tx_hash": "ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e", - "block_index": 310508, - "block_time": 310508000 + "tx_hash": null, + "block_index": 310520, + "block_time": 310520000 }, { - "event_index": 1325, - "event": "DEBIT", + "event_index": 1365, + "event": "CREDIT", "params": { - "action": "attach to utxo fee", - "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "asset": "XCP", - "block_index": 310508, - "event": "ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e", - "quantity": 10, - "tx_index": 509, + "block_index": 310520, + "calling_function": "fairmint payment", + "event": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "quantity": 200, + "tx_index": 507, "utxo": null, "utxo_address": null, - "block_time": 310508000, + "block_time": 310520000, "asset_info": { "divisible": true, "asset_longname": null, @@ -1474,43 +1488,68 @@ "locked": true, "issuer": null }, - "quantity_normalized": "0.00000010" + "quantity_normalized": "0.00000200" }, - "tx_hash": "ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e", - "block_index": 310508, - "block_time": 310508000 + "tx_hash": null, + "block_index": 310520, + "block_time": 310520000 }, { - "event_index": 1324, - "event": "NEW_TRANSACTION", + "event_index": 1364, + "event": "CREDIT", "params": { - "block_hash": "40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf", - "block_index": 310508, - "block_time": 310508000, - "btc_amount": 0, - "data": "646d6e367133645332456e44557833626d795763364434737a4a4e5647746152377a637c346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383a317c444956495349424c457c31", - "destination": "", - "fee": 10850, - "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - "supported": true, - "tx_hash": "ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e", - "tx_index": 509, - "utxos_info": "1c6f52a3ca4d5f1698d2db3f107da787153bf686fc049f2792074916249fc27d:0", - "unpacked_data": { - "message_type": "unknown", - "message_type_id": 1684893238, - "message_data": { - "error": "Unknown message type" - } + "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "asset": "A160361285792733729", + "block_index": 310520, + "calling_function": "fairmint commission", + "event": "6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8", + "quantity": 3, + "tx_index": 506, + "utxo": null, + "utxo_address": null, + "block_time": 310520000, + "asset_info": { + "asset_longname": "", + "description": "softcap description", + "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "divisible": true, + "locked": false }, - "btc_amount_normalized": "0.00000000" + "quantity_normalized": "0.00000003" }, "tx_hash": null, - "block_index": 310508, - "block_time": 310508000 + "block_index": 310520, + "block_time": 310520000 + }, + { + "event_index": 1363, + "event": "CREDIT", + "params": { + "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "asset": "A160361285792733729", + "block_index": 310520, + "calling_function": "unescrowed fairmint", + "event": "6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8", + "quantity": 7, + "tx_index": 506, + "utxo": null, + "utxo_address": null, + "block_time": 310520000, + "asset_info": { + "asset_longname": "", + "description": "softcap description", + "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000007" + }, + "tx_hash": null, + "block_index": 310520, + "block_time": 310520000 } ], - "next_cursor": 1317, + "next_cursor": 1362, "result_count": 167 }, "http://localhost:10009/v2/addresses/mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc/balances?verbose=true": { @@ -4612,7 +4651,7 @@ "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "owner": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "divisible": true, - "locked": true, + "locked": false, "supply": 50, "description": "softcap description", "first_issuance_block_index": 310504, @@ -6063,12 +6102,12 @@ "http://localhost:10009/v2/events?limit=5&verbose=true": { "result": [ { - "event_index": 1739, + "event_index": 1738, "event": "BLOCK_PARSED", "params": { "block_index": 310703, - "ledger_hash": "cbc22749655ce8e7fb2eeb4d1737a04dec7bc096ce84b00bf83ca4c7040f448a", - "messages_hash": "704f5a0685b1309b5ba2a9082d9706ae7b9fe4e7b735a008b3c450eeeb2a4460", + "ledger_hash": "1734f9eb30868d2383fdb38bbda66b1b937209c143632aabc05bf1de167eda66", + "messages_hash": "afb721e64a36bca838751fa2eca929a4fe485fbe69f8fc944e90de74019fd629", "transaction_count": 0, "txlist_hash": "b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786", "block_time": 310703000 @@ -6078,7 +6117,7 @@ "block_time": 310703000 }, { - "event_index": 1738, + "event_index": 1737, "event": "NEW_BLOCK", "params": { "block_hash": "b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218", @@ -6094,12 +6133,12 @@ "block_time": 310703000 }, { - "event_index": 1737, + "event_index": 1736, "event": "BLOCK_PARSED", "params": { "block_index": 310702, - "ledger_hash": "7cb406b1ee19e1ecfc41009f312d918ac0574b92809d99dbfd99bac88992a4fe", - "messages_hash": "2a4a14311bfbe235c7a867c69eeadf9d336667ec2abd8ecd3e9468897b0064c9", + "ledger_hash": "059893c8ed0250380ad8102a8a17d60a92f1abf09000ff41766cbd846aa1efa2", + "messages_hash": "5a3dfae16547617feeeaed1657c4375f36a5cd2dbbbd2fa22e4faf759f3c15b4", "transaction_count": 0, "txlist_hash": "0b912b59131e6aef7fb3313ef75bc138dc1f612d76e77cf583074564ddb6d35c", "block_time": 310702000 @@ -6109,7 +6148,7 @@ "block_time": 310702000 }, { - "event_index": 1736, + "event_index": 1735, "event": "NEW_BLOCK", "params": { "block_hash": "69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8", @@ -6125,12 +6164,12 @@ "block_time": 310702000 }, { - "event_index": 1735, + "event_index": 1734, "event": "BLOCK_PARSED", "params": { "block_index": 310701, - "ledger_hash": "562a0f298a796b936c21bf552e6945ed2263b62d4022f7a072dc6a4790173e8d", - "messages_hash": "965d20b7bbd4c014879731b7ab95f5b38335d80f74c8dc8ccc49e9222144d2c4", + "ledger_hash": "f235ba99322c9bf8dc115d7fe2b5e51db41b06026ac193718e47e89398c621f5", + "messages_hash": "b7a4328312125afc3fb1ea33e0d2bb7b8fae879670b170208355a4a27dc48150", "transaction_count": 0, "txlist_hash": "6b6c62d0facf03efea19bf2e8fa69ecd3c433d45a0ca6b3ed57ed0e5d69b1e2f", "block_time": 310701000 @@ -6140,8 +6179,8 @@ "block_time": 310701000 } ], - "next_cursor": 1734, - "result_count": 1740 + "next_cursor": 1733, + "result_count": 1739 }, "http://localhost:10009/v2/events/10?limit=5&verbose=true": { "result": { @@ -6183,12 +6222,12 @@ } ], "next_cursor": "ORDER_MATCH", - "result_count": 31 + "result_count": 30 }, "http://localhost:10009/v2/events/CREDIT?limit=5&verbose=true": { "result": [ { - "event_index": 1507, + "event_index": 1506, "event": "CREDIT", "params": { "address": "myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM", @@ -6215,115 +6254,115 @@ "block_time": 310588000 }, { - "event_index": 1338, + "event_index": 1368, "event": "CREDIT", "params": { - "address": "munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b", - "asset": "TESTDISP", - "block_index": 310509, - "calling_function": "issuance", - "event": "01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1", - "quantity": 1000, - "tx_index": 510, + "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "asset": "A160361285792733729", + "block_index": 310520, + "calling_function": "premint", + "event": "0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9", + "quantity": 20, + "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 310509000, + "block_time": 310520000, "asset_info": { - "asset_longname": null, - "description": "Test dispensers asset", - "issuer": "munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b", - "divisible": false, + "asset_longname": "", + "description": "softcap description", + "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "divisible": true, "locked": false }, - "quantity_normalized": "1000" + "quantity_normalized": "0.00000020" }, - "tx_hash": "01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1", - "block_index": 310509, - "block_time": 310509000 + "tx_hash": null, + "block_index": 310520, + "block_time": 310520000 }, { - "event_index": 1328, + "event_index": 1367, "event": "CREDIT", "params": { - "address": null, - "asset": "DIVISIBLE", - "block_index": 310508, - "calling_function": "attach to utxo", - "event": "ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e", - "quantity": 1, - "tx_index": 509, - "utxo": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1", - "utxo_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - "block_time": 310508000, + "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "asset": "A160361285792733729", + "block_index": 310520, + "calling_function": "fairmint commission", + "event": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "quantity": 6, + "tx_index": 507, + "utxo": null, + "utxo_address": null, + "block_time": 310520000, "asset_info": { - "asset_longname": null, - "description": "Divisible asset", - "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + "asset_longname": "", + "description": "softcap description", + "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "divisible": true, "locked": false }, - "quantity_normalized": "0.00000001" + "quantity_normalized": "0.00000006" }, - "tx_hash": "ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e", - "block_index": 310508, - "block_time": 310508000 + "tx_hash": null, + "block_index": 310520, + "block_time": 310520000 }, { - "event_index": 1318, + "event_index": 1366, "event": "CREDIT", "params": { - "address": null, - "asset": "XCP", - "block_index": 310507, - "calling_function": "attach to utxo", - "event": "9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883", - "quantity": 100, - "tx_index": 508, - "utxo": "4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1", - "utxo_address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - "block_time": 310507000, + "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "asset": "A160361285792733729", + "block_index": 310520, + "calling_function": "unescrowed fairmint", + "event": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "quantity": 14, + "tx_index": 507, + "utxo": null, + "utxo_address": null, + "block_time": 310520000, "asset_info": { + "asset_longname": "", + "description": "softcap description", + "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "locked": false }, - "quantity_normalized": "0.00000100" + "quantity_normalized": "0.00000014" }, - "tx_hash": "9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883", - "block_index": 310507, - "block_time": 310507000 + "tx_hash": null, + "block_index": 310520, + "block_time": 310520000 }, { - "event_index": 1308, + "event_index": 1365, "event": "CREDIT", "params": { "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", - "asset": "A160361285792733729", - "block_index": 310506, - "calling_function": "premint", - "event": "0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9", - "quantity": 20, - "tx_index": 0, + "asset": "XCP", + "block_index": 310520, + "calling_function": "fairmint payment", + "event": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "quantity": 200, + "tx_index": 507, "utxo": null, "utxo_address": null, - "block_time": 310506000, + "block_time": 310520000, "asset_info": { - "asset_longname": "", - "description": "softcap description", - "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "divisible": true, - "locked": true + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null }, - "quantity_normalized": "0.00000020" + "quantity_normalized": "0.00000200" }, - "tx_hash": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", - "block_index": 310506, - "block_time": 310506000 + "tx_hash": null, + "block_index": 310520, + "block_time": 310520000 } ], - "next_cursor": 1307, + "next_cursor": 1364, "result_count": 53 }, "http://localhost:10009/v2/events/CREDIT/count?limit=5&verbose=true": { @@ -6703,10 +6742,10 @@ "fee_paid": 0, "status": "valid", "asset_longname": "", - "locked": true, + "locked": false, "reset": false, - "description_locked": true, - "fair_minting": false, + "description_locked": false, + "fair_minting": true, "asset_events": "fairmint", "confirmed": true, "block_time": 310506000, diff --git a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/ledger.py b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/ledger.py index f93d6a313d..2f9af7a636 100644 --- a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/ledger.py +++ b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/ledger.py @@ -55,15 +55,15 @@ { "in": (), "out": { - "message_index": 1739, + "message_index": 1738, "block_index": 310703, "command": "parse", "category": "blocks", - "bindings": '{"block_index":310703,"ledger_hash":"cbc22749655ce8e7fb2eeb4d1737a04dec7bc096ce84b00bf83ca4c7040f448a","messages_hash":"704f5a0685b1309b5ba2a9082d9706ae7b9fe4e7b735a008b3c450eeeb2a4460","transaction_count":0,"txlist_hash":"b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786"}', + "bindings": '{"block_index":310703,"ledger_hash":"1734f9eb30868d2383fdb38bbda66b1b937209c143632aabc05bf1de167eda66","messages_hash":"afb721e64a36bca838751fa2eca929a4fe485fbe69f8fc944e90de74019fd629","transaction_count":0,"txlist_hash":"b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786"}', "timestamp": 0, "event": "BLOCK_PARSED", "tx_hash": None, - "event_hash": "72f12f8d9225bfe88c43e2561d6e34ff4bb061174f0b025fd2e8f37e204dbf2c", + "event_hash": "fedce5d97e17f27770b0093b4c37deaa145b777afe9ffb057cc2d02664686ee6", }, } ], @@ -438,7 +438,7 @@ "utxo_address": None, }, { - "block_index": 310506, + "block_index": 310520, "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "asset": "A160361285792733729", "quantity": 7, @@ -449,7 +449,7 @@ "utxo_address": None, }, { - "block_index": 310506, + "block_index": 310520, "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "asset": "A160361285792733729", "quantity": 3, @@ -460,7 +460,7 @@ "utxo_address": None, }, { - "block_index": 310506, + "block_index": 310520, "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "asset": "A160361285792733729", "quantity": 14, @@ -471,7 +471,7 @@ "utxo_address": None, }, { - "block_index": 310506, + "block_index": 310520, "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "asset": "A160361285792733729", "quantity": 6, @@ -482,7 +482,7 @@ "utxo_address": None, }, { - "block_index": 310506, + "block_index": 310520, "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "asset": "A160361285792733729", "quantity": 20, @@ -500,7 +500,7 @@ "in": ("A160361285792733729",), "out": [ { - "block_index": 310506, + "block_index": 310520, "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef", "asset": "A160361285792733729", "quantity": 50, diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql index 9b7c2d02bf..20a4e3e202 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.sql @@ -525,204 +525,204 @@ INSERT INTO blocks VALUES(310502,'b5a4cd1270bc437e909d9569079ad17437a65822ee9e4c INSERT INTO blocks VALUES(310503,'219e9a113a7c66443183171e389bfd5eaf957f5b8ab825358d72fa8e0cc8c16c',310503000,'e794e603a52f3e8966d35771dc3698466a31e493cd1d513b434f44a8d2b437db','a246803a64e949d7501376b8333ec169ab0c76441b6743343e2028ef495e41e2','05a163f372a97a8c10957d92f6e481c1616b834414a092c00dc4dd57ed65e60b',NULL,NULL,1); INSERT INTO blocks VALUES(310504,'0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25',310504000,'3bef7ac206538a4723ed1049a793c079b942675f3100feabb221595f54f284d1','4dc497bb6f509c52def91393cb8192f576794d95c846ac37a921f50b864589b9','f37d5b6ee083c057b630cce366ca8a8fed968a155cf6d8ebcce2e2935ee84347',NULL,NULL,1); INSERT INTO blocks VALUES(310505,'dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a',310505000,'55fbc2aedec24b51392b85e9bb8d0637a117c5c71347234ab0754e63963a8662','bbc020c792a5a6837aad69d9794344fe13497234bd5ec74d1fb0bf064b7ab50c','9a8a9f1a3e0dff018a80746bbe97d20a068f1e1d1e6f8896b4e2c3315a3d0c9c',NULL,NULL,1); -INSERT INTO blocks VALUES(310506,'9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c',310506000,'d2e34b3aa45be0dd5a211b9748bc71049f42e08be27ed9e08ac65e1f1b5db6b1','a6cab6e8bebae804eb791b48d0a484f6526553e3cce266b54b40afb32a02c68e','f19edd9de332ac85a37d441a7561c48f3d0ca8118c656a300733fbe36853a53b',NULL,NULL,1); -INSERT INTO blocks VALUES(310507,'015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93',310507000,'d494616b8ebe6083310da3b18bd59a01e03747e0290109b2985a0dacdf8d7e67','6abb9b0caedb98bc7ad209096e5baba6418d80fb11ab51a8124d2e87e9a591e0','a2d1455b2938eaa024da6bdbaf7a3a663391a983b6c02688e87156338cb1fb87',NULL,NULL,1); -INSERT INTO blocks VALUES(310508,'40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf',310508000,'1b96f53ad5dbac5355384c4d23cb9b3b3ebf0b66ea33cfb6d3064cb8f4ea3ec8','55c18d8da0b5d415d82b40229995123dcf2151b91a8cf6c4e29e8a03c32a847d','34e947783dccbd14ae84a017a050b567ec11e8dc801e4dd3a990930a303892e5',NULL,NULL,1); -INSERT INTO blocks VALUES(310509,'4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee',310509000,'8842d3d22bd2fa0d1e3ae5e34245085192c6c5b565e92a644058a31cc34f9a08','e8a5ca9c861bda1033047cfb0896cc92d694d0d32343e54b78d861ad5daada14','f1bdbf8b2ab589653e9e24ed47fd277c9429bc6f770f0af980f2ab2a4a096104',NULL,NULL,1); -INSERT INTO blocks VALUES(310510,'b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2',310510000,'99da5c9487749dda0fc8b0557a982108b7abce0972a944ea0f08c15b0c2e1b4e','58e8efe3ac6c19011d997f77a3f38bfd99ccf17ff15615ceeaa8fd1d02f2b73b','1227c5ff4c580ae4ce01f8279216acb5628d6a156b7d34156117e2f050408b3c',NULL,NULL,1); -INSERT INTO blocks VALUES(310511,'e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c',310511000,'75e2822f39decd668b61334c4e6d6ba0cabee8ceae54a5dfa09212d9e6158334','cb29377641d10173aed43643d32f6935da6948a7fdc854f4c5f7f3bf8d6f9721','9d4bc725f81077e675ad2b559f4d5fc2c7e8147faf8d144d08c04876a432d44b',NULL,NULL,0); -INSERT INTO blocks VALUES(310512,'8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5',310512000,'3f94facdb277489e761513f5e36de38331888c7604e9de480423a219894c7103','4f745e593c05074836d20561b50b884ffd4e1c17eb9666ace1c2eea5f51e7d50','426031d0bd0a2691d43534a0c50d069919277679f9bcc3352e1a9139dc01dc0c',NULL,NULL,0); -INSERT INTO blocks VALUES(310513,'ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66',310513000,'95fa563ac99c86ef29c53271bde2a025b3b1b9d50d61f84cea7da5d65ae56f91','e82379e2bd481f39e310670c046d855855c476a4bd0dab621ea06ccd2ac136fa','83ab7d2500a6bd0c7b0de67284ca9566b0df7cdc0db5ea61f62d7c215d5cc91d',NULL,NULL,0); -INSERT INTO blocks VALUES(310514,'39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7',310514000,'1e6610a2d2c2f692b83f48da7b235926c87e72981da5abbf8b27ba383215bde0','c99f21e4275501cdcadb134b8a409da50024832c8ca849deda3161d8b026f1a1','c6354a302be18f6360ce94327224846ecbc2916172fbc797aff8a34cc2975e26',NULL,NULL,0); -INSERT INTO blocks VALUES(310515,'57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8',310515000,'4f09e2e6412ed7f1c152e86987439ce1d3e162163830d26fb5229d6825891948','ee33ce8f40db45f132b15d60daa3935ee8da4593c31f65ea269687594a2c5051','b475dc4626bfd8d25bde2c9bf05357da3f9b10a573deb1c2d898af906382ee9c',NULL,NULL,0); -INSERT INTO blocks VALUES(310516,'ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7',310516000,'b878bef5654a7517edd013f609fe27f8f6681f806b8d43fa4569e96dac33a32a','a461fb607e3e3480b92d679204388b0aa2d2785cf5860e3539be8b41e1702341','02f832da8d21c4943c0c86db06ba98cba64862ca49eb5bf64a06e6e1a38ad2a4',NULL,NULL,0); -INSERT INTO blocks VALUES(310517,'defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407',310517000,'652e89be97ac3684609a4b6a10dce6eb5f74e1ce9fafbaa2cd02320fc322d85f','9bacdf0026c8297570a7d50e6c372bd5a04ed7f748f820b33e7e93340ecb69fd','24f7fa89093e93ec1a75d73f39c5c0171ef4f8cfc102a51d1afba9d260634a78',NULL,NULL,0); -INSERT INTO blocks VALUES(310518,'41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5',310518000,'2511ff65a406e7748f529a19968884ac8c3c140a203319dde46566b8d9c21340','66af0cdab6c52ca6b8ce731143739553d62e1986de0478e346dbc42e570f1503','cec7e18d5b91ef1f2bdd8e2842bae7271062218385e8c6d38a40d6f2cac36248',NULL,NULL,0); -INSERT INTO blocks VALUES(310519,'9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a',310519000,'f0e32de8b078d3ae8cee89841ad40462c7bd9657a5f5bacf45dafb4c41db871c','67662c882b46c7a5ac62a01e7ca43e1290e1fee20a68ebbd1011b93b9f8d00d8','e862fa475e9515aee6897475c7b2fadfdd3df8f0e753b6b4bae272af10b51845',NULL,NULL,0); -INSERT INTO blocks VALUES(310520,'ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680',310520000,'21f8e8433f145298a88f1e3e96b93b3f56a78bbe1228bb989e32ee4a77ef9dfd','4ae19f415141f11f6c3b72d24512114ff7c06d201e2ee94aefb58e9f1921964b','1225035375b39c594596e4ae27ea04676f660484537f9f16690da48922925f06',NULL,NULL,0); -INSERT INTO blocks VALUES(310521,'df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598',310521000,'2db78e0e6098bddcf2d9b736717dc7a847beb8a2caead23526a7295349bc5fd8','243a864c8243f71fa9cfbbbb25e23547337dc04b074d1aae2408a82b11ad3c15','835bd3153c94167b0d109456e09d41544e94123b0c46124930c46ed42cf0ec6a',NULL,NULL,0); -INSERT INTO blocks VALUES(310522,'6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21',310522000,'5c8add5c7f541c3dc9c801eadb506037cd0cebd84e3be0a37b3dadf60a46a3a0','f8d7f3eeef9c11dbb8c8ec8bf5c06e4eacfc812151526c44a4208bb8d585a973','17aaaa53a67562934b83a804b8c36e00b79bbe3c914f79623ca8a6450ad95fc7',NULL,NULL,0); -INSERT INTO blocks VALUES(310523,'0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453',310523000,'06a394efdb543d37060d931b5279f84e03704ddc706f7d5de6314f172d741a0e','065b22682abbad6d9076204a74a4be79acb71b8a8fd715ad334c3351f35f75dd','36412ed56ca125b6f4e6beab02684c7aa9dc68bf62871046afa063fb91008706',NULL,NULL,0); -INSERT INTO blocks VALUES(310524,'b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655',310524000,'7d41fedc94049016674c859bbf11e47f1e29218b7bf0037068052ef3fe3355dc','7b1d9d04b71c2b8f7aa31cdef567336e6f1dfba44fcb4915696ab498c72364d0','14b05fa8e0ab9565bd5d9bddd85fbd7030f15472b4dadeb0cb3f5c8496d6a9a2',NULL,NULL,0); -INSERT INTO blocks VALUES(310525,'2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9',310525000,'8fe5e326806e282f22c556ab8d726c562a9bd7372f090751a8b7136611bf1ee7','52694ea9983ac76659645946334a071b7b5e86e295155526e3a27cd87d81cc87','f315e1e9b3e71d83df3c7021f5e673456b33f39d63737cc51ecfebeb5f779e52',NULL,NULL,0); -INSERT INTO blocks VALUES(310526,'07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d',310526000,'6e0ef4f0f7097d90ddeabc3c00106113d91f9def26c8bd052e2b48093a57dc6e','7c47526dba085953aa0d343f0e5b51520d69f92b3046013d0fa0ed6632b74b4b','504e542e909d0ce8495a313aa9221fbcd02c7367eb55834bbf009b8b56c9233a',NULL,NULL,0); -INSERT INTO blocks VALUES(310527,'5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db',310527000,'a730bfdba793e146cc3f80c875c33a390bbd3200fb8fbcea65dc5f307a15c31c','8d0d0b180ebfe5738144b9e1f8e81f74a90cd81fc7bbcd6490881b8554ba12b8','9c3924d13454430eb4548ffb09964c5fe48c9be11b580bf09f13aef9bedf909b',NULL,NULL,0); -INSERT INTO blocks VALUES(310528,'a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5',310528000,'cf9f4b5a41ed1bc8e054e1702b5c9879f36f1430fe665ed04f161e505404501d','6f1b36c493186bfc813d2e3638d0fa2dc68c2ca7f0823bf3935a2c7d2539da9f','05220c6bdfec2f5cc1469737ab8402c7f70820b5687ff771cba4be8a1f02e0d7',NULL,NULL,0); -INSERT INTO blocks VALUES(310529,'7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b',310529000,'bbac0b9c99cc7e8df7b27295999d4b52ffd603b52a90fc2ee18f4fc51ab1471b','7e4232af9977eb670466868d83e6df5ddcb39d899f33ef653b87d58b422ab64d','919635e8583a6110f8497d5716d532d6cb832801649389f92ae1952c23652151',NULL,NULL,0); -INSERT INTO blocks VALUES(310530,'f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110',310530000,'80db4f033b0adfc86ef43309e703ae2862c143dfd927194576af420ac2d17d1c','7e4077941dd95a2b0e51b0ad680935a7232fa5cf31f664150510172e4c2e6da1','c69df884ca4d6e5c7e1fef3c1f5249a8e532f312458e8bf87079742bea523705',NULL,NULL,0); -INSERT INTO blocks VALUES(310531,'764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15',310531000,'3fe09cfd91c8284a31e545f63a2a8462a5c9d8c851c065272d36ae4618e4d849','1245439b0d3fff0822ebed6e6ca34f99f24194cfb36fb2649ed61b0ac26ed7a8','666625d2555c2db293b3b11ea1fd91473da269918fc82c0d3fecf2a2ce02ab44',NULL,NULL,0); -INSERT INTO blocks VALUES(310532,'4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836',310532000,'9871ebbbda65fb698a50235df2c22fd2283dab1a083f9ba2d31febecc2669852','6004fe4cc5ce025759106802ff56bddaf546e7a9d71510e49a4098766a794726','3f257c8f58cee62ce4164c0131b3575cecd627be50680b1f890b46765a646c5d',NULL,NULL,0); -INSERT INTO blocks VALUES(310533,'4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912',310533000,'5eb75c91baf2549f7905a51ce3dd926721cb7fe2052584eb393c3af649414403','b9a73939683499b11ce35245014153232ddde14a49fbcc8cdcac3f02c9265a72','a7aeb1dd865847604745f1a573fd54b46802b15710a4e8ec7016b0f374be41f5',NULL,NULL,0); -INSERT INTO blocks VALUES(310534,'2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad',310534000,'a291950484aec7e60f0fc17ed29d3908a5343ee24b3a8b926adcc2016c436aba','36dfe8e8614a4f5046330df939031d7618e0c5ec9a5e9a23adfb5abf81b17832','92f4c332c7d4e7ee6fc1f1d79b6dbef85bacb4eb52074b09bd276c076708d06a',NULL,NULL,0); -INSERT INTO blocks VALUES(310535,'0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce',310535000,'fdc4940a776dd241bf5caaa5875fac2d1d869ec438ccb6ea96b67c1942bf9c7d','9be9aa1d1972bdb4febf132b2003528501375ed67a70a92efdebdeb4c1b98a90','bc583defc3c0928f1201a8733b340b17d66854021a38484570758907c08fffb2',NULL,NULL,0); -INSERT INTO blocks VALUES(310536,'dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018',310536000,'a18b4922df0afa7c7ee49756eaf808c7cc4d9d05cfb9c9077a165b2f592d95eb','f2187b1c129b489914599faed5415ba0d52a0bc44e49453df54648a30f505ce2','c1e8b7741a7724641ffa1a82dd951186f09c1647f8ce7ce1e6ab525c16338533',NULL,NULL,0); -INSERT INTO blocks VALUES(310537,'944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d',310537000,'a0761e85b4872b162dbfe429f4fecac2e73e6e03a0a1ae6488327003d8630b25','849255d12eb06d2dbf9ebd04fe0a99602216890abe7cb6faae4b13fa3dc0b3fd','b55901750fc8eae849b2436fcb86ad92e67c65782dff7caa014be480f1c36210',NULL,NULL,0); -INSERT INTO blocks VALUES(310538,'75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd',310538000,'44822634a5906e095afbf44d44daeaa36199d6af3d6c8c00e731e88fe953e36d','8ab5b08a8f5f57d62cc8fdaefb001fb34757bc7dfa355311af7e993338c15e80','7d2250ac3d3a16cadd09c362cfb75f37ab216ec09efd5c88156fb1b82d2dad45',NULL,NULL,0); -INSERT INTO blocks VALUES(310539,'338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3',310539000,'4f5a26997d376667b7c37e6d95e207fe429c09c05e5367b3db0b6a8fb74d23af','f889de9308ec0bbca7f214cc8c81030ec5317cb72dddbb97dd3b00a002c4fa64','bc46707dbc59f1e220e0b495f1f0efc12a9917f9bd9147d446c8b87a93d029be',NULL,NULL,0); -INSERT INTO blocks VALUES(310540,'0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d',310540000,'8a87004e3a64106806696f71d7efb9bcae3135c322f297ad7de379c29ec8313f','474f6e2a51277c8f90f02aab78058b6b9c7e3327d0cec325ff6002e058148496','ea1e0e430289a1643f5cb0bd3d6d9163a039909fe3665760a961d18073095fd4',NULL,NULL,0); -INSERT INTO blocks VALUES(310541,'ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453',310541000,'6d998264dfe16f8058aaa5858cb79e79ad69fc2d329c02251b00b1e0167a7c4e','0b004058cd27a1be5261693a5203d69c14f2ca5b3105d21bf28ef3f49273f885','6c40c21a73ede375b284285d1a92654f59703a39f6a86da1ffadf749a4716049',NULL,NULL,0); -INSERT INTO blocks VALUES(310542,'7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2',310542000,'62a19834e7fbf406a9aa79eadb62777fcca224a7989db7de1067b2e6caa63369','7553c0132cfd45b14cbab4f1e59510933069a4f3b82be8a0e2f13d08e3a06cf3','010fc2e1fe45d582619ecae7a17c4c61a109ef7546065e8e114c1ee3150b8a5c',NULL,NULL,0); -INSERT INTO blocks VALUES(310543,'cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2',310543000,'33219794788b90ec54583a14b734f678f557e0bdd8b34f7bce2ac42ea3a6c0f6','f7e56981d310a7b8a06ea7ce6c4d4091ce35e4a8023ada8890e952453dae8201','9352986391e5180e06cad855006335fb840493e528785721e9c33a22bf5ea10d',NULL,NULL,0); -INSERT INTO blocks VALUES(310544,'c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6',310544000,'b59bad9fcba90d7f5bfced7e90f5c9672b2ffe33d79bb9cb20c2baadcb964e50','bdf0fae7bf5083ddc2a99a4a7efbaece20070f0145e44b67567f71c90b29ca2e','72a45c4d8f834e61b65e0252c77cb8e57a5113d5244c96e4ba931340f0d829fd',NULL,NULL,0); -INSERT INTO blocks VALUES(310545,'aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a',310545000,'cbf12a5107ecad81944e4f881bfe77b2d78564160f266d8e71667645932956e1','9a25f3b3bb017cd926e1fa8b768324a147979f518208c106ffbad1b5fb8d502d','9c8c5a5d9e0e40ca08179ed61ae3ae32b05133c6743c2bbcef94e96229ddf7e8',NULL,NULL,0); -INSERT INTO blocks VALUES(310546,'20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d',310546000,'f25847e305f7db225949a80d76e9e1bdada01021099c5c0fb08ddfdcb78ab480','cff6edc9625c136443e036d39b1ed3cc5e76a49b919795f05cb92e508e4cead5','b96accbcc891a2256e584d14dd3d339355aefc1c1109f0fe42e562797c342e85',NULL,NULL,0); -INSERT INTO blocks VALUES(310547,'f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7',310547000,'d39a0f8a9ff6b86cc72abc351e8391e0df2ab52d195035f009d18d11d5d5e9cf','3a305e7a9b8de2e2ec9f43206a08e257a1e17c540f0e47625b64feafc3413daa','7b9d3c1636efdfd8a82b4c46507b704e936e6e8258589e16d9a820176eb787b0',NULL,NULL,0); -INSERT INTO blocks VALUES(310548,'bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2',310548000,'1f54b81e87e72ae3f76c8fb8f348a3dd24f2918be8e2914267c93d58c810efcd','6a9672fcd678d39907e6c01137f2c6514ff99929cf60171c1760e72dea1b1f19','7af4c43009cf4dd3a831d1a5c8c0bb68888b8e6d72a9cdf4775409852b65087d',NULL,NULL,0); -INSERT INTO blocks VALUES(310549,'8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979',310549000,'697b6c693e7cdb7fe22a9b1d9d7b9332c9ca9197adb351245b543e24fef49c2e','d16823e9ed0b346917aae45cd173cbd173d229f284cb95ec7af7c9b159b2d8c8','836a9ceec89f9ae37667a2adb677f1714060f398530eb4a7b6c5c3b95b1be986',NULL,NULL,0); -INSERT INTO blocks VALUES(310550,'08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914',310550000,'353f9dd7d173823446e7a4d536b2a136a0005dec0306ec18541d1c95b06e2986','6ce86b2a35a931348e98118c7426950ad4ee1a9fa557cd3c1eab0c4fd8d3f144','7ff391cbc597eebea8fb24e1923b93be79fb044f40ef612b27221dedb6b1fee2',NULL,NULL,0); -INSERT INTO blocks VALUES(310551,'cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b',310551000,'cbaf72ce2e4047e48974e4839f6e033fbc0cee5d3599cee2ce43af879900b5d5','49db288f7c65afd8f99a1f8e6edc85dac9c599d27be113df4b6246f9232a6056','2094bd531d4c5bfaa19bbd0021a74b200880f5402449db0c6a8f9fdf4b9ad7dc',NULL,NULL,0); -INSERT INTO blocks VALUES(310552,'d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d',310552000,'056d1a4bec68b036c52ed73a5086a3bdca8649dfe364480326ae170534da62c2','f5ba7a3fdb9394f101d5187b107ad937fa5a224c290119cd76bb37710b1600a6','819300e47b634f4895bb8df78cb17f8a4e74ab04b4410d6fd00090957e64cf41',NULL,NULL,0); -INSERT INTO blocks VALUES(310553,'d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2',310553000,'5bcdeddae792fe5322b07b5edf563f1de05f7ecf2f54a0d9c88b76ec2be96617','b1777df226b373535e3fff13e4379375cd601d0cbc1a90951cf288d21eb66aff','1cb3860758eee8411742b13c8f69b255bb02de353b3e99bb9cd5c7542eab40e0',NULL,NULL,0); -INSERT INTO blocks VALUES(310554,'7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65',310554000,'8f28d0859871fd1513213cbb15d5825419c12bc23b2affd954b35cdc63d28536','870b61238a3e7c740fb52ba62719724cf95250ac22a4705dd88a1870f560fa1c','5fd6ed58ddb4ca4ff4f67850d8037bd9fd9197446576d43bdc9a647f02e99bc6',NULL,NULL,0); -INSERT INTO blocks VALUES(310555,'c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa',310555000,'8d9f3a940b5094e7e59de402cfa9c2b07b9d95fb9afde5400e9884c15712df31','8b3bd64e05150c476d55dd64729b8e20e7b8c345c35c723392b194785472c6a3','8c61e56049534b413b5f5d30feca4ccaafc492dab7af43f3f3a33706f74b0fd5',NULL,NULL,0); -INSERT INTO blocks VALUES(310556,'4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a',310556000,'6855961c09b3b8b8ef2e8b9aee33b7da1d36228e2af0792932c3f7419d6da242','a858a0bafa17a74c79b65ca07ad3418ac201e5096c87159bf789f40c3d84679b','c7cb6b173e457394f5d2408520f95584489146dd500d102e2d3d5768819d0522',NULL,NULL,0); -INSERT INTO blocks VALUES(310557,'0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382',310557000,'3b3c17afde8ac19daec1f9e6ac4ddfb80ef6e0638be51e1753f0a23baf378fb5','6cc6e826d65d96cd9546e3e459934acfac6456a706ed5423da4c4ae0c71feb83','5b3203ca1a8e30ecff1d98090949ee36fb90af1cac932e0b72a0cda843da69c2',NULL,NULL,0); -INSERT INTO blocks VALUES(310558,'75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15',310558000,'4d503551c20c5d235f77879f85d947f00c5041567ddd19d307042b4662036bdf','56c4cf4c2b8562bd4e1721cbcfb9faa7c67e31e6f1abd95525084cc51dabf3b1','d4c9396893f2b11c371f235e13725b68384e13b0e8d2f368125d45e64e7ee0de',NULL,NULL,0); -INSERT INTO blocks VALUES(310559,'6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc',310559000,'31fec5359649d8c4a59223216b4f190c3c8639a7b2b4d6c91a8ea26929f5247f','7d1ba0a6152887e4a66e003c7444c35fd14a9ed3c48455e6ccd8476ff232cb55','09e26f07054048a2af8ac5c8cc2ea347dedc992e9fe1b6c12b2ad7bf27de8ed8',NULL,NULL,0); -INSERT INTO blocks VALUES(310560,'d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec',310560000,'298bb7532a1c40a663cad5fabdb1cab1b85c0e876b9fd350fee91983688ec701','65eb78129546514584c78b914d05644975681daa08d796aab35e3662a4a9f387','42a8cb47d6874c78b2061560207b4670bddaf27148bd04de0daa4e13ac5fca08',NULL,NULL,0); -INSERT INTO blocks VALUES(310561,'b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee',310561000,'918f0648deb5255921569d3938fd05d438dfc62a14b5f87335642c86507739bf','3c09fa18d2fcc72e4afbca9679e46f5bb5f4d56dc2b5d4da3282c758819d5403','30331c707eb0a4ba121e095687168967d3c8c567395d098fff7aaa96fdca7859',NULL,NULL,0); -INSERT INTO blocks VALUES(310562,'4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405',310562000,'794af8befc03cfba539c0521496a4b0c9989e30a3caa5b61fee6593daaf3aed9','e06b6edc60212d17694503e28f4d8879a12b5c9f0d75fe281e0ffea001d78c76','00cb38c4cd96fb13a8db283bedd5f8daf98d3a777fce4915f6ebd42c9fe7f40a',NULL,NULL,0); -INSERT INTO blocks VALUES(310563,'f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636',310563000,'33acceb8a2020c1c3076a85888772b4e5a1226be90e169aea7a79f1dcae0c77e','4df37acbbdd1a1f9c717f58748f170d7ded7f62b686121a9f821275fbb12e25d','d34331ac044b779e3531087c7fb7d9f5d0a7a171a14a479babc00e5c0d326239',NULL,NULL,0); -INSERT INTO blocks VALUES(310564,'cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea',310564000,'229e114ecd638e974aaa61f1d54673df550e5c6180fa316389642c967d702bb7','f145d6e47e0640e5b13185eeb88286b190884347aaaced30f2a3ccf1d934b75a','f22a1d0575a8f148aba74f1b1fff2e0ca51d0732b780ebb9a45bee8e0f41c921',NULL,NULL,0); -INSERT INTO blocks VALUES(310565,'954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305',310565000,'5c53d7ad75f3555e7f7eef51c5feae9d95f0b721f2f8c297ebe185a2e74d3053','db540061e4a8c10001274daf3bd8addd05306a07836ed6369388720544aae941','038a28d7e697da93577a7abcfac353d7409b0f6ce26772281a9bdd41102c5239',NULL,NULL,0); -INSERT INTO blocks VALUES(310566,'3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39',310566000,'df9192301e714c00210833532326501b47fc993a006acecb9871826c53dfa60c','bc9927aa4bb22304a9ea2edc24e6fe5d8d6b6d6f1083cd64a5098492e811f2c9','367b03a65f437966835c093f267676163ec0c5991c2f6f0a080be548d483f0cf',NULL,NULL,0); -INSERT INTO blocks VALUES(310567,'499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431',310567000,'ebffee7f4b8ffd4a2e29837e2f65f9c485f85bdd08504dae239a7efa29fa4d59','98c790c8b92ac26f828848a06f10408d459b5fe2f54529f3137754d31cb103bd','5c7c2ebb9de95b8e27a5c367ad4b7915161cc2f953510c6709edf65a23296e6b',NULL,NULL,0); -INSERT INTO blocks VALUES(310568,'ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e',310568000,'97c8786092e3685c8916143bbd2a059791b6e2ba46218c0e4debba4448b5d0b3','570347e1c43a67562eedbef0f6d1a5e9945e293058c5277ec2ae0efb8254eb63','6e4246f6142ea3858f1dd7b03ae80c544e053ef04d71e773184b9bde490a86e7',NULL,NULL,0); -INSERT INTO blocks VALUES(310569,'c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de',310569000,'a28ba712a296e1d7b16bc870c661754529f9dcc88bf8cccced55d872d3541bcc','2efe30e2ed6a9f020f3ae70db81c701cfe07d9bd24451dd80294d0692c63685c','bac17b6f0ad8186129cde3d4af94d4060b72db532c3e1f16cdc8d5a7f4c7d98d',NULL,NULL,0); -INSERT INTO blocks VALUES(310570,'f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55',310570000,'2f8006f26a6de634588bbf77a34c9738306b6241a65ea0b69b6ed49a52186c90','2ff0d7d5e4fb10d63fdab2561aacdc90f92f0df462bd652fe58f23c076242e82','7d2794a3076987332851c0eeec05e51f6413b71601cd007ca07a1e3c8b4b5e35',NULL,NULL,0); -INSERT INTO blocks VALUES(310571,'b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73',310571000,'d44dbf0231c9a0ef8ea7282ae6866df099c6b143fbea41abedd96a4303e285b8','7098b0fe2e0577a4d1ccd090b3b9ffa952b5c1fccb8fbaac6b1a43635084eef8','30c0f19d47d78b0e6a5c843a9479a712e92bfb7dfd3523939ab19a5411b475ab',NULL,NULL,0); -INSERT INTO blocks VALUES(310572,'6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9',310572000,'27a4161e0d0ad2f65ef32d4dbb1b1bbe44a08abbc98af9e20674a8779c07a59c','e7db661177bca11155df203594bdaf815bb537d525084767ac0ed6e9fe99fd5a','14e7ec83214dc2e364deed75690e2cfd70cf5116aef1cb42b8a22b55003239b3',NULL,NULL,0); -INSERT INTO blocks VALUES(310573,'302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5',310573000,'63a2b48574e98a59c8e69c26886c48bd25d2afec89f7554145c4e342c6ba18b9','672565a64f687b09950572bb69dc51cc874a34d8808bc861d84bb3d227da1f30','98833b1c69e87ecde559dc204f53285facb6751897e773829c31834fbe996599',NULL,NULL,0); -INSERT INTO blocks VALUES(310574,'c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d',310574000,'1a27efbd3b088f35dcac8186f7eb795bbdd96273cc2359b368b6a64498ca1876','c681d31f5e8b1344188913364f2eac845db9d9a936b45f6eada955996b7073c2','0311ec09263c91fcc861f8e8204259d50751c332567e7855a5971209e6324e1b',NULL,NULL,0); -INSERT INTO blocks VALUES(310575,'fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde',310575000,'d76913a45582bc5e55943c8944f8a1320eeb3631b32f5d8470c44b8d62655966','3ea5d34d65420a54fd0a1c8424f3afcfa5eb40707eb42088814218583ff36cbd','fbbdb09df06575e75d67b47de5436ebe471a9c5c33cdafcb1aa00ee45dbed7c1',NULL,NULL,0); -INSERT INTO blocks VALUES(310576,'b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5',310576000,'f7fca8d1a77ceface6731d23bfea3ec36f63d4cb201e44c36f57d01f9107d045','19eafc5f2e2d7ec141f9f2bd1d5c7fb0b380adead15654553498e3af5bba0ea2','0d4771b4cac31dbc2f51e12117a73f5223fe6993d8a7e6c3ac9fcc87de7bb230',NULL,NULL,0); -INSERT INTO blocks VALUES(310577,'a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3',310577000,'1cdb07845fec337dcde9404762ddf77a14355e5b78817964f378a830427fd197','be512460315bb9b670cd1b9e78165df49fc17a8851dd7b66bb58a0e83bb4e487','8e42b3affbcf5935286117e73440608272964f3ed3ccfd244a7bc4e598767e0a',NULL,NULL,0); -INSERT INTO blocks VALUES(310578,'f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf',310578000,'19640d7fbf5a9a85606c6b6971b3039bd870e8e11602c98da1c83269eeee9eb5','56dee75f67260fc83f55a276ed430bb1c9495d91b54d323a3d0cc427686a85c4','f92169e487d9f1b1587939fd1398d677b9a8612b24aadeb6f6c33138bde395fc',NULL,NULL,0); -INSERT INTO blocks VALUES(310579,'672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38',310579000,'2535535df8e8250cb90972418faa698e79a766a42d0321f7bfd2d68426fe2c6c','c9a5cabe5916d0d169e06c7528835c5fcb00af3515e0c44e5e17c567dc52f1ee','91a42777b228ae160da8ef3f3f522ee6b4bbfc4fa55f0fa13ad93af6bf9ca85b',NULL,NULL,0); -INSERT INTO blocks VALUES(310580,'e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13',310580000,'48f6ae3b5d93cf4b2d6deaa8dd30fe2486cd1f98020a3121add7cfe9f64d0d1f','b484963a876ccbf57728287a7cae8ad916cc4523219b7f2fd6c42bbdfaa5ead7','0398e37743a453d86ce9dbd40180ec3b7d704f1f3818f938a73984a91057b829',NULL,NULL,0); -INSERT INTO blocks VALUES(310581,'baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a',310581000,'c97da518cca598c170a42b948fd0091798370a2d0672788619b42cdd5386a2b4','301ff101dba0c28f5603b3776bd17f373f30a5e77c8e619dee30e323322e4680','0f2f71ae9e55d958b0d725dc9f1bcee3b5a2fabfe19414e84898c7f921b081ca',NULL,NULL,0); -INSERT INTO blocks VALUES(310582,'08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c',310582000,'0663d39d2f80ed99eb3e017a9bf8626344ce6f220da4c86f3cf29b250e9a66f9','3e8a5d33e8340bc7e1c96c95f4eece8320807dd01e7f66a53f9afbcd26b19fa3','17de9b8c13566e250cafb691f8c46ba6bfe0be93848af606d502a8ae75aff56f',NULL,NULL,0); -INSERT INTO blocks VALUES(310583,'22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4',310583000,'948c8ab523cc1b2c514d2023f3ec9da1c5abd99312a52083fbcafdb3cd584d55','60d468a45c64869425508b88e3fbe166690c3009fcf33e3292fb2da145079044','41b79447a81a386694351e4e7da7eb3a7233e95a226ba6ec752414c8cf10c771',NULL,NULL,0); -INSERT INTO blocks VALUES(310584,'db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b',310584000,'756c6163f2bb1f47c57ca55ca571793115cb650efd08096e67ae5f78c26092f4','ebebd15c29221496c6547f786ec67bfe72278cbb8e15fb96737a30094880557a','ddbc40c471276db0176d1d76f57a552344267513223b1f902745e1350bd8a1d0',NULL,NULL,0); -INSERT INTO blocks VALUES(310585,'a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb',310585000,'0e5ff2b0d4c06e384768b425e4553c1c8e41dd89f0aae6c955a4b5f6cab16f34','733e1df46cad658a76f3ae6bd51acb09be0932fdeb5f92e99b94bd5bec78ecb0','401a2d467537d5293b7dfb6d7d4b7954316bdbafb1cdd87a853c6904c9f23fb3',NULL,NULL,0); -INSERT INTO blocks VALUES(310586,'c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7',310586000,'396eb8297b2b514b584d2f799b6cc8ebd613b5eb443bd01e68055ae8235bef16','3ead47e29b52236c485f6461d73c47c076f23aa5c96d2462adbf265966426f5d','447c626e05958d55f2184eb8716dc80c3feba04674fae3b1500d6a7577fee914',NULL,NULL,0); -INSERT INTO blocks VALUES(310587,'6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa',310587000,'7da56a4b5bc6939f12cc9a2b4ca24184978cad34f1a457b4041de83bf29ae15b','94d69dc7ecb628956923ed4d570fe0da3ef0c367066d76252f656f3774347938','524f8d3ec616b08760af074c959d424bd751280eb0557bcbc242dda7f55eb113',NULL,NULL,0); -INSERT INTO blocks VALUES(310588,'d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff',310588000,'4b743eb87cb4dc115c78f353e62611598cab891bc16c921d3cfb279ff12a3c50','b50620604ec72308ff19abeebe034e9ca8d732d2d21e765ff2ff78940076d62a','3bd9c63c03444c338b7072b4054e589c254a7a7dc10315cec03b210bca0e04b6',NULL,NULL,0); -INSERT INTO blocks VALUES(310589,'4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da',310589000,'046efaa061d244e1f2da8a7814f2c59fa13d10c50787ce1a33ff11ffff1a2c27','78bdf68341d15bca6e325624feb58f527fd0256d044dc90dfd0c5874dae32f4c','c228af4047b3efdd478e707b16dce13c0ec025ab44c015e70a3ee6a369ae6e27',NULL,NULL,0); -INSERT INTO blocks VALUES(310590,'7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6',310590000,'c0387ead71f6ecaeb514e6dfef129921194912295b3e317becc3d5206bafdff9','c4f9e894ebaaca5ba7bd4c20106b670025db1438df60700fdb4d69032277f740','461799c504a0e097e2bf93811b662acb956fa2477d1dfc4ace8ea09774407056',NULL,NULL,0); -INSERT INTO blocks VALUES(310591,'9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7',310591000,'292d47eda1bbd30200a44840aa067e3b581a38406fc103d6d4e21e81a6971d32','a3af6a21611a7407ff02eab2468c377d29814f84add22f19f3fc1bfbe0d9694b','29a80a2ffc13ce9eeffbbc378b147df2ce2f6fa4e966fcc28ce45acad0706ef2',NULL,NULL,0); -INSERT INTO blocks VALUES(310592,'d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3',310592000,'7558ca835974df67db436b22ae880e0519654f4d6d9bf79f44e1511d647548da','daf91d91dbbe9f77915568b355565696d4da404095e6b547bd2db3587113e403','a5aa7c92c9ee4a2718b8d6438f3e3a498cf5df316c573c9d4a22dbf1837e2564',NULL,NULL,0); -INSERT INTO blocks VALUES(310593,'97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b',310593000,'470979540b6e201a9c09b177b9f0b61251dc588df9d1078ff768461d0126e553','b5c3b0df9648788b62ccf2fc881924438c4409b828117e2db502b42f2aa800b8','be434fd8b2825800ff54fc268bb4285a96df24fa6733057ac4bf6dc3c6a5f10c',NULL,NULL,0); -INSERT INTO blocks VALUES(310594,'f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015',310594000,'cf27c790b1bf7de710bc370c74cd55b8b720867a3d016637d6d01b469d6c1bf5','05b3baac4f1a13d3b2f287b6660be568bde7646bf4d2dcbd58928f8be1b5751e','2d14f203ac54a9b0121ce13bc2cf4d0ac38352c9138c09cffecb0e730bd70a22',NULL,NULL,0); -INSERT INTO blocks VALUES(310595,'0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66',310595000,'51f45c2f8a54cc0e8d0e668f1892facada295aae3157215beac73f25cbfd6e13','2bd0b4f8dcf78006ab0a7aa8dd4d71c6598e9162d772e84c4701bc4c8d45f6d0','a4d74b3830b5904f7b812913e66dc66735829e9a12005b01b9b1ea39284029e3',NULL,NULL,0); -INSERT INTO blocks VALUES(310596,'1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688',310596000,'829638e299bf581dd5edfea61d4b051af219b50e344e6bf487b4742d2469e73f','c7a197d075a2b5d5bd3267ae10eba1596cbc93bcbf77830b4d32230c27fa72fe','12c55abea0e3bde23b8d33a4f781f5f16559ea79b6906adcd7586a587733ba15',NULL,NULL,0); -INSERT INTO blocks VALUES(310597,'490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd',310597000,'bb4a411c7aba4fc72004771f88da31ce729936ba612f2eab99c1e1a637730ca5','c648adc37b10d6b7c9fc0e1f2a4b5c8ff9ec86fc035e4124c576d8f118c23503','941fc2d522943579830d8bcf66c2fb8b5f40527478425dbaa03fe1ebaa7b4798',NULL,NULL,0); -INSERT INTO blocks VALUES(310598,'8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a',310598000,'5982c8df2e62829447ce3b2bbb0864f2d732c508aeba03fab92382ae0096bff6','b23f0702a5066982b19875ee3aeacce21c97adacc44c5ae6bc1be94f3edcfc93','6d71c4becfca063245d125dcc92d00b9129597411436c189b574b02a3169e1e6',NULL,NULL,0); -INSERT INTO blocks VALUES(310599,'71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8',310599000,'330ce22a1553aea1b050b9e14565015b3aeefc4244ee64d801591a53be9dac17','cd5848644ac2a8bf3fe63736a96ce91345ecfc54c943e72e6e24b8cde5ced243','c8f7a4129b3f0b508d65be8eaf0215da3e2fbafb5ea9d0aa3e10c9b6d3fa225f',NULL,NULL,0); -INSERT INTO blocks VALUES(310600,'f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a',310600000,'1f012bb22bf3b313141af4a62287dd888877de2b59cba7b9d04e8b78f13ab989','8d9bdfd600f2ab1f9df6b51b3849792e10973ce73b872ab6e8d6da2b5606af53','a3acf54f3ceeaf750ecf644a865e5613620b2f75eb28015149b6dbe38955a7fb',NULL,NULL,0); -INSERT INTO blocks VALUES(310601,'7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd',310601000,'a671374e89b156243374d38ec1a279dddda45a5dfb0919e4f65b9a8191ea954d','2acbb771db97fb8e8f0963b813502965908a680d2fd86446a33be34e3744e81f','b62511095287bcf37d6f450bce6ab2b3f3681ae5f09a922420d5b1a5f42d6dea',NULL,NULL,0); -INSERT INTO blocks VALUES(310602,'c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2',310602000,'829ca2a90dd76a26bf72e16fa59b324a2c904821f54ecfd9cc00755beba483d0','243a393f2fac01b0ee4e10351a0cdd703509ca63d66654bdf578f3eca689421f','3b19c242e370e5bbdb0750d190f6ceb09dc1f263db49fb718c550a82e8b9edc5',NULL,NULL,0); -INSERT INTO blocks VALUES(310603,'44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c',310603000,'58081fe32b8b77c4c807d2aa86ebef918c21242eb33d06e3ffba6701d2655d69','6bd040dedbdefeb0e3398fb4533bd2bcd99edcbcaec5319ccde5e7a5403017d7','e0db5a4e1015ca8719eec89dfa230f27341caa184eb2da25224bbc9008862d17',NULL,NULL,0); -INSERT INTO blocks VALUES(310604,'36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f',310604000,'e130a31f9ad532e80fb8a10076f1b99d230a19070959e7c0eb0f2d59bc00fe36','50dfcfb2871929ffce0a82a85a5ee11a125109a774b34a9ec127ab6bfdfa3b8c','3838f1eed88215d65561721a1be25e04f00332046005757c161729d39fe7b89f',NULL,NULL,0); -INSERT INTO blocks VALUES(310605,'ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9',310605000,'8c43535f2ea91a8a051f2ea6bd5434cfcadace5836e6e04a958a3d29ef76b54c','3427c9e8c0ec9016a521b4ec842bb5cf3731cd747b514a553f222e44a3d3def3','1789cbf52be6780c3e98c877d87ad20ee0964befea76ec1de63c93c75c68d492',NULL,NULL,0); -INSERT INTO blocks VALUES(310606,'9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f',310606000,'cb0466214b24bb1d2dd3a0eba9a62fff97742f3b00d9d5efe04293be34b247d5','c11cb503ed27d64acc8b2363a34617edbbf35bb701f21b87c70eb4966f7eb035','b1397dcbc26ac5a35c2327bea11eec27e93d01abd372c7702f8d6eb1b06779ba',NULL,NULL,0); -INSERT INTO blocks VALUES(310607,'ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d',310607000,'2f2504389bdca2a1acc0459bfa5275128a92b0d2a09d1aee771d400759fe6a26','12b12d0888cd3a82d149f4f8c136000c26a49f97f318c76dc90fcb4996bc3064','3bf52165aab0d600ac023e2b06f6b73b30a4af197606ce7d88b6fe5c652c003b',NULL,NULL,0); -INSERT INTO blocks VALUES(310608,'ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846',310608000,'4e855f5327460e76c36a2a9a4a8fa470822ed1f0aada17fcf2436c7b2586c7b4','9fcf0c090ae0aa70fee65fa83a35cd15311ef460f5fa501f6f842c29e2865856','6d616648bea1e6d01933bc3db17a671f89833a9f78c856ffad4531701522de42',NULL,NULL,0); -INSERT INTO blocks VALUES(310609,'83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455',310609000,'724bd0faffc7b39a6e88fde32041767fa5f537ed2f1eae619d52ee6e9fdde52c','7e09b9bc2a4a6bee758dbee3801455b3c84998bccaa40ba8e1a62eed98fdf40e','fd2a92876b31307ebaae154a3f5febfede1470095425900116cf3354017e5609',NULL,NULL,0); -INSERT INTO blocks VALUES(310610,'f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9',310610000,'6459bf81897bd97e8107de9600cb7004c65112388402e3c3c58543e09317a723','b5615378baa3bd212119929c04f03e2ec798efc02eaf92232b393e1cebf21cf4','f4cb0d75a0befd89ec8f672255621c4f00c54b2009cbdffc5d67691388b9df18',NULL,NULL,0); -INSERT INTO blocks VALUES(310611,'6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89',310611000,'7805ff535922d15a7faf37f4ba517e6ee61775f71e40e3e1f077afa9acaed282','f026a93859c733bd910f0341d53802b2443e5efe0a7a7dedd3b0e3bcb7cd6f07','49a6a4e246b8ce6a0877dd3e7117c2ea81584a2a33ccea851fa9c6223c75f045',NULL,NULL,0); -INSERT INTO blocks VALUES(310612,'08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd',310612000,'04f908169e879b7fdfeb29f70daa42617c5704b39b2b911b9a33ce64bbf8b92d','b67528c85ae55a57b1dcf3501d340c280af942e4078a1c9a39e9ea63ee9570b5','aaebc56b3d648e9bf2da78ca8b3d3c4ef1b8e0ac1e9da8b69519ec3d48a26174',NULL,NULL,0); -INSERT INTO blocks VALUES(310613,'c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53',310613000,'a4fcaabb9f8905ef4237580183f934a039175162518328bec2b4fbad00092a88','d6e9204ae7b7c5f887a25fc06ffce731e1c4f3228ff039e35be1d321276f81a2','37e4311b44d7d6644d8abe77406672d1d6686e70753756f3a2da8ef0307a352a',NULL,NULL,0); -INSERT INTO blocks VALUES(310614,'e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b',310614000,'656b5b57178f9682b70c9d723c08be8694ca94e6dd93f7cac61f83cf38d00ad9','d1459bf2b59c0c441b8f00889669c3c6f645f66f608eeb623576ed7044bf37e4','2c42dfefff1701eee9fa988f6074290928a67b50ba8581afdd8ae51b1d1a9152',NULL,NULL,0); -INSERT INTO blocks VALUES(310615,'fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc',310615000,'935e774a5ac52c24cfa4f6dafa08bf87de895663d349b4a80e30408ad0e78ad0','b35468ce63479f2f7cd17f791e8a66b3a1b42e716a7792a2213bf8742978f9df','1480014156b2451a43376314d78beb3b3d02a6e832d6611ae0e97937359da78a',NULL,NULL,0); -INSERT INTO blocks VALUES(310616,'008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84',310616000,'a69373473bdb2a81d17cfb98c152812804069d375b0eb6a1c08437187070c0a7','51e2ca4af76f00e81e5f946c53f23e1ee7ba4ea7603832ef77c374bae59afe3c','2e72ed8940147ea9561102e38ca3e7650947f0178be4b75ee50e52ae6fc0dc96',NULL,NULL,0); -INSERT INTO blocks VALUES(310617,'cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29',310617000,'8291e17379fd2e1214612151f8bcce3bd3b8bc409e528b4b39e3d341cceb4d66','55776209dc06de6d494ddf7866b805d94f4371598273d4dcf23b510e72826cc3','a04be794dd7cc993bafa6463eff3f493f56a572172b7ffcfb6c5e723777b8862',NULL,NULL,0); -INSERT INTO blocks VALUES(310618,'f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b',310618000,'1d84dfa4fa75b017967b275a803da6b4938348b4b5cfc4a109e0784148a186ca','cad5af4c24c74aad93c806ae54251b11cd7d13210d68098afb26cbe73e3e120e','374b9303afdc52229487fc5409024f8fb25d9b82626a86ab807f29bf689d1b75',NULL,NULL,0); -INSERT INTO blocks VALUES(310619,'4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d',310619000,'ccfc63ac8e522f8b5307b644d04ad95540fd490008f6e25017b888542f8754e9','42704ac1329f6cc2fbae3b8d6113afc679f159b44e007a4268d03cd9a9944721','90e10fb595f8339080bf8b45dc57a7b9163bfa3ba25ca309957bf9943cca0183',NULL,NULL,0); -INSERT INTO blocks VALUES(310620,'98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519',310620000,'7eaf246b47ddee30c53dbc1dd816030c9548ad7b57e6d72a3e61dc1b0f0fb542','e70c9193269a63eb0ade25f20d608c5ae1d9bfa8d79f7ed50c2f3e7b03945149','6c0ca10e0af73fd4f3a05ce3411a017abe028d2df830dc9e80e64a1f0a18cb6a',NULL,NULL,0); -INSERT INTO blocks VALUES(310621,'1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11',310621000,'8b12d5690d98419f42aeec91f62b2c0a90f65ca5ffa745051194222e45a514ed','0993cb53bd6e9ea2635b2ddd58c9a43c5610e9e2a0ed0fa5407616a28e3aa201','ce5e96a09d2013bc5d33f2b7d144be4edaeca6a7b71c05721eae9ce723cc3b3c',NULL,NULL,0); -INSERT INTO blocks VALUES(310622,'3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47',310622000,'da3a62ddb012e6176d17d3039c8f9bfec8049e13ead94ac2b95dce8049528ce2','674ce108f53ec7902c24edac613cfc104e7d08cfde7c8dd3ce65ed9dfd72182a','312b9a734093e87f37ef2625c3ba249c49790ad5c0cda9375a6b6fe70746ed4e',NULL,NULL,0); -INSERT INTO blocks VALUES(310623,'817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad',310623000,'ad481b7cea15f41cf9cd5fcce0a66edfd4e174f9630786c0169556bd0b361328','a56c89d0b997d5411cbcf260edcbd409e31a599fe36ac6f20a3e0c031e17e750','cb00a7e42616a641f7d884e74a2e1dfa7b53a0b6af10793a877ed329241052ad',NULL,NULL,0); -INSERT INTO blocks VALUES(310624,'3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4',310624000,'0489aca927ff2bfbd2da547c31f2a66c76d8732147a795a797b2645707d2115d','daec5678d2803f99becdecb666418513aab7cc9a37f6ab54e675e0a895a3b69a','71076c4b07b0e5f82a80c482801c1614f9974fd5c62e6ca9d0095e99d069d27d',NULL,NULL,0); -INSERT INTO blocks VALUES(310625,'bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba',310625000,'95e06957b32480a49eabf24b464749e6dcdfab2d64bd8f6acbfc197ef24ae01d','e378650c25e95773a8167e904ce8ff4d10efc57fc2b544054c6b4201f7547537','08e24d51ac43918e9f79d6d6a5b3c674f36aa36d77a27a6e7ead4b7ca583d277',NULL,NULL,0); -INSERT INTO blocks VALUES(310626,'b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d',310626000,'7a467fc398bbeb5d6a346df3e14a79dff81babc22577d45f8b7f52fb80cb0c96','0d54a79bc7f05e33aefa5fece35ec2902b3da8461e34163b58c2fd3779483614','b714cf8fa4e1683b37fcac2d109cd1eea547090438ffe5b6ee682421935ee4ef',NULL,NULL,0); -INSERT INTO blocks VALUES(310627,'828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f',310627000,'03f34f091bb3e16276b410f8f3bee09a53442e800a58d2487d8732660647a34d','b4e762b53ffd3d9ba24a34032ba26b048f2c7524008cc3f35c0e44c1eaadf8d1','77eaf5c31e059e0a930e9b75bdea6a5b1e68b8119b1803fb5e1446d5da0d62f3',NULL,NULL,0); -INSERT INTO blocks VALUES(310628,'f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e',310628000,'ed30807d010e320514081a63cb058b13177a2e4dd27851c028c910ab0862ac9b','966ab2ff446abb9ad3589034fa23dbc5c467d019cb92803745c8732b05a6bfbb','63f32a60725805546bc8317785565538e7e40929fb35ffc88d0d3429cec52c47',NULL,NULL,0); -INSERT INTO blocks VALUES(310629,'254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20',310629000,'ba0d1e9e0077394a67aa0af1deb288effc88234b747df7c8fbef3896a89bf50d','f739aa66c8acb9c24def7f1febed2189e6cc63361d2f798ed32cc808acf01eec','1bd94e3bd4ec922e91c777b0bf77533799f99ec602a75753a1546b59890d0bd1',NULL,NULL,0); -INSERT INTO blocks VALUES(310630,'09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde',310630000,'4f67cab0a96746d8b009f780be5831412c238c2c4b148b7db8752f1c2bfee5f8','51ee75dd962cc512bcfbdec32657f7439d60f3e613329a313f44970952abc904','aa7888db91b2b02a3d7235aeb2fc0de60399a854a04c89e7536bf51307a3d49e',NULL,NULL,0); -INSERT INTO blocks VALUES(310631,'b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be',310631000,'8faba1bed91e4c5125448b6a016751e9b1f83e6c9a6e9758b717ebaa2a738dc3','c513b62a3d7bd0b4fc649889deb032ffbb9efb6d209e4bf5e14ea24250f147cd','a5f943de51ddb9f952e92801b92e280d8355057bd888d67b84d4202708e67fbb',NULL,NULL,0); -INSERT INTO blocks VALUES(310632,'79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1',310632000,'00e1e3a4c4c9d8dc64e002a2552ba27a005ee5cd1fbc36dcc4b59e9d16a110c7','6f4ee24d93a37b3686c71e39cc7ce7e3f79a3a9a6397e608d74c3646b9358d62','594852600ac607a4b62b030a421303c9336641ad1bcf3eaf6b971892b9ca1267',NULL,NULL,0); -INSERT INTO blocks VALUES(310633,'e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1',310633000,'0ca32d925169eef800ac257a28162666842ec0f1107775ea26d5de8f6074c52f','52825a5f663c03d9d8027057b36564cf4be997fdc15b5b503d1701019e92376e','c3b986dbcd02f8c741ed822c230095e2384f85f8b84458c35dd2747cfdf47121',NULL,NULL,0); -INSERT INTO blocks VALUES(310634,'c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af',310634000,'1d6ed8dc599d0a2edec11893a1d6e502394d890cfb425b54c8e18e26c22bd9a1','e9c54a989efbd6b8234ca7f0fae5d39b7f83479470c90f2d43dd11288792da1f','f71f39f62deee0ddd3427a073057326771664934d75590809c0f0796ea0fa235',NULL,NULL,0); -INSERT INTO blocks VALUES(310635,'8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e',310635000,'f7579cffd83d518b2d123f1972a2d33c9e1e0672973d0112b485ac3895e40e97','f93c139e303a561ea8d29de69ea04dcdea0ed5ae41ad8ac0f6fdc2fe8817d815','f996f16496b47ccbf70ffc8ac27c589970ac369b42ef8c1010db46c64c8c03a2',NULL,NULL,0); -INSERT INTO blocks VALUES(310636,'ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31',310636000,'6a12a7e2aefe8bff21de544dfc773b32c667a85d7d7046aa2d3b77eb62913323','63a31a218d2b42aa278be0ff76c71bf572114c281a90431d952010b7e75a0b14','d84ef56606e5a88e804082aa6599c267fff4704642b565bd00006685ef6cfc00',NULL,NULL,0); -INSERT INTO blocks VALUES(310637,'d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336',310637000,'a9d05feb729df342319d0f9f4df1eb72c28f60c41caead0cbdb50b2de397734e','aaf47bc37b85c127d9bedf76b0900a07b29bb2a1300a12d92200e3f006e0b930','99e56dbbe5801899c6955e350bb6b80172b4b68a437f824560ff169128dd29a5',NULL,NULL,0); -INSERT INTO blocks VALUES(310638,'672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b',310638000,'a7668ddd027e8557dec79414d7f6748c357eb0d1e93a28fcae2a13d19fe14247','eb6e3a68506f9c0bd4c522d5537ea01140273c8b84f376cc95fda0c99c8d8c7f','078b3b6ce12d82148bd5bb9834f76bbcf4fca03a83116dd0e153667c2e69a7b8',NULL,NULL,0); -INSERT INTO blocks VALUES(310639,'d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b',310639000,'776581e6fef0013b9824dcebd414b27819db7a1adf285aa1358a0c46dfbde626','4618a0558955508e24b4e79308cfeefbdefcf4def0f3dfc389d66b335488976c','a39c88f3fc8641d3744b3a88af36af70fbbae2ba1f4fb767f3a1cd5f4a636624',NULL,NULL,0); -INSERT INTO blocks VALUES(310640,'474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59',310640000,'a4088753ec2b36d7dc750fa73b06d6966119c647887f7d551f0a0063de9b8f6b','41342d146bb15f623738e998c667d3bf2b51966495f1bfc948bfdfef93d27bcf','c0f045c019827d5b5cd15a26d32293bad9b32f9e40ad4b5b0f26528695743996',NULL,NULL,0); -INSERT INTO blocks VALUES(310641,'02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b',310641000,'4b9dfe1a7e0e1b4b25cf7f9f88491a116e07eba534b3493325d63bd47385b8b1','266cbd2f8009b1c950b4a0f5d7b1a9e7fee56a0b60feca824b5f7e4f69334435','1f1d6c3624f88605cab087414e4f6f254a5618b2aae45ea6134e43516a44542d',NULL,NULL,0); -INSERT INTO blocks VALUES(310642,'cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd',310642000,'2d86730c1683d1b55e0500c58baac0ccc3b7f1e7cafd4ba91ade00842f04912b','483e13632b7785262d09bbc9c55ec5ecfae7992d38b44d92b3b7b9dffc979be8','70266ac82fa8120f8415459950cba5a891f92b185d41949b1109aadc66d7dcf7',NULL,NULL,0); -INSERT INTO blocks VALUES(310643,'b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b',310643000,'aff408483481696ed082d4177a3884f24f99b01ea9d89813cda2d2e7fcd34a80','2d428ebef22ccd8e01c73c47d63ecc37614f5bd34907d6b5e821aa4b3d7a0b07','685e2c0a87db8ea0214c2191429804ff7f11145b3156a0d3425646a4dd7b13e5',NULL,NULL,0); -INSERT INTO blocks VALUES(310644,'f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672',310644000,'ad875d0db986ae2350a0cd34fc3c20e9db9db2259ab1e145ea6d896d968aa105','848e6511e3651c225508e11808f494e5730bff9072e37c5961b209f6ca5eedb1','40776d6f8094d5b1fecdf694b43142312d6f31c1b5d61e70ec19e70517a1adae',NULL,NULL,0); -INSERT INTO blocks VALUES(310645,'f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3',310645000,'a92d8611bc794c5d360cb0121223d44928ad0e6612cd6400a06965b670115adb','1e1feae6d6050b88b16c5df26ce029eda5fd272e96bec74d7a6139fd4c38343a','282d27b4c64ebbd5fbefb3920cc52ba386922099e50d1faa4e6f96bf49936a8c',NULL,NULL,0); -INSERT INTO blocks VALUES(310646,'839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494',310646000,'f41b95ef2301edbee5b23a9c11044ca8a0fb39cc4a43f277ef7e56eb1d8fa920','d3f50fda8401e46bd75e7d4abe1296363de460d45141da3075342c8bc017f8d1','b345dcb4eacd36f8f16e706ea93fcd31f52f9475b6055fd492674f2e1d21e00c',NULL,NULL,0); -INSERT INTO blocks VALUES(310647,'8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d',310647000,'1dfd0b93adf736f986ceab06a68824b9efeb97291503b05b326f028518569602','4fb604a40972ea2e2fe9dc8ffe24f8bfb8d77900c80ff8f33bb7a34b2a0be681','11bd85c511f9acabb48e97cb817dd089b886bf0e5a200014ba54fcfc9dab12b9',NULL,NULL,0); -INSERT INTO blocks VALUES(310648,'8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f',310648000,'2aa89ef15383a6417e2dfcaf0bf7504b439b0a0270942b86e962d30220f5dd6e','c9ba3aeda8abee31772f8a0f7cb5643a12eeb8c9fe59045bb0c9d49d5c69c3f7','2db1c60dfc41e2b6868b7258c7abbd1d4d9c5a492c63cafeda0802c8aa51f38f',NULL,NULL,0); -INSERT INTO blocks VALUES(310649,'6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb',310649000,'7159029d6e74c3eee2fce15ff8dae41263e1c4db016eda0e20ef63b0ba59e07d','1654a3cbc3954d23e0ca92af18141e3384277e78e664ad40f2867fcbc60a2d70','158ba0ba02bf4670c3863c8ba4f17da302454a33a343f0e5417db84e4ede7e07',NULL,NULL,0); -INSERT INTO blocks VALUES(310650,'630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0',310650000,'81fb324cdf169e35d7d233ae1f08fa00f880d5cb9e375fd20ff36658e717620c','d10f8ee8b2a804d4610ea132e890fa11bbfcd9582d059a77ad3b59c9ac93669a','bd14debb288ab6760292db9069d4536c449e5cfa1c12a5691f883f197ffe9687',NULL,NULL,0); -INSERT INTO blocks VALUES(310651,'abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22',310651000,'bfcbf8a4ba790bdf9f7d27b1a20c2acab287830f61523be9b76a4b2645eae966','d4ca114a2c4e1e43d82c0502548e9f9168e55553df009f846c652477104b3fc8','fdeccfb491199bce4f48ba5c277a60b25ff9d04c5f5e0444dbd8619812ea4b00',NULL,NULL,0); -INSERT INTO blocks VALUES(310652,'5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6',310652000,'47dcbad7a555f23477079be3a5ea3ef83913724056381f787dd7771e0a3b4ad5','6491a9bdd162cac7cfadb1930138e1714fef048d0b2b001fcbdcf24413110d42','58ed559ec63ad18957d120a82cd5f3487be62e8bfd1c7a333fe1f2ddd1c6e58f',NULL,NULL,0); -INSERT INTO blocks VALUES(310653,'149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0',310653000,'e8721460d27297ca09bf0026c78ed56b505b95d59f922d63ad8ed542a8aa8d66','fc791bbbf8c78847cb342bdb1273cb697c513c68ee6d280941031cc38d4d6354','e2966788a81db390cfa0317f23743defc5a90b02b2e862a30ce863a00aaf77dc',NULL,NULL,0); -INSERT INTO blocks VALUES(310654,'829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569',310654000,'0008b3d669bca8b3790ae93bee813f4fdc302ddc132caf32e51c6539cb316d72','dfaac3f5a38a1b4586cfe3ea5959b3d879d50a231191fcf46f75fec0b8a3329a','0b87085b00b5dd73c4a69870e34437e2183e3d55ba50eff7d34fc3f7f923be1c',NULL,NULL,0); -INSERT INTO blocks VALUES(310655,'c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55',310655000,'ecab44b42ca7a0f302ddc87392714a8b842daf98b329edfdb233ffbcb86dd658','5a9a17b6be46a48a00b986503cc922e945ed3e59a0fffeff477e6953e776ed2a','2f9a0d805c031c4ede1170600374c2bf4b5229ac71b5b27a4ab87a3e67e8231c',NULL,NULL,0); -INSERT INTO blocks VALUES(310656,'5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b',310656000,'559c96bdf5397b1fbd27e6c67c57ce9e97a95e335288f9bacb03d0b069afa67d','73e8b5247b6daa8b931b1b28610b6fee7e10949a1aa6a62d71e276929fc5ed11','f9fb148430bcbe08f21820e99843d2762bedd62477e7cbc500e44976462d964c',NULL,NULL,0); -INSERT INTO blocks VALUES(310657,'e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26',310657000,'396ea2b013e7a9bf16b5276990c4102c7385b43c964084c1f5eb6397c2d4e58b','c426afc816a4d8536d96d8ed39c75dd8145e6d93864259b017c1932bd3bf0687','c9ab3ce79c13bdf00565c06aece7fc7c5a781aafffc05c55a7153db560c3a3dd',NULL,NULL,0); -INSERT INTO blocks VALUES(310658,'579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501',310658000,'ff3c16421a8f61a3c56875f8a80cfd670f081f919fc9fc2af8b4f5f9f133f614','a0a1dbdc2cb08b59bbc105c44ebae0f8776483f2c1dba13a519984ca70a839db','9dc09bd94c9d1657bac3782e1114af0a15056ed8fadde6520d330177a740a852',NULL,NULL,0); -INSERT INTO blocks VALUES(310659,'e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f',310659000,'34b99e29c60046d9a128832e1faedd9e831a71d358cfb914400c13a837370f0d','8820d989cad56e3ec4c084d37c7d586355019ea8e5cee7371ff05f4e19972528','0aace83184349717cb211de8992d36fbc6a25a81df46c4f90c3ba6f3f668c974',NULL,NULL,0); -INSERT INTO blocks VALUES(310660,'d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d',310660000,'e891b77c195003df8d383aa2b6a292153ef421967b48d9ed7058faf2f5cd8392','f606b03288e72a208f5d44ef49343632cded5a190acc9784e7d44c3ce89e3d6b','654517d01ce79743e41470864e73d95b03c0d95491516189ecb8876ef71ae748',NULL,NULL,0); -INSERT INTO blocks VALUES(310661,'badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89',310661000,'d210c23a7243de978dd217275021a82ab92cde2193eec1ef1f7b51fcb04ee805','121ea9d910cd7cd9522a4c21056464d4b5831269d55d3ee93613f9edb80abce8','afdaf4562913f50b33e58c46ed749b3a841d1e306c3697dbffbac8631ba7f2b9',NULL,NULL,0); -INSERT INTO blocks VALUES(310662,'952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb',310662000,'3aa08456f2d542275957de7c3b11ca112a95cd6f9ef10db7d8b09f15329a5318','f2793e5e7ce5de99061d249b7eacd8c31a0b59c839a6f32905aa4fe955458137','11ceb66f10015594a7e5e5b09390c89155a3d5ba3bb51d6c39d46bd4d9d1e301',NULL,NULL,0); -INSERT INTO blocks VALUES(310663,'7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028',310663000,'65409754fbd2df007d8f88f589d655e2327f66b0a80054e3f901cfd6064afb0e','f2f60e0e823edb418f01614f56dc15887f96fec107ed52406627f035c7efdd21','85ba074ba8c0f28418326b310d16e896aefbfb5b8eb3967f167315636c6d4bc5',NULL,NULL,0); -INSERT INTO blocks VALUES(310664,'ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247',310664000,'95d04fa70f12ce0dade256651cc11fff8140a46b628966e9b6a51b38ec9e22d8','229a5edda5a8c504658c57bd7e776fb286c26031658efcc68c0e0bd80566e20a','12673c03aca38e253579dea035ad95bee24651123d197040093b39982d9e168e',NULL,NULL,0); -INSERT INTO blocks VALUES(310665,'8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8',310665000,'556990a4482613bc6e4b6a0d94969aea4a4f299031c3305aad91ffc2fb5899a0','b3e7615a7e9b22882a5d63ec2c1e4944ffa550aafb856db4dcd03f659eb73d8f','3b2be671c2390b0bff63b8f1ed97686a104ae65e2da7eb8d2486b1e6f7d3adf6',NULL,NULL,0); -INSERT INTO blocks VALUES(310666,'de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52',310666000,'f070cb9168ea3002a9facc00f056938659807077a8fe257958829e40dfd7d2d6','9f5771d6fb484760ae44a0b7141c89e288c483d5408e26e811fa4612ca68a3ad','6c65de23f4c8bcb130113144dd7f8c1c12a9ea06683ab0f08c092a25e42fa7df',NULL,NULL,0); -INSERT INTO blocks VALUES(310667,'c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83',310667000,'ec7fc439acb828fadd36de7918fd6503e978f76330e56b0434d28eeeaf5bebb8','67d4cee1acc31181740c2f05b12144c7184111c5c12b4c0fcd43455e5b1d1e00','b914fefa784e1dc61433186e78aad04cd224c3344dc3255b1c6044902fc00a94',NULL,NULL,0); -INSERT INTO blocks VALUES(310668,'699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27',310668000,'03a7ece626bd68fe45114048a0a7a528fb118ce22bbb650c9014e37312d2d75f','d352c080a6cd8f5ad10a897a2300f6aa87bee31d8f47ab9477a96b96935c5ef8','20dc9bc450deef2fd7deff6f38744ab5d1982759ba4d7240569de1d9b17d9b46',NULL,NULL,0); -INSERT INTO blocks VALUES(310669,'c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f',310669000,'ea0f0c31b8f007d93ea96539e8d922f32c98829017fa79261c5fd077ec9fdae8','780251573f61009e4ac61ee4879e60ef6cc072785e6c57c2dacdd57fb03520c5','1cd1e93e4867edf77097266bd0b5214ee4910bb461ca282a29e92116091f522d',NULL,NULL,0); -INSERT INTO blocks VALUES(310670,'9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944',310670000,'2adad32a5f4e777e309e4e245eb2479a999d3d151c9e8792ce166ea520529076','b6a1180e0a158145ea9cad059da2c082e2ae84941d0f90fb11addae85d081964','b1becce13f8df25d5d9fe5af2bad1637262f13902be2bb2397401c92ed99287c',NULL,NULL,0); -INSERT INTO blocks VALUES(310671,'4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522',310671000,'50e2196f8189b95d5ecb20aba76f9cab54ea04869c384f537c7790df812ae238','bf87e973ededd051c8bd23ccefb1de6528a82b1071aa3b791eb7c9263e2d8ff7','643ef0ebf5f419385a02b483b3709976d36a01ea7c79ebcd3b05468e2bd7913a',NULL,NULL,0); -INSERT INTO blocks VALUES(310672,'491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa',310672000,'846e3f8f36a3ae9ee67a0c4c42dd055865128928bf4985a365405922a0084c3c','faae8112e80bc60f69dbae4257809ba549b0fc2b4927357945392e3843d34192','600dcdc7484062a7487493c2b8875353d4f20d97d3f5f066384327da53f98165',NULL,NULL,0); -INSERT INTO blocks VALUES(310673,'03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5',310673000,'c428b66bf0e998d32add95f1fc2c159ca42a2d8c8e8742a8ba40ae36d56def54','1614c8d076a5878f09a0755de3d774e2c3334884876b3b6d730ce1dbb910b2f0','19df6f4a3edef5cd1b966f694707ee4bb4dd58287f6dbdc4c82782ab335d61cd',NULL,NULL,0); -INSERT INTO blocks VALUES(310674,'9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c',310674000,'05cc21de553be3fadaa55748f1fbcc5038d5cf04e68912a4af0b61cf501e5712','2d25ca16358d0209557c678cd2f9826d9e15f45ee9bb1211adea973da62d0116','b2fc94b43ba18452dea194dc4e39d4887a305c096a3bfa33100d3c0a061c6524',NULL,NULL,0); -INSERT INTO blocks VALUES(310675,'e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21',310675000,'b28e9d1b35c5fdc969d79e47f2b909f74dae565b2527d11e7490a13942c6a583','bc62362dfb5ae26d529f4c5ed88f8096de03718447326cfbad2a807144c1889a','1b89cf5af3e3242102873babbac0c7fe9ae92a01dc8ed1092dce5d30cfe4a964',NULL,NULL,0); -INSERT INTO blocks VALUES(310676,'312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1',310676000,'69a187e7ab5ec16a9cc9fd1a987619c70aeec67b38ac78ee9c0ec9fcca14ac07','d8bbf9bb6af7bf95569dcf56fb8fdefca64695b5c021bb698a0c6edee9e447c2','dd6d9b56db66c7da78e06cca8e85ca3d54c2e7a3fc75b1b18e6675668a429559',NULL,NULL,0); -INSERT INTO blocks VALUES(310677,'4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a',310677000,'b4638a8ac7c0f0adf125162897ab97e40f4a0ad293f8a28b026deef3626a5c8f','7c5bc34c11f251b3748c337391be8e8f74a0399b3923627ebf9117e9276af31c','fe3093eec8f0789886747ceb2ffce0e0c0b08f3e653076fc4e5388b4f501e469',NULL,NULL,0); -INSERT INTO blocks VALUES(310678,'d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c',310678000,'8dd6b6f83315d469df3b87d07afb074b2f0c72cd4e62b3693211d63280d25e2e','41eb202a56ae084f3cc1457d3c17cb7eb2214a8cc385574f97a5d0913086f931','6b720cb22bf2e7b8155262983938bb0c589853b845e598f3ca5fe572bf54671a',NULL,NULL,0); -INSERT INTO blocks VALUES(310679,'be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b',310679000,'28444f40446d25ba0117dc6c65b276eab758071f664f06e7c8b7a7790f7ae7e2','a27ecd72192938a3eda2a91456903b4bd0a1b277166e38937262a7c1a5fab580','57dcdf6ccf9a4718f5fec3a7858e76f1f3324089ba416d10df73039a1ddf9fe4',NULL,NULL,0); -INSERT INTO blocks VALUES(310680,'239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8',310680000,'03abd766908511876abb9514cef33bf4a6b133d7d5d872c2e6568efb383d02ec','19abea6cb809e0ae492acf291a5dba572a871622f4c5e675557e8d2f37102e09','df6e1a719dc7966e07baaf047280dbca0f4197a42c41991d33b0906e22a752e5',NULL,NULL,0); -INSERT INTO blocks VALUES(310681,'0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41',310681000,'d2945f562378c9baf4f2572006bc807e93656dfd8743c87c97d010e664318779','7f0276b2f2d61b95e407e95777aa4895e887111b0281099b9c5a44dbcd31f22e','d501616cd190087c222d2a87eb4688069f6839d68b171c482a44b41a0df73fa4',NULL,NULL,0); -INSERT INTO blocks VALUES(310682,'9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55',310682000,'80de0d2871ef1227030758dd8257f30ac754612734a6e56cd9e078678e3af0f1','e9cd2133c276de01869a39f4c703d2f8236b0b1b79bcfc53a4e3d8967785be9b','d56eece645a7a7891d0e3b3f2ef8d1cd85777c1fb7fc7795b405f5288016478a',NULL,NULL,0); -INSERT INTO blocks VALUES(310683,'ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511',310683000,'536fb911d46abe4125c8597e0a9a14d374bc83ecf17927e509cec7d3b41004e5','267450473f906200e5c2c6912b2ad40150573506e7344e632d338485e3f78192','65d2cba44ecf97dc81f8b80ff8392bac96ff42353e0fe420fb28ba5979b2c9ac',NULL,NULL,0); -INSERT INTO blocks VALUES(310684,'d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9',310684000,'87bf3091c4a6839a0e63d0a45b3a5eee0d4f5ccaa84aa9a20703bf0e11ffa914','80f0ef1728184f040fa9d640aed74db77ff126c31413c88816fc0a3b01c47eb9','8199788e0670df13796f1217e83835358253d56babc33e68a0de05ec95ab0fce',NULL,NULL,0); -INSERT INTO blocks VALUES(310685,'f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8',310685000,'ba962d58c2a54938f6c8dc1b64addbb21d13b6e462c6966362a026ddac50af52','b8b940808bcd9e0a6d5d3b0dc001b185c7be5bd862d8ccd5c1860916b7d666d3','40d834e1006461806415957d6b415a1ddafd2a0972331a237f436c6a72a90e6d',NULL,NULL,0); -INSERT INTO blocks VALUES(310686,'a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca',310686000,'ca8f687a5dc38643f240018fd6c72963792155e39ae6a7055f8cd7e3265dcb20','8fd8812c2f3696baa9f0f5714aaeba990fb7a1711c583937002babe776964c05','46439879e0eeea01548fa97d7668dbe66d8afaba9fa5dcb9e0f7039bd34951a8',NULL,NULL,0); -INSERT INTO blocks VALUES(310687,'c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8',310687000,'1f3f3f92e37c9cf9f195b70ce9a0e9d0148fd3561f55582e9666b7e69a85673f','2215a8448764b62467df6b53cd807cc9410850d73d728a81c753eb70de99e486','c434fd4daa8af4fc42a9de10183d533b86bfefc1a8c24d9b96787f39d91b163a',NULL,NULL,0); -INSERT INTO blocks VALUES(310688,'3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822',310688000,'318fb29772b5e85c71e2ce29cc40c6d3fa191b58ea2ad949c26d2f5eff6441cf','9312287eb460a866f6c18b0b28dd23fff23d408a84422a87d69a561447c9ffaf','7aaa6e20153b0aa576bd7759167105314c75f24491d5a04d62e94f81076ea237',NULL,NULL,0); -INSERT INTO blocks VALUES(310689,'d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df',310689000,'027206a2d51a290c54ee4a2c6207fbcb3452038491704fba8b02bef065596d7c','a7c5b3bc4269d9a63804bdc4e2693fd03e4e529b183510685df746092e94aa5d','5301118c9aa8696231d78808a1d9c8127c5f096cb5e0bd4f3a72d400d5db99d0',NULL,NULL,0); -INSERT INTO blocks VALUES(310690,'0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462',310690000,'0e6ce3eb82baa1aacc53cf8c19e9ba4d11c0d5297d70a1c5bce188e515936ba2','6310ce87234c11efea223c58d571cdbb3f04b51a3056236cd0f22cec7bf1e5c1','6b93c3afd6d1b2f3fede8962b6083ed99ee8f731058a5e60b7a43b2594ff65dd',NULL,NULL,0); -INSERT INTO blocks VALUES(310691,'07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e',310691000,'86d4a3256d111bbb118869227cc3a609a45d7bb8f207e7426420d38d57a96a82','774242c764edd3560409137905de9c9d818364aa94f62c47a621afe1087136ac','1ef6bb05942d114320f97145e138b48f8049648fdb7a498ed1190d7e480d9fef',NULL,NULL,0); -INSERT INTO blocks VALUES(310692,'29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932',310692000,'f9c6d31ef1c89ecbe584020acb89d16e343a06db820beb8b3471037bd7bb5a1f','df166db54b869212308c6a48d3ddb80bc0a84be52434c46d5e6e2d6499167bb0','a13952e453dd31b30c330a9e67aabdb61cc7b9eb28da51007e3a520da1117fca',NULL,NULL,0); -INSERT INTO blocks VALUES(310693,'c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1',310693000,'f3d27993aa304802c36f3deddef3baf81edb04bdf507a2a5e6e739443ea775b5','992af64c887f105b985137b441ef4a3af3ff902f5dbac355b91bf0ebaa234063','95061c25cc54a351a7a22cd4ff4ae7173864bccd1b6ea7d8ead540b8b0587781',NULL,NULL,0); -INSERT INTO blocks VALUES(310694,'586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0',310694000,'2571bbddd1991d25250bcd1789cd861bda55aeff5e70c90fd854bf7850b478e8','52939845593123714b4bd665600642d14b61a384befa3498c7582806448150a1','4fd7a64e2d1cfea79d942ac7b358740a3c066cd72c8ec30133cf420f51053212',NULL,NULL,0); -INSERT INTO blocks VALUES(310695,'a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538',310695000,'e6a29a3329dac5849c6019688653cb9179792254ea263d908ee1840812eae1e1','9b08253a46b87ab3df60af60b519dd0c689c0acaca38bcc33f01000bf6b871d3','b0a954ecb6f6b298444e634e0e35c8dc8e642d4cc766e403d18e013081e38552',NULL,NULL,0); -INSERT INTO blocks VALUES(310696,'7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7',310696000,'122e4a4d499019a24ee9fcb024541d3ad30e06cda616f82b21a5e18bcaf58728','deb12f7c45ab5944a6e08fb2933d3a435860f9e1d8a758486b5e5995258ca973','c65d6968b5674d0faa3ba0ced721c7bb0e452d06db2cd4cc0c87056b42cd81ce',NULL,NULL,0); -INSERT INTO blocks VALUES(310697,'4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304',310697000,'ef8ebcfad12ea2bdff5760d7a28fd6e0c9ff1f80c5db666df99daf73bb758584','663e67da5996a4c9877a6c6cb61730798695aee9d89674823917dee2d1ab9708','1f8c4bf719ff7da97a2ae86354d1d9453f98f772b3302afaf87143d198d2c480',NULL,NULL,0); -INSERT INTO blocks VALUES(310698,'ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53',310698000,'7a3e7800ae592d461c8d4a90597d65257e14082534f0052e862ea6665151fa65','9b6c282c7fb96cbca27fe6b73253cfc31b93ff71dc0d116ebd0d661c33adde58','124decc91575b2b3b4e5c82252f5bad4c3fbad53d82e2cb387ebdf516582ca73',NULL,NULL,0); -INSERT INTO blocks VALUES(310699,'3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d',310699000,'d3ea9e3e4912d71dde006b1f1b2d412d213bee18c8c7606982a08f405c932a12','d91fc03fd15e2ca4fc59b7be29586b0c8f2942abca45ccb49f2fc84e3eff8f94','b84e80bcae7f2d7d19a8a6deee33b8836bd6bd62b53f9a8d38995bf458c39b06',NULL,NULL,0); -INSERT INTO blocks VALUES(310700,'4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5',310700000,'9cac238e8006f150dbd1f09f1743cb50e1870775d67a256ae5c06e0b72fd0b6e','1977d48057c66abe87f0bdffbcf4d501bd4b9fe138c0bc381409bc44bd503084','ab881a7cc3381dbeb809e622050540b87c404a8a723334e4d6b46482d54f325c',NULL,NULL,0); -INSERT INTO blocks VALUES(310701,'9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1',310701000,'562a0f298a796b936c21bf552e6945ed2263b62d4022f7a072dc6a4790173e8d','6b6c62d0facf03efea19bf2e8fa69ecd3c433d45a0ca6b3ed57ed0e5d69b1e2f','965d20b7bbd4c014879731b7ab95f5b38335d80f74c8dc8ccc49e9222144d2c4',NULL,NULL,0); -INSERT INTO blocks VALUES(310702,'69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8',310702000,'7cb406b1ee19e1ecfc41009f312d918ac0574b92809d99dbfd99bac88992a4fe','0b912b59131e6aef7fb3313ef75bc138dc1f612d76e77cf583074564ddb6d35c','2a4a14311bfbe235c7a867c69eeadf9d336667ec2abd8ecd3e9468897b0064c9',NULL,NULL,0); -INSERT INTO blocks VALUES(310703,'b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218',310703000,'cbc22749655ce8e7fb2eeb4d1737a04dec7bc096ce84b00bf83ca4c7040f448a','b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786','704f5a0685b1309b5ba2a9082d9706ae7b9fe4e7b735a008b3c450eeeb2a4460',NULL,NULL,0); +INSERT INTO blocks VALUES(310506,'9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c',310506000,'a6482917514b9d828a9981f8f83df92259e751a703f9ae164ef47ff170a19d47','a6cab6e8bebae804eb791b48d0a484f6526553e3cce266b54b40afb32a02c68e','28e6332ddf3e6b0d879fa141af8cd252b31ee05a93ccb5688ce6ee2d690fd132',NULL,NULL,1); +INSERT INTO blocks VALUES(310507,'015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93',310507000,'46023f1d6accb7aadfeafe56c17609f1d76aa2d6a1dbf123f4b0ff1c095d568d','6abb9b0caedb98bc7ad209096e5baba6418d80fb11ab51a8124d2e87e9a591e0','f39597e3a242178f633794a4a817394e0cbbacd7e971ef56c7590284ff052454',NULL,NULL,1); +INSERT INTO blocks VALUES(310508,'40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf',310508000,'42e33693a0b51c869b4d34656ee1c86b3114f0e4f600d577ed2adfe0cefbdc61','55c18d8da0b5d415d82b40229995123dcf2151b91a8cf6c4e29e8a03c32a847d','3a5e4f099980b4f437879454741f4fec540c39d3636916607d05db25c4b3f163',NULL,NULL,1); +INSERT INTO blocks VALUES(310509,'4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee',310509000,'235d0dc029e4caf127d479107e93a3f46e87aa5827f0f2c0b020d56fe9ece29a','e8a5ca9c861bda1033047cfb0896cc92d694d0d32343e54b78d861ad5daada14','679dc0bf8b5e96898069b27791cab667ca6bbf5cf070bdff7ef61902c3deb5e8',NULL,NULL,1); +INSERT INTO blocks VALUES(310510,'b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2',310510000,'c7f578c09530663c28499e2ee2095e887e79ae469c2296cfb95f0c1dc3920a34','58e8efe3ac6c19011d997f77a3f38bfd99ccf17ff15615ceeaa8fd1d02f2b73b','4210e9160abcdb0b1590a7c151d2086c045e16ef4d28e1daf82736b4bfbcd134',NULL,NULL,1); +INSERT INTO blocks VALUES(310511,'e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c',310511000,'6239525a9f6bbc01b5cbe0c5bbec47d77c179c1e03eb07f079902f4be6763124','cb29377641d10173aed43643d32f6935da6948a7fdc854f4c5f7f3bf8d6f9721','c81f12b1a5156c3ac9c4bebf828e3f99b21e05437e107ed7ced5ffac7ae55ec7',NULL,NULL,0); +INSERT INTO blocks VALUES(310512,'8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5',310512000,'d35febbe0916a862b9ee2c4f251bfd1bfda7c6a646d73baa7cc49c07a6c516c5','4f745e593c05074836d20561b50b884ffd4e1c17eb9666ace1c2eea5f51e7d50','a4130c3b9190ae20f97e4f0fb1b0192e034e16702339a28dfcec4c8d1723679b',NULL,NULL,0); +INSERT INTO blocks VALUES(310513,'ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66',310513000,'cd8114c0a364dd048cdee17ca46eae739f0cb6c627a6643c471700aa346d8acd','e82379e2bd481f39e310670c046d855855c476a4bd0dab621ea06ccd2ac136fa','09dc56829f629a2a085e9268064ce0c72680e16c28a3eeedeb2bc2d4612bf89f',NULL,NULL,0); +INSERT INTO blocks VALUES(310514,'39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7',310514000,'365c48b6ff26da8d5bd9b4437c7aa70821c71d6e7b928010557bef02599084cc','c99f21e4275501cdcadb134b8a409da50024832c8ca849deda3161d8b026f1a1','73bc3d0a3b58d7ce8895a184c23cf15ab6d81851378349e93e4ce1b55cbccb5a',NULL,NULL,0); +INSERT INTO blocks VALUES(310515,'57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8',310515000,'8634b0d6d0bca6baff864b0f840df2b07edab19310ad30f09c377d49c4cf31e7','ee33ce8f40db45f132b15d60daa3935ee8da4593c31f65ea269687594a2c5051','8e74dd022fbea59b7cd8f19e411d6111f50e5c8210d1bf2d7c5454c9f0d39e3d',NULL,NULL,0); +INSERT INTO blocks VALUES(310516,'ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7',310516000,'51192dd22fcd1d3e93abb964beebcde830dc1c6f6090f765455367df8c3d3236','a461fb607e3e3480b92d679204388b0aa2d2785cf5860e3539be8b41e1702341','6efa1bb98927a933710b1723a8614d581c29aae3e49c1642efa3ddf66e772f51',NULL,NULL,0); +INSERT INTO blocks VALUES(310517,'defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407',310517000,'1143898cf831bd8371c3c892d8c8d7606199849ff7a9a1f031f9232d7c411ad4','9bacdf0026c8297570a7d50e6c372bd5a04ed7f748f820b33e7e93340ecb69fd','0a11cb375044ea73668a1e0c52be2963d368356b31ae5fc99005f17f54075689',NULL,NULL,0); +INSERT INTO blocks VALUES(310518,'41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5',310518000,'dd1f5326fc49b284dacb6d6738599a6b4592e5250c5bbde45b88482a13f74373','66af0cdab6c52ca6b8ce731143739553d62e1986de0478e346dbc42e570f1503','e5b8f337585825b72253026901d1a2ecf732d23c11d236bbc98a5bbfdc7727ad',NULL,NULL,0); +INSERT INTO blocks VALUES(310519,'9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a',310519000,'19f3569d9b1512c42118014c8f6fd1562e61336d7707a0838a35d0e8513f5b5d','67662c882b46c7a5ac62a01e7ca43e1290e1fee20a68ebbd1011b93b9f8d00d8','7c8c064400f1fa49c5ecd3f21071a71ba69ed09bf4a616b5a86a8e3ccfb54237',NULL,NULL,0); +INSERT INTO blocks VALUES(310520,'ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680',310520000,'4dc209a7fcabd4ed54f9702acabeb0369cb9872342e101407241c71bf5f5023b','4ae19f415141f11f6c3b72d24512114ff7c06d201e2ee94aefb58e9f1921964b','c0f245b00cc0c997187432e32912d4e72cdbae89a15c62df0763f4d552125a87',NULL,NULL,0); +INSERT INTO blocks VALUES(310521,'df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598',310521000,'d237ef834b20f71ef49c9f35e1700bcdc59bcea9d340dd1b83b2046fba5c4a49','243a864c8243f71fa9cfbbbb25e23547337dc04b074d1aae2408a82b11ad3c15','9dbc54408689848146690f88c67f212938670b02bc4105b5375dc04e17802e25',NULL,NULL,0); +INSERT INTO blocks VALUES(310522,'6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21',310522000,'396fb8702db3ebde1fc334fdb622f37f1a020d6050850ebb424bacbb6acdf163','f8d7f3eeef9c11dbb8c8ec8bf5c06e4eacfc812151526c44a4208bb8d585a973','d8f9e110a1275167c10ca56de86343c1a2cc6c444214f75566955b01303c0367',NULL,NULL,0); +INSERT INTO blocks VALUES(310523,'0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453',310523000,'716de5998e8b20af5de5df56a9a881d392481f0b1b261d3fcdb51bf52d6f69f4','065b22682abbad6d9076204a74a4be79acb71b8a8fd715ad334c3351f35f75dd','4e1b02274bf01a7e2d08afe62a7f99f5ff4b107d131323bfb7c6b405089c4d6d',NULL,NULL,0); +INSERT INTO blocks VALUES(310524,'b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655',310524000,'012bb0e462fa1a4a143f13b750bed77ac06885731e04b47e951023a8e749460e','7b1d9d04b71c2b8f7aa31cdef567336e6f1dfba44fcb4915696ab498c72364d0','d071e4d339d393a000a0bb261fe51fffb5da4ec6d8c8f23cb0d868ef45e86594',NULL,NULL,0); +INSERT INTO blocks VALUES(310525,'2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9',310525000,'34fb519efe88b96e003c466c03520229ee428f4a9ed3209c07f6889a8b2fd9df','52694ea9983ac76659645946334a071b7b5e86e295155526e3a27cd87d81cc87','b0293fbc9f4cc6206069cb15ff54d6f3aba5008397e191ff09200b82751ee9ff',NULL,NULL,0); +INSERT INTO blocks VALUES(310526,'07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d',310526000,'e07a98f8ae58676a9411517423e134d3d1fae321c2b43f51c25333e3c1ff2202','7c47526dba085953aa0d343f0e5b51520d69f92b3046013d0fa0ed6632b74b4b','d2e0aea65d2fbe62274725d05c480ba1bb66d3afaf02afabb2dec9cd170860d2',NULL,NULL,0); +INSERT INTO blocks VALUES(310527,'5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db',310527000,'bec0659c9057fdca682d4d6ab1064ca6ee5802462d154657a3b276fa1be1f673','8d0d0b180ebfe5738144b9e1f8e81f74a90cd81fc7bbcd6490881b8554ba12b8','3c436fa842ef6ebd90e6c0794f46b0d5583341a406b7b8712af3ef7c79206aaa',NULL,NULL,0); +INSERT INTO blocks VALUES(310528,'a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5',310528000,'abe61beda3ee6914cc347edfd2ce26a0ab1c5628bddae3327f88043603f29f2f','6f1b36c493186bfc813d2e3638d0fa2dc68c2ca7f0823bf3935a2c7d2539da9f','6c5e06f8428a1f1d7cb00c06b7b16d53663c6381f5f09f2faa40a0931df666ff',NULL,NULL,0); +INSERT INTO blocks VALUES(310529,'7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b',310529000,'088fc3809dd410e8a239e2da6f1938683c437c46f95975a440dcced41f0c73ce','7e4232af9977eb670466868d83e6df5ddcb39d899f33ef653b87d58b422ab64d','64d3e101b025913dfeaeb36d526e52f52a16fc846bc1bc85078ab5d5841d6fa6',NULL,NULL,0); +INSERT INTO blocks VALUES(310530,'f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110',310530000,'fcbe1d8b65bb77008da77ba5010c8ea58b23bd7789c734961e287e59b4408816','7e4077941dd95a2b0e51b0ad680935a7232fa5cf31f664150510172e4c2e6da1','36b7fd1c927d3b134e688322f0120f5ca7187d3fa7100829bd452f796399817a',NULL,NULL,0); +INSERT INTO blocks VALUES(310531,'764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15',310531000,'d8e06cd95b4938a8f555867d4a71852bcae6f10c0fa90ae73cc3479ed4930024','1245439b0d3fff0822ebed6e6ca34f99f24194cfb36fb2649ed61b0ac26ed7a8','d41b8fcb01d237cc1a742c86825c22547f8e71a0c48df975e3adb13db69efd08',NULL,NULL,0); +INSERT INTO blocks VALUES(310532,'4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836',310532000,'3b6b5430613573b986db19a9d39001eaa83c7f894da2c533e4bb507e09790fa5','6004fe4cc5ce025759106802ff56bddaf546e7a9d71510e49a4098766a794726','e5163e57a82f167d43ea006137dab0ffa9639d988a97bcabcf351525bfabf47a',NULL,NULL,0); +INSERT INTO blocks VALUES(310533,'4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912',310533000,'16c00e17f045fde4640b38688a680467ce55b8e5da29ae04a1d60f46791c0f5e','b9a73939683499b11ce35245014153232ddde14a49fbcc8cdcac3f02c9265a72','6f857fc829e68f39bd141a2048c736511e6a0a1ee6eb9b2f3e5de5345b0cb5a0',NULL,NULL,0); +INSERT INTO blocks VALUES(310534,'2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad',310534000,'559ab2ee9e5f74830636547b35497f32e54b79a2836a15abcad6d1f7219b134c','36dfe8e8614a4f5046330df939031d7618e0c5ec9a5e9a23adfb5abf81b17832','f540e77c6be63630a5ac6037eaa21044fb95b707d9e71d8b1bf60f2f2ca196cd',NULL,NULL,0); +INSERT INTO blocks VALUES(310535,'0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce',310535000,'6297330a254c027ea604f2866961e47eb7c1ad1d91e14017c5c271fffc124f4f','9be9aa1d1972bdb4febf132b2003528501375ed67a70a92efdebdeb4c1b98a90','487033cfbcd2094f7258e399bafaccf40dea7cc539a7c838973d6512fc001fe0',NULL,NULL,0); +INSERT INTO blocks VALUES(310536,'dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018',310536000,'2fb53adbae88c7732ff5fcd0d8f1293c77bca3c724a24612518ea4eba8f8c0cd','f2187b1c129b489914599faed5415ba0d52a0bc44e49453df54648a30f505ce2','1b526baf47b208323ed9dee940b51d3ef9a7cebc65498f9a19024d5993033a8b',NULL,NULL,0); +INSERT INTO blocks VALUES(310537,'944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d',310537000,'3f00c364eca726cd27673c7800bbc826acd15a2b89856b4761d87afc541da98a','849255d12eb06d2dbf9ebd04fe0a99602216890abe7cb6faae4b13fa3dc0b3fd','1e7d95c74d6cf6beb3010a52f78348c609381680e4d485261a35953f202705eb',NULL,NULL,0); +INSERT INTO blocks VALUES(310538,'75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd',310538000,'3970e5757fff4155578e8887d0afd1b54341522ee330b301efbc6ddfbcccf80e','8ab5b08a8f5f57d62cc8fdaefb001fb34757bc7dfa355311af7e993338c15e80','792a702f3508262f0551de97be9a4a68f344fbff979a8647aa9c90aa406c7c28',NULL,NULL,0); +INSERT INTO blocks VALUES(310539,'338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3',310539000,'7dcecf391af529114932f3501fe2d1850d8c0d0dde8484ff484a989a14f773cb','f889de9308ec0bbca7f214cc8c81030ec5317cb72dddbb97dd3b00a002c4fa64','febd20714599577f7b253d99cbb5166bf5d1de6df507709b5ec542ef5debe1d3',NULL,NULL,0); +INSERT INTO blocks VALUES(310540,'0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d',310540000,'cea510e4d7985dd66e635e41d5565ca3e61e722ebc49e989515f6de67ceb7de4','474f6e2a51277c8f90f02aab78058b6b9c7e3327d0cec325ff6002e058148496','73f773b8355f1ebfa8e603d999672a760d7d18fd625f222730f136030e64e85e',NULL,NULL,0); +INSERT INTO blocks VALUES(310541,'ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453',310541000,'54d1e29f86b81368d41f033cc6b32357e20ac3a1deea064917e45e72eb846496','0b004058cd27a1be5261693a5203d69c14f2ca5b3105d21bf28ef3f49273f885','65f4a7188f6120499aab2c4391a19144cb91e874a8727c17afdf9513304058b3',NULL,NULL,0); +INSERT INTO blocks VALUES(310542,'7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2',310542000,'33b6c29332fd01db5ad754d5749cb539a0cf5d5d33bcaae36fa672b04deea305','7553c0132cfd45b14cbab4f1e59510933069a4f3b82be8a0e2f13d08e3a06cf3','137becfd281afe3f548c28a90def5d0b48f7be648ee9d05039f59b1445a9f91f',NULL,NULL,0); +INSERT INTO blocks VALUES(310543,'cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2',310543000,'f4292ee5fca358df10710105815494427470ccfee0f411a84ce53a11d8a05fb9','f7e56981d310a7b8a06ea7ce6c4d4091ce35e4a8023ada8890e952453dae8201','ab7557c521506b8d0e4f19247b027764de58fc3bad90fb3ab464be043809dbeb',NULL,NULL,0); +INSERT INTO blocks VALUES(310544,'c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6',310544000,'08a08208b1b3c32d6ace3f59d51a9d038f08e993dd2df5f7c88adaeea0b1ef0b','bdf0fae7bf5083ddc2a99a4a7efbaece20070f0145e44b67567f71c90b29ca2e','d064b5c40cc92a4fb4f46da1a72a9c7b8d8fb4365c462eb486b7ccb5f6ca846a',NULL,NULL,0); +INSERT INTO blocks VALUES(310545,'aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a',310545000,'2eae28fa50bead38b3be859f5b5659af380c2aa008bc4c3d19327b0786ce5241','9a25f3b3bb017cd926e1fa8b768324a147979f518208c106ffbad1b5fb8d502d','06aa09de6ff2165e6afffa8255b0dd8977d91e01d8a9bb8cd12a4bf10c3152b1',NULL,NULL,0); +INSERT INTO blocks VALUES(310546,'20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d',310546000,'5d71fc815f19de02f829ef5174847c7248a56dda7440ec3d0faf20c1c0148d1c','cff6edc9625c136443e036d39b1ed3cc5e76a49b919795f05cb92e508e4cead5','554a964c5f5d6cd19d17bd3a32935755ded976712b81e4a1ce144e95c248a9ad',NULL,NULL,0); +INSERT INTO blocks VALUES(310547,'f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7',310547000,'7da146bee7d9b794d48330ebb9613050e063f5414fa4c5072beec6a11394dd21','3a305e7a9b8de2e2ec9f43206a08e257a1e17c540f0e47625b64feafc3413daa','6a13b92806ba1bd4bcfeca83c69c0bf1fb33dfccd1c8d1bbbc6e9274777e391f',NULL,NULL,0); +INSERT INTO blocks VALUES(310548,'bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2',310548000,'6b0ada4ad9d4bc710468367b57412f2fe7a5d3b84a7088a48e1388df2ef23956','6a9672fcd678d39907e6c01137f2c6514ff99929cf60171c1760e72dea1b1f19','17645c84ae7d23bdf7686b243a13665487fffa2b948df52747a219ce30d67577',NULL,NULL,0); +INSERT INTO blocks VALUES(310549,'8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979',310549000,'bed2db4b5cd892b0ec3dd1ae7b17fa183914afa953cf650714a66816b0426702','d16823e9ed0b346917aae45cd173cbd173d229f284cb95ec7af7c9b159b2d8c8','64e4861d9bb959e059d64babb52078f7edb6e8e5e7e135898347ded7ef84a514',NULL,NULL,0); +INSERT INTO blocks VALUES(310550,'08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914',310550000,'b44be21bf36655ba56d872d923c2cc0d955c274330fe4172318477353451ce66','6ce86b2a35a931348e98118c7426950ad4ee1a9fa557cd3c1eab0c4fd8d3f144','781555546e8af008ddb64755b04af7c8ad597894b810bcb2b89af3498c950343',NULL,NULL,0); +INSERT INTO blocks VALUES(310551,'cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b',310551000,'45fb127ce53800c27854f4a24ee639afac2f164c38b6abe1b521b919fca85c12','49db288f7c65afd8f99a1f8e6edc85dac9c599d27be113df4b6246f9232a6056','96de7b13565592af3e11f500ef100984a9189b4b663620c32772ff2cdc8d343f',NULL,NULL,0); +INSERT INTO blocks VALUES(310552,'d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d',310552000,'661f0e7a6bb2808338d7a8e1186d92f3de98a4a7a8d071d7cb3defc0b7322e81','f5ba7a3fdb9394f101d5187b107ad937fa5a224c290119cd76bb37710b1600a6','409b3d49326eefa621b507a156703f6fa88298eaabadaf2d58dd52e84e732354',NULL,NULL,0); +INSERT INTO blocks VALUES(310553,'d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2',310553000,'d1ad6dc986674f2cef38ab916fe5299fe9c91e7559e6f5c90679bb9b14be6e6e','b1777df226b373535e3fff13e4379375cd601d0cbc1a90951cf288d21eb66aff','fd9489d60de15497ded952349d960cee9fde461f22e00417587ff5b1b6a78d68',NULL,NULL,0); +INSERT INTO blocks VALUES(310554,'7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65',310554000,'d0ea6c81ba15b671216ddbf274af820c8740ed1352c6fa877036c4210fee234b','870b61238a3e7c740fb52ba62719724cf95250ac22a4705dd88a1870f560fa1c','cf9b7f176ff36c20a9b655401a5f28e9f8f6e580352246a5ef3b0a3e4ca51ab3',NULL,NULL,0); +INSERT INTO blocks VALUES(310555,'c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa',310555000,'b782c3fcd7ece6e246d994249391222e77b3ba89c4b0e1f8d868588562d9d069','8b3bd64e05150c476d55dd64729b8e20e7b8c345c35c723392b194785472c6a3','0739b7e81633938fb3a3c19a1ab2a2992c4be548fff1a8c509368b2820c2f7ec',NULL,NULL,0); +INSERT INTO blocks VALUES(310556,'4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a',310556000,'c23d1bb3810c83bf52f05a305bf2245549f850056fa42b22f533484853b51435','a858a0bafa17a74c79b65ca07ad3418ac201e5096c87159bf789f40c3d84679b','90d1102e2270d0c4da5ea8776458b88788eae8f3f0782745e8787d9af8cad706',NULL,NULL,0); +INSERT INTO blocks VALUES(310557,'0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382',310557000,'0eff1936c008135db443b7c7900c83e244cbe5c13ccc062255309e9e4742c95a','6cc6e826d65d96cd9546e3e459934acfac6456a706ed5423da4c4ae0c71feb83','f8a9faaac3b84d412c9f6841df8d3d9ef459dcca503ba8ee421a8a66049ef2cc',NULL,NULL,0); +INSERT INTO blocks VALUES(310558,'75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15',310558000,'732c122f1fbe6087457e195611c22bdb6a007dc96f9bcad2544472f9f83b1123','56c4cf4c2b8562bd4e1721cbcfb9faa7c67e31e6f1abd95525084cc51dabf3b1','ff416feaface22b7793ed465ce37823983928f7772279500e45c220745f58b5c',NULL,NULL,0); +INSERT INTO blocks VALUES(310559,'6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc',310559000,'41f3711def550b4fa5f9606f5a0e7e9da30decd64b7d0ef7b474480844f86951','7d1ba0a6152887e4a66e003c7444c35fd14a9ed3c48455e6ccd8476ff232cb55','755270e2de4235ca1404d1243515d313deb747f3212a8861f9ca94fe074119d2',NULL,NULL,0); +INSERT INTO blocks VALUES(310560,'d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec',310560000,'73e9502818b90048582a9f5f1cf3fd96b78acaf7cd2289450722c3edfc875b21','65eb78129546514584c78b914d05644975681daa08d796aab35e3662a4a9f387','ed86c1d022a5daf1fcc1fa039fab1054e0b1f0b45648544d778ddf10571d7e7e',NULL,NULL,0); +INSERT INTO blocks VALUES(310561,'b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee',310561000,'cf11cf2caeca0523aa3dc552fa0b9457b61b911c29a71ece2d6215d90bf3f344','3c09fa18d2fcc72e4afbca9679e46f5bb5f4d56dc2b5d4da3282c758819d5403','f4b42490cf53debc929fefa2320e99ef286fd4a97c36e02421f0f70bb7c76c5f',NULL,NULL,0); +INSERT INTO blocks VALUES(310562,'4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405',310562000,'e483085d3466d9fc44711ce805c0b179183d24feb0c3b8cf346ea446b460e410','e06b6edc60212d17694503e28f4d8879a12b5c9f0d75fe281e0ffea001d78c76','0726b9f9df3c3f294168afa29fa73432e6f41221f6a5e6cdb9c50a12f04c58e7',NULL,NULL,0); +INSERT INTO blocks VALUES(310563,'f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636',310563000,'5a82935dd4999d4893a379132d8a65e8f10f5c93f74b25dff1a5b1fe1a95d8e7','4df37acbbdd1a1f9c717f58748f170d7ded7f62b686121a9f821275fbb12e25d','d5a5b596030ca91a997f8b87b3ed1f09e46e168b357a03c2d7c1259b692664c5',NULL,NULL,0); +INSERT INTO blocks VALUES(310564,'cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea',310564000,'842a96b665bffbaf0545f657527415cc78b1c00db057983343449085cff8d9ee','f145d6e47e0640e5b13185eeb88286b190884347aaaced30f2a3ccf1d934b75a','4d46ff89ff84e9c35e0bfcc7386bbf0964b402beb89a4c47ea2a6523fd0e23b6',NULL,NULL,0); +INSERT INTO blocks VALUES(310565,'954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305',310565000,'f67167b793a276efdd68c04b2dc9c0fd0b7719f2cc02f21695d0a9491a9848f9','db540061e4a8c10001274daf3bd8addd05306a07836ed6369388720544aae941','d8ccb3698e95cbbba7b5b59b1cc6d6dd8aa432575d8c1958cbf7e8d3c53288a6',NULL,NULL,0); +INSERT INTO blocks VALUES(310566,'3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39',310566000,'93d64cc60754b45c9d9f3f2be85c199b4ed839b85e656bf95e3c54194029a950','bc9927aa4bb22304a9ea2edc24e6fe5d8d6b6d6f1083cd64a5098492e811f2c9','8903d2b08fd37027d7231bac8fc5e38db49d44f8fddf7cad2890ccce157c6a7c',NULL,NULL,0); +INSERT INTO blocks VALUES(310567,'499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431',310567000,'d248eb8c0c17106c67082cf228215cb93d017bac7a894479d3cb57285686f7ad','98c790c8b92ac26f828848a06f10408d459b5fe2f54529f3137754d31cb103bd','0930464aeb3f3caff5c860b2dad1c373c0dfa3de30c18c678c9da75a58bd9ca1',NULL,NULL,0); +INSERT INTO blocks VALUES(310568,'ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e',310568000,'e76a89178d95044d56001e30d85c1f4e1f943d0175fdfac19151227760815bf4','570347e1c43a67562eedbef0f6d1a5e9945e293058c5277ec2ae0efb8254eb63','9608f4babf7db8921d8e83dc1453bf2cdfa416968f01aaca921736b9b9e8fe15',NULL,NULL,0); +INSERT INTO blocks VALUES(310569,'c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de',310569000,'2c130a13900eef57a42ba1b64b3152e9455eb5499936bf943c206f523990fe63','2efe30e2ed6a9f020f3ae70db81c701cfe07d9bd24451dd80294d0692c63685c','27c23180188237755f7380c49637339149a7eb404f611a98114ae7239b0e04b9',NULL,NULL,0); +INSERT INTO blocks VALUES(310570,'f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55',310570000,'23f037f4be56edae25410629cfa7a82245f0517020dc7f64faeeeef4f296bc0d','2ff0d7d5e4fb10d63fdab2561aacdc90f92f0df462bd652fe58f23c076242e82','6c26f23bc575e1191af502131e010deafa0ba8a1e244147758f6e65f8b6b6e22',NULL,NULL,0); +INSERT INTO blocks VALUES(310571,'b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73',310571000,'20dd9577da0fc1506c611a941f1c4650372280677c1ecce7463e35b67c0d4b76','7098b0fe2e0577a4d1ccd090b3b9ffa952b5c1fccb8fbaac6b1a43635084eef8','4931e3731a84a7a81aecc0f22af05cf7ef7e25951e3793e399550e48cf7633f8',NULL,NULL,0); +INSERT INTO blocks VALUES(310572,'6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9',310572000,'0f770f0cf5343224f6c679c4466cd015946c3d52e100c1241b4d145da02b5e57','e7db661177bca11155df203594bdaf815bb537d525084767ac0ed6e9fe99fd5a','9acd5786c5b4f928817bbd1c237a035cdec75bc0207d42fadedd24e30dcaf1e1',NULL,NULL,0); +INSERT INTO blocks VALUES(310573,'302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5',310573000,'17c50ede93bc8d19365a29233dd2e3e9e8cbac921c5b3d9c33e58db364fa0570','672565a64f687b09950572bb69dc51cc874a34d8808bc861d84bb3d227da1f30','3ca201953835e6df7c5b90afd9caf42f47469761ec3ce6964befce768550942b',NULL,NULL,0); +INSERT INTO blocks VALUES(310574,'c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d',310574000,'9d7e12c5fef9a8fc703a70bb9a9534a6345e92b61ca7b48964e10d0ebb9d95cd','c681d31f5e8b1344188913364f2eac845db9d9a936b45f6eada955996b7073c2','987b4e247d7b971dfcc893298c3e73a3ec4fbff9538b34d39eee4260312ca7ee',NULL,NULL,0); +INSERT INTO blocks VALUES(310575,'fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde',310575000,'29c97edbce573c66330f01bf5793928f7dd3e176f34457a4f56bac60234bbacc','3ea5d34d65420a54fd0a1c8424f3afcfa5eb40707eb42088814218583ff36cbd','3ef1e9a957078e2eef58b342e1002d04f7213820a7a1b0af690e45574e1848bb',NULL,NULL,0); +INSERT INTO blocks VALUES(310576,'b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5',310576000,'f7b2ff06d67c9d0868b628aa07c78f7b17fe8a921a3c6163a4e86661cc6cbe8d','19eafc5f2e2d7ec141f9f2bd1d5c7fb0b380adead15654553498e3af5bba0ea2','b0e1a5598b60f79a4897f20ddf6a04ad3bbd4a7bfbd64090d497e13edd2156c7',NULL,NULL,0); +INSERT INTO blocks VALUES(310577,'a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3',310577000,'789149426dc48cc79f009d46944ebcb31b188c2ec852de9cf6b16c1f48182aee','be512460315bb9b670cd1b9e78165df49fc17a8851dd7b66bb58a0e83bb4e487','052328d5b1381128509f7f05f0bfd68ce8a0f9ce5ff8ec18f344bfb2f47b4df5',NULL,NULL,0); +INSERT INTO blocks VALUES(310578,'f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf',310578000,'f402148b83a28bcc4c11346044f474455e0af66308638f5a67ed3fef0edbe55c','56dee75f67260fc83f55a276ed430bb1c9495d91b54d323a3d0cc427686a85c4','ed0c8d5d6febf2ee686f5be4c96ab45a58f8e4616716c0bd6b16df5e7741aecf',NULL,NULL,0); +INSERT INTO blocks VALUES(310579,'672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38',310579000,'2e94dc048ee39dc75874d6221b39d2621702e0f01eb8152adbb1e3799fe95393','c9a5cabe5916d0d169e06c7528835c5fcb00af3515e0c44e5e17c567dc52f1ee','e155d7766cd137fd85712537c0ebfdada610afc05b88c63f84dca3edd64f36c9',NULL,NULL,0); +INSERT INTO blocks VALUES(310580,'e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13',310580000,'7ec943a775508a6b3bb37a7d9438da6c76eed1df84d715443c0b001ff5726849','b484963a876ccbf57728287a7cae8ad916cc4523219b7f2fd6c42bbdfaa5ead7','75bb6e2085e39e86e2a2edff6a698f3adfab3e8f3e00f21ae15d9d1dd1da8838',NULL,NULL,0); +INSERT INTO blocks VALUES(310581,'baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a',310581000,'6fce0f8faecc5b5438c5ad8d161c013a769483d8a4f0d0f3c5f182529a93bcef','301ff101dba0c28f5603b3776bd17f373f30a5e77c8e619dee30e323322e4680','b57aab80dcd8a1f97d408a2836c0c9a1aa71d39befa8a7e2a91cf2aa39dc7aed',NULL,NULL,0); +INSERT INTO blocks VALUES(310582,'08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c',310582000,'51b642d4f636ea7df05148acc2c57e16e721585d33f0fc0b33ef9e316e4d6fc8','3e8a5d33e8340bc7e1c96c95f4eece8320807dd01e7f66a53f9afbcd26b19fa3','cc317aa0f9c053fc633f86c0df716b491e4088bb50662a0e9320eb5200ad27bb',NULL,NULL,0); +INSERT INTO blocks VALUES(310583,'22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4',310583000,'780863ca857e09c578d26c270a2f4d6bf52ac35af375a485fe16ed91eb8a314b','60d468a45c64869425508b88e3fbe166690c3009fcf33e3292fb2da145079044','2302777ed825984d15cd84ae399f6553562a92bf6216d9361df95df95cabcb88',NULL,NULL,0); +INSERT INTO blocks VALUES(310584,'db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b',310584000,'43ac9ef4d0ecfc18505524d3aa7ff32d32897b1de8dccaff5ebad42793a087e9','ebebd15c29221496c6547f786ec67bfe72278cbb8e15fb96737a30094880557a','477704e184f85c58aa8fca58cad4430e0be8d8fce5ec7e47d6fecc88ed2a4dda',NULL,NULL,0); +INSERT INTO blocks VALUES(310585,'a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb',310585000,'eaf8b429e88d71173b42debab7bb0ae02a8e6e36e411ad8fdb942400af3c6726','733e1df46cad658a76f3ae6bd51acb09be0932fdeb5f92e99b94bd5bec78ecb0','fd0e263a608f618864f3bfeab5613593e755bcc5388fdb9acedb844ffeb9bdbe',NULL,NULL,0); +INSERT INTO blocks VALUES(310586,'c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7',310586000,'a80f5b8533d49f0b56499746750033414df96442420cafb186344dee727e5f9d','3ead47e29b52236c485f6461d73c47c076f23aa5c96d2462adbf265966426f5d','c1032a009c3a410ad0b8ffe6eedf2766db9f6e6b548fabfe7951e137c404825c',NULL,NULL,0); +INSERT INTO blocks VALUES(310587,'6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa',310587000,'b9d78fd96468b4739d9739d31ae4d5d3986928428be9e8fb976c78eba53be95c','94d69dc7ecb628956923ed4d570fe0da3ef0c367066d76252f656f3774347938','1a88a340da7120857a5cd0426c8a21a9f09aca0406c3dda7351e227c68281f84',NULL,NULL,0); +INSERT INTO blocks VALUES(310588,'d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff',310588000,'32a53fd88a5a1ac75fbae59c2435d2675cac767dba28b5292976ba947bebc8da','b50620604ec72308ff19abeebe034e9ca8d732d2d21e765ff2ff78940076d62a','e603eb87468f13133af8ee8905cd79b4094edf308f03b768d686f1185b9f8fe8',NULL,NULL,0); +INSERT INTO blocks VALUES(310589,'4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da',310589000,'ba48010ee90045481ae3133726ecf28f339883c85d598c32280540a64963addc','78bdf68341d15bca6e325624feb58f527fd0256d044dc90dfd0c5874dae32f4c','31982deaee21c7fba0d90d4e6807488b037f87fd397b99b48d9008db996e4d25',NULL,NULL,0); +INSERT INTO blocks VALUES(310590,'7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6',310590000,'793d25ea2df208571c88ddea2cfa75ab242d069dc76a63599cd5fa32ecd16054','c4f9e894ebaaca5ba7bd4c20106b670025db1438df60700fdb4d69032277f740','c33903bf84c1f7d868c08ea24c5b92d236374fc8b5685f21ea2b04ba4fad819f',NULL,NULL,0); +INSERT INTO blocks VALUES(310591,'9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7',310591000,'4341b0c328eac2af3b076dd176c2209247a5c06d91a59de1acc286728ca1305d','a3af6a21611a7407ff02eab2468c377d29814f84add22f19f3fc1bfbe0d9694b','69e60840160bafe83b7e5aacf58a1e1b52a0722d583b1df6264d4c27ca9da445',NULL,NULL,0); +INSERT INTO blocks VALUES(310592,'d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3',310592000,'8ee09223831cabf92339eb3147f3d4133a6150e2cdc890dea3ae66168ebcd0f6','daf91d91dbbe9f77915568b355565696d4da404095e6b547bd2db3587113e403','0c49857211980bcbd4298cadb68a2686687807f93ccb8e93a4d4ec3e5b020fe0',NULL,NULL,0); +INSERT INTO blocks VALUES(310593,'97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b',310593000,'24295e885f53005538cf54b0ddc545ff2c0e7a3e70e3a87de4b9b11178ab80d5','b5c3b0df9648788b62ccf2fc881924438c4409b828117e2db502b42f2aa800b8','2f39341e8cd5d2903d72da92c979d55af20b6497ca26357c79d762def34c6f4e',NULL,NULL,0); +INSERT INTO blocks VALUES(310594,'f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015',310594000,'0e1eddb36733f22e41d01490e31d8ad8711af485f9644478a2a8820f09793e33','05b3baac4f1a13d3b2f287b6660be568bde7646bf4d2dcbd58928f8be1b5751e','2eeff5a2d51d740049b0f911825572f02068b682835aae6cfb2512436cfc67ee',NULL,NULL,0); +INSERT INTO blocks VALUES(310595,'0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66',310595000,'8fa3c4593fe914eeb79d9b864761ee7dd5d2c799ff5d1df4f0ec6cc335e93ac1','2bd0b4f8dcf78006ab0a7aa8dd4d71c6598e9162d772e84c4701bc4c8d45f6d0','4c40ed08ec9690b96c40cea703d7fe4ede60b89e194b059442ee9a4375b80d47',NULL,NULL,0); +INSERT INTO blocks VALUES(310596,'1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688',310596000,'0f02de76564828192ee58fb6f07b3939c53417f50f5df43d741a742ce8c2d8cc','c7a197d075a2b5d5bd3267ae10eba1596cbc93bcbf77830b4d32230c27fa72fe','2a1bb66fde239c20c9d94e667f356c175888fe279addd6d99596a8cc7fabf423',NULL,NULL,0); +INSERT INTO blocks VALUES(310597,'490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd',310597000,'dfd60db3f37108d2c636a3204e7e32cad4d3c888aeb710e24d24e08731df5097','c648adc37b10d6b7c9fc0e1f2a4b5c8ff9ec86fc035e4124c576d8f118c23503','650282ef5f9baf8c2c7b9eb59c1d4cbecc202344737aa65568d7e59b4ed0bf4e',NULL,NULL,0); +INSERT INTO blocks VALUES(310598,'8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a',310598000,'870b9172895279ddf0eea7c295ac66ff499b1ad52652f763d6a3935c2dfbed8c','b23f0702a5066982b19875ee3aeacce21c97adacc44c5ae6bc1be94f3edcfc93','e0c61e40e47a3fc873b62e088ca9e2801bedbfc90167beb06c941ef58921aa7a',NULL,NULL,0); +INSERT INTO blocks VALUES(310599,'71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8',310599000,'58ed63759b5f5d48819d1c924e25036764b728f9d7b83b08fd368fa3e1bdd332','cd5848644ac2a8bf3fe63736a96ce91345ecfc54c943e72e6e24b8cde5ced243','f119fc4c42d3c05d42aec3d0e5139ea5ab52ba917495e0cd0eb289cbfe7c487f',NULL,NULL,0); +INSERT INTO blocks VALUES(310600,'f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a',310600000,'5ba20ac629f2846a58a347946342f086b1529b3d4c19a6a93cb37ce2f6c781b7','8d9bdfd600f2ab1f9df6b51b3849792e10973ce73b872ab6e8d6da2b5606af53','2445d96b5d8a61a70128b03e2cb6fb31a5912bea043a904547964ea28f708839',NULL,NULL,0); +INSERT INTO blocks VALUES(310601,'7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd',310601000,'98094278d3706a99b1a5bc02498e33f8c316315a607f014e1a057a2baad922f5','2acbb771db97fb8e8f0963b813502965908a680d2fd86446a33be34e3744e81f','d19d246c74a88c90808bef18c523c5b3613fa816a895554d839b02c455cfdfb0',NULL,NULL,0); +INSERT INTO blocks VALUES(310602,'c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2',310602000,'e3e9805428639bd0806e24007889b60b4f5e3b399bfba6d0ff68ed0c7363140e','243a393f2fac01b0ee4e10351a0cdd703509ca63d66654bdf578f3eca689421f','0521d9a32de6ba28d8da96885a70c130a2359283532d29abf3d876131b2a16ee',NULL,NULL,0); +INSERT INTO blocks VALUES(310603,'44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c',310603000,'3ec5123124b50e2943741319254ebe63d5410a3af3dc56fab3b1d11002453979','6bd040dedbdefeb0e3398fb4533bd2bcd99edcbcaec5319ccde5e7a5403017d7','e80209237ba7dd831b0b5abf34da25580b054e7770cdd121938312328dc3ae93',NULL,NULL,0); +INSERT INTO blocks VALUES(310604,'36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f',310604000,'02ce31a767356b8c5c3cfa50aef88e420bc0a0026a6b5a9de323b8b6522ddf26','50dfcfb2871929ffce0a82a85a5ee11a125109a774b34a9ec127ab6bfdfa3b8c','ffbc78112dc29cf522659ee62417c9b38dce46ca9cf53540a5c2e8025e38b79f',NULL,NULL,0); +INSERT INTO blocks VALUES(310605,'ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9',310605000,'cbfc2eb6739bf2d671ac0196c78865612592f7629caad2466e303a7c14af9b46','3427c9e8c0ec9016a521b4ec842bb5cf3731cd747b514a553f222e44a3d3def3','54913ed142c2dc6b0aac7b480b4c1ffdeb562702185dd44deff40f2f76117d73',NULL,NULL,0); +INSERT INTO blocks VALUES(310606,'9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f',310606000,'2266c4b7443b474124516bf19dc082d2cc547ae7fcf2027bed2b1360eb04296a','c11cb503ed27d64acc8b2363a34617edbbf35bb701f21b87c70eb4966f7eb035','09392d7614905f6795ff899e05eca8e8a332488f1f68772117d36a48e606bf78',NULL,NULL,0); +INSERT INTO blocks VALUES(310607,'ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d',310607000,'8111c3319cff47fec3e4aa7c007516bcc3dc68235e7fd8d192e3894f093c035a','12b12d0888cd3a82d149f4f8c136000c26a49f97f318c76dc90fcb4996bc3064','cea19b754ade705a9372f9866b0438d0c81312035cdbb9d7c778d38c27e95953',NULL,NULL,0); +INSERT INTO blocks VALUES(310608,'ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846',310608000,'399589784086ed7a16699c38c2d9ff69cc2e055fb069f13f073440109ae97c7f','9fcf0c090ae0aa70fee65fa83a35cd15311ef460f5fa501f6f842c29e2865856','659f7e678a16e0a5518e51fdffb5b012425308c1b6e9612c7288ec3ee7bbbe3e',NULL,NULL,0); +INSERT INTO blocks VALUES(310609,'83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455',310609000,'425f42bd35b0e93e586ba8ca0c58da2c86d8e159d444f2b14908ad44248379da','7e09b9bc2a4a6bee758dbee3801455b3c84998bccaa40ba8e1a62eed98fdf40e','2200500287fb87113cec48ac9056dfa4b8f058fa9ce528e418633ee0b2cf4c0b',NULL,NULL,0); +INSERT INTO blocks VALUES(310610,'f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9',310610000,'791867b9f8ed751e093bf724c48f7c12b387e9264d17028770bc76e6a47c1449','b5615378baa3bd212119929c04f03e2ec798efc02eaf92232b393e1cebf21cf4','b8d5744541768ffc79d1039803678428c7f21a5e6284c8a699ea82903e0e77f8',NULL,NULL,0); +INSERT INTO blocks VALUES(310611,'6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89',310611000,'c8ec71e958f8782a2c5b5fbc93750b6b8a5fe444e9bec83b0f58897891cb5b67','f026a93859c733bd910f0341d53802b2443e5efe0a7a7dedd3b0e3bcb7cd6f07','412e5b533055e47a37d8186b21f4ede04e8d2cddb5542be7dd6983c9c6599261',NULL,NULL,0); +INSERT INTO blocks VALUES(310612,'08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd',310612000,'4594b8baa36eec188227e960a64d42a49fa2c3619cc852486ea09ffab83a8f3c','b67528c85ae55a57b1dcf3501d340c280af942e4078a1c9a39e9ea63ee9570b5','d5c41c70c7a4dcaad2d290931426912ae1b18e84a43f1139c658c9bb705eb70b',NULL,NULL,0); +INSERT INTO blocks VALUES(310613,'c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53',310613000,'de0e85bddeac7e267f1e2d5fbcf84f5761acaae0142db35d5c2886f386a1a5bd','d6e9204ae7b7c5f887a25fc06ffce731e1c4f3228ff039e35be1d321276f81a2','ea1f267b694b4e0ea94c9f43a2dfeea2b52d91351f5095213d69976c0bec4951',NULL,NULL,0); +INSERT INTO blocks VALUES(310614,'e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b',310614000,'2e74f610c9f8a9d41e23d331f1be5dd73ec34484015a434dfaaffe26ea12d5e9','d1459bf2b59c0c441b8f00889669c3c6f645f66f608eeb623576ed7044bf37e4','d1c8eb5da18f7bb6e6f04f7a211d13c4f75551f63078b280dc48a590d2a86fac',NULL,NULL,0); +INSERT INTO blocks VALUES(310615,'fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc',310615000,'d9f45cb567f34f84c514d22301b2da86908bc253aaa629b6865c2133c206cabb','b35468ce63479f2f7cd17f791e8a66b3a1b42e716a7792a2213bf8742978f9df','a0d491660440f20e3172e31d1a07cf617ee504e64f20527452b6da75e3ff9ce5',NULL,NULL,0); +INSERT INTO blocks VALUES(310616,'008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84',310616000,'e30e9f61f505ea7f98f2e1f45f9afc9a81fd074f021d2a870dfcae2b9f1cfe9c','51e2ca4af76f00e81e5f946c53f23e1ee7ba4ea7603832ef77c374bae59afe3c','2100a4d4e90036fe1b56a618ba65be80e19ec195c282456ebf591ec61c45ac1a',NULL,NULL,0); +INSERT INTO blocks VALUES(310617,'cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29',310617000,'d9384d42da7243395812dab1d950d95a88a0a59429c74b4d4a5176d0be033616','55776209dc06de6d494ddf7866b805d94f4371598273d4dcf23b510e72826cc3','0697ef9cb30c2a2c5f524e5ab26465988b98173c9b8d082d628e0121ceaf1392',NULL,NULL,0); +INSERT INTO blocks VALUES(310618,'f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b',310618000,'4ca7c230a3fe6c8ee91bb4bf3152c462dc1e2974a59f2c999064288892d08ea2','cad5af4c24c74aad93c806ae54251b11cd7d13210d68098afb26cbe73e3e120e','5e1c8f4551237738254dd66979de7472271c5411b1ad66b8d2ac417cfd9adf14',NULL,NULL,0); +INSERT INTO blocks VALUES(310619,'4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d',310619000,'61d138e6a8fa305f823286bfed3bb8ffd19459df4a4476f49a4f250d7021f7b1','42704ac1329f6cc2fbae3b8d6113afc679f159b44e007a4268d03cd9a9944721','1b9e7f31f474711312faf01725f3ae59d78b04eb0343339195d6cd0fd3d67509',NULL,NULL,0); +INSERT INTO blocks VALUES(310620,'98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519',310620000,'00e2a6449915ea1d728032c813d78b236b6042e13b1e3aa9856453a727d4a690','e70c9193269a63eb0ade25f20d608c5ae1d9bfa8d79f7ed50c2f3e7b03945149','488fc22e472a0f9b0817d4e30fd8a2fc91f1d502bb7eb67e1108235a545409c9',NULL,NULL,0); +INSERT INTO blocks VALUES(310621,'1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11',310621000,'b454bb9ea3b218e1c9a622016aeb5a87f2c3547b164498cf79638ce5c5b9c151','0993cb53bd6e9ea2635b2ddd58c9a43c5610e9e2a0ed0fa5407616a28e3aa201','25b3b0222bc6b3a9ae6e4949da06260499581b313b9fa002d566b16023d9aeb4',NULL,NULL,0); +INSERT INTO blocks VALUES(310622,'3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47',310622000,'791b9cd494c96b091f01a0acc1a77762bf062d13eab06d9ef3e7adc4a3ccf303','674ce108f53ec7902c24edac613cfc104e7d08cfde7c8dd3ce65ed9dfd72182a','75f35e96fb68715336ac80ea86223ed387b574b8bb192726c6707984ddab5b04',NULL,NULL,0); +INSERT INTO blocks VALUES(310623,'817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad',310623000,'accd538ac94e49e181ff93568c3c1c06e3a29752d8ea17c61e485e95e77b5b6f','a56c89d0b997d5411cbcf260edcbd409e31a599fe36ac6f20a3e0c031e17e750','4d006f3e4a07d9935ace0bd0b3de20e2e9a15eb44c46acecfa0baa17ec41eb91',NULL,NULL,0); +INSERT INTO blocks VALUES(310624,'3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4',310624000,'8ca42d0789366c39d92dc830654caad48cabfdff1b739bcaf850390d1a306c91','daec5678d2803f99becdecb666418513aab7cc9a37f6ab54e675e0a895a3b69a','08d37c765e8b49d91f9f1146a330fa33d47ddef089eb47b9d5ef4e672feca789',NULL,NULL,0); +INSERT INTO blocks VALUES(310625,'bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba',310625000,'97ddfd8dfd78b745a1baf90c8fecf0fd4a9bf65682a7900f532756ec9a4345aa','e378650c25e95773a8167e904ce8ff4d10efc57fc2b544054c6b4201f7547537','795c6e583990ec6196489d67ec3f1bab7d7c14430bcda2c0d22fdd148e2db2ec',NULL,NULL,0); +INSERT INTO blocks VALUES(310626,'b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d',310626000,'78fecdd210b3b5cf22f7edecc5d8ce31ece4f3ee90a9d1a7e9231353d74378ff','0d54a79bc7f05e33aefa5fece35ec2902b3da8461e34163b58c2fd3779483614','f40abca9fe7283910e120a1c09969f3445e4c8fba1f85f65fc95bd6db69a8129',NULL,NULL,0); +INSERT INTO blocks VALUES(310627,'828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f',310627000,'6a3176840ca189c93d52a64017b774dc5c8789121439d997cfe5ed3785ac2c0a','b4e762b53ffd3d9ba24a34032ba26b048f2c7524008cc3f35c0e44c1eaadf8d1','6a212e03fc08edbd3207b2b0430c69dbf85d5f84a5fa1b66784c7bd7d4c9e395',NULL,NULL,0); +INSERT INTO blocks VALUES(310628,'f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e',310628000,'f8271403e2bc0506b46083570d6372b1ab36ca545b7b105fee8bda6a0316d20a','966ab2ff446abb9ad3589034fa23dbc5c467d019cb92803745c8732b05a6bfbb','8606c13be3cafe4d4bddf5701a88bf6a9203bf0589eac1eb098ccbd8449ab343',NULL,NULL,0); +INSERT INTO blocks VALUES(310629,'254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20',310629000,'89b8d07c2c7c9b9e4d7cbb24fac8b39a02518978470689916fd7109938749327','f739aa66c8acb9c24def7f1febed2189e6cc63361d2f798ed32cc808acf01eec','d9e2fc746cc7844019a2794192467b6071e0b2a615599ed7f085cd820a94f7ee',NULL,NULL,0); +INSERT INTO blocks VALUES(310630,'09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde',310630000,'637f978db85998e0852aa7eb022b67c9a0dd80fc8358550bfb2295dec33a27dc','51ee75dd962cc512bcfbdec32657f7439d60f3e613329a313f44970952abc904','90af1392b478e6d84da5f26c385a0e8d8f96157df43b7ffaed5040b689d6865e',NULL,NULL,0); +INSERT INTO blocks VALUES(310631,'b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be',310631000,'111964dd5de58996c79fed037fa414d3091b24f39162b8b49b1706489fb70de9','c513b62a3d7bd0b4fc649889deb032ffbb9efb6d209e4bf5e14ea24250f147cd','46b710d8cc561e7bd3f5d70a226ad8bf6463246f0125be4e6908390383eb168f',NULL,NULL,0); +INSERT INTO blocks VALUES(310632,'79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1',310632000,'bac16748526f10796a496c934904ec1531fc346c47f76518effd0fdeab0cbf2d','6f4ee24d93a37b3686c71e39cc7ce7e3f79a3a9a6397e608d74c3646b9358d62','439997103b30d1a86cd73abe038c7ecddaea3f2f188486cc986bb9c439b7a6b7',NULL,NULL,0); +INSERT INTO blocks VALUES(310633,'e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1',310633000,'429706df8ba85dd7af927bb7d356b608005176b33a0f25e026050467478278d5','52825a5f663c03d9d8027057b36564cf4be997fdc15b5b503d1701019e92376e','4ce3223f24596151dea3d243f4e0448ee0233d3fc765f2a90be85d684c18119f',NULL,NULL,0); +INSERT INTO blocks VALUES(310634,'c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af',310634000,'7f0f383e79def1e3a68337c026ab2a8af69462ad3e450aa9e14e85c197878b2f','e9c54a989efbd6b8234ca7f0fae5d39b7f83479470c90f2d43dd11288792da1f','8b51cdafa4e30f307a35d7b150ae2c9f90edccc8b34c73180eb6ad1856ac058c',NULL,NULL,0); +INSERT INTO blocks VALUES(310635,'8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e',310635000,'8f7228dc809935d3676b5564f1d66e72eb446c74cc92aa037bf62b5f145bca36','f93c139e303a561ea8d29de69ea04dcdea0ed5ae41ad8ac0f6fdc2fe8817d815','cf8ce652968d079d7e736e800474590e13cab3ad6ebe1497f57cee48a254c4f3',NULL,NULL,0); +INSERT INTO blocks VALUES(310636,'ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31',310636000,'de84e3867052961680b29056c07dfc27b6fb2eac814419dfd4e91b43e900c772','63a31a218d2b42aa278be0ff76c71bf572114c281a90431d952010b7e75a0b14','878bc373268caab27574e672a4dee2187b28073f3ae5c86cc126147b9ab707e6',NULL,NULL,0); +INSERT INTO blocks VALUES(310637,'d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336',310637000,'8d0b67598fce1b999273f33ec1baf8250887cad0b83459b702ab59034f3086e5','aaf47bc37b85c127d9bedf76b0900a07b29bb2a1300a12d92200e3f006e0b930','01e47e5c8364edaab0015cc441caa1145d09c1a1dabed0a03d8e708c644254fa',NULL,NULL,0); +INSERT INTO blocks VALUES(310638,'672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b',310638000,'27790f551e94594c6af449e724c10ce357b5dc66bfebee23097afefb4e9f0a12','eb6e3a68506f9c0bd4c522d5537ea01140273c8b84f376cc95fda0c99c8d8c7f','8cc0fca3ffad9015927bb212ee5da7d0218490e373e8b22be90a7cbba74f214f',NULL,NULL,0); +INSERT INTO blocks VALUES(310639,'d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b',310639000,'67a6aa875f85ee2238c17799eff999fc203dd693b43650eb5fc852ca35e336cc','4618a0558955508e24b4e79308cfeefbdefcf4def0f3dfc389d66b335488976c','9d14f17d509f8281c04e6fe682e9fac6481357563002e13e17e30559784a5596',NULL,NULL,0); +INSERT INTO blocks VALUES(310640,'474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59',310640000,'ecf997fef417038221dea2f885b5cf3f39a695f1c5b4301505fba48de4967aed','41342d146bb15f623738e998c667d3bf2b51966495f1bfc948bfdfef93d27bcf','fd283dc32d0802e113f6a54d53a8a09f99dfa125590414bddf581f9ad90e3b2e',NULL,NULL,0); +INSERT INTO blocks VALUES(310641,'02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b',310641000,'58459ee74e52e1f17faf04b87d863a7f325a6f3e7119e9b0125a5f524b3f9e5b','266cbd2f8009b1c950b4a0f5d7b1a9e7fee56a0b60feca824b5f7e4f69334435','216296aa64be92588f833c4c89c6daa991b4836b482afd9822aceac82c02dc82',NULL,NULL,0); +INSERT INTO blocks VALUES(310642,'cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd',310642000,'7115a073784f629dfa4e75b9332519b2f2646f73b339566891a5a49a51130549','483e13632b7785262d09bbc9c55ec5ecfae7992d38b44d92b3b7b9dffc979be8','95ad7e7fdbba30428fafdf81469a915d0d367670c0e432a6b23c947631af62cf',NULL,NULL,0); +INSERT INTO blocks VALUES(310643,'b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b',310643000,'f33f3b1e121dcf510c45a6ae1ebd73cc2225507147578afccb57b510e55dcf3e','2d428ebef22ccd8e01c73c47d63ecc37614f5bd34907d6b5e821aa4b3d7a0b07','4d68715ad53669493c453de539eacecf0cf9b8d9556782a4e7c3e1721f535f89',NULL,NULL,0); +INSERT INTO blocks VALUES(310644,'f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672',310644000,'1fe7deadadb5e69094696d93e4a633a0994819983ad920aff9392ac6738f9fba','848e6511e3651c225508e11808f494e5730bff9072e37c5961b209f6ca5eedb1','2e5d121afe71f37fc429baf759fa485ab7a47ff490ebcd55fc79105f43c256cc',NULL,NULL,0); +INSERT INTO blocks VALUES(310645,'f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3',310645000,'e02701b1bf4f3d2b2d9fff9867ae0a7447c730827397c2f1e78a2d522139fbfb','1e1feae6d6050b88b16c5df26ce029eda5fd272e96bec74d7a6139fd4c38343a','0d006ea790bba01627155684e74c6a03420c3d299571727e9eea79b57a4f8d2d',NULL,NULL,0); +INSERT INTO blocks VALUES(310646,'839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494',310646000,'1c921997d09586776036aea36d92e3e57c3e7e148c1f6565c4dcc8b8e72406ee','d3f50fda8401e46bd75e7d4abe1296363de460d45141da3075342c8bc017f8d1','bb7b88a53b02a3e1a16860634ff3d02b27096acd8a894fef2ea5319c958803aa',NULL,NULL,0); +INSERT INTO blocks VALUES(310647,'8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d',310647000,'5799deb2c7b95959d2237ddd4566fab7ead35943382921bf738ee3c140e368df','4fb604a40972ea2e2fe9dc8ffe24f8bfb8d77900c80ff8f33bb7a34b2a0be681','cfa7db02be77590395c7e288b577f92a38239716d708c6a5d7c088ae8b532b65',NULL,NULL,0); +INSERT INTO blocks VALUES(310648,'8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f',310648000,'9b0c8c0e31e70e67ee396e16ed85766f17552293d2ebbe5566896eccc65688e8','c9ba3aeda8abee31772f8a0f7cb5643a12eeb8c9fe59045bb0c9d49d5c69c3f7','c615e72bdd350f38281ed3560ec07979e3587cc0a4f5cd8053d4a118a4de6d8f',NULL,NULL,0); +INSERT INTO blocks VALUES(310649,'6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb',310649000,'606c6a44f3fe7dcd230a4fcb137a010b1ba7ce11be94efee7dab2649618fb725','1654a3cbc3954d23e0ca92af18141e3384277e78e664ad40f2867fcbc60a2d70','cd81bd5131e8b4749fc0c0da0102895980e957d7e3bf3bb103b16e0b7a93625a',NULL,NULL,0); +INSERT INTO blocks VALUES(310650,'630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0',310650000,'e374080b3f666ea38dd6fae338339e01e5b9a35d7605d0eba6760b17caeac4bd','d10f8ee8b2a804d4610ea132e890fa11bbfcd9582d059a77ad3b59c9ac93669a','065c75442500de5e41928418daba7f3b7952a5709349f6bc547cf324089e20f2',NULL,NULL,0); +INSERT INTO blocks VALUES(310651,'abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22',310651000,'ab3aa2e64ad8e96d4f10c7c72566e65cf8b6df1d9c59acc9f36ff367276348c5','d4ca114a2c4e1e43d82c0502548e9f9168e55553df009f846c652477104b3fc8','ffffce0d2503ba52ef8381e0eb4806d34eb3f2c8c6f829d6cafdbab2b3f49f58',NULL,NULL,0); +INSERT INTO blocks VALUES(310652,'5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6',310652000,'0041d6f69a3abdcfcd6b79d991f2815f97bd31de1253bd4f4e67f9971e1b38cb','6491a9bdd162cac7cfadb1930138e1714fef048d0b2b001fcbdcf24413110d42','22f6a085a3c07eedc18222ecb2352f50d6c268b15a137ed318becfd6e02d026e',NULL,NULL,0); +INSERT INTO blocks VALUES(310653,'149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0',310653000,'782004b38c6737fcc6c2575d7eb00f2e364440cb69a4141080ee1960828fd2ac','fc791bbbf8c78847cb342bdb1273cb697c513c68ee6d280941031cc38d4d6354','8c8a569ce9361127fe0154f7df0828b19adb0eae1afa096bcd0ea46996e945d5',NULL,NULL,0); +INSERT INTO blocks VALUES(310654,'829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569',310654000,'77145b6ff93a432aa76c3aa6491ed92b6596da48dd5cd007ec38abdf92a111f6','dfaac3f5a38a1b4586cfe3ea5959b3d879d50a231191fcf46f75fec0b8a3329a','8ae82fa7c35e107fbd3ed2f604b09f39ff1a0adfb1ccb9ddcba5d012f511bf60',NULL,NULL,0); +INSERT INTO blocks VALUES(310655,'c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55',310655000,'c01c53df2b345e24e6dfa455d588ff353b9245ce6fda1f41972955162b717723','5a9a17b6be46a48a00b986503cc922e945ed3e59a0fffeff477e6953e776ed2a','832d294f7c6bd1c597cf9acf253dc505e4064e881a2f15b049566f105dcefe33',NULL,NULL,0); +INSERT INTO blocks VALUES(310656,'5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b',310656000,'b19e67439b541ffcc7855c5c655e738de7ee0c0429dd9542fd0f871b180f46c0','73e8b5247b6daa8b931b1b28610b6fee7e10949a1aa6a62d71e276929fc5ed11','9042b44a4a43ad0bce6307ce80238332787e9366001de1661d09a0ee593505cd',NULL,NULL,0); +INSERT INTO blocks VALUES(310657,'e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26',310657000,'ba2ab5b79057b6507739a23131ee728dabb73a90041f116903f4a88e7a1566ef','c426afc816a4d8536d96d8ed39c75dd8145e6d93864259b017c1932bd3bf0687','27c7e86e5c33d10208aab90ba0f7cd808e42c55a1672020332289f97127be6f7',NULL,NULL,0); +INSERT INTO blocks VALUES(310658,'579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501',310658000,'55bdf86bedc7787e874b37ff4dfbc3c753873577059b81d91c1d98fb61ab889b','a0a1dbdc2cb08b59bbc105c44ebae0f8776483f2c1dba13a519984ca70a839db','9fba4351dac2413aa3f32e051cbcde31978eed04aef5eafd8decdeb91cdfee33',NULL,NULL,0); +INSERT INTO blocks VALUES(310659,'e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f',310659000,'075b47b96483cb17c8d208e40808aa6b2c6273cb2cac1f954c40323118d319e3','8820d989cad56e3ec4c084d37c7d586355019ea8e5cee7371ff05f4e19972528','efe3f9ab71802b576b8327d40e26a1aa23fe6d6d560fe9afa92cb91156cc38c1',NULL,NULL,0); +INSERT INTO blocks VALUES(310660,'d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d',310660000,'9b5229606ef138005d260efd23e1dea5787e54a060eb1e06a3b3f20ceb8aa1b2','f606b03288e72a208f5d44ef49343632cded5a190acc9784e7d44c3ce89e3d6b','ac5d922cc74d59ce471070115b26c90380435bef933a790af23fcfefd7548789',NULL,NULL,0); +INSERT INTO blocks VALUES(310661,'badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89',310661000,'fcf6e1cec9e929e90e87aab898f1c6b5f4cae33272a01f8dc4c877a78897ded6','121ea9d910cd7cd9522a4c21056464d4b5831269d55d3ee93613f9edb80abce8','64b227d576c1f2ab6871d97064988ea02f84d58544e65198e2a45ceb9a782be4',NULL,NULL,0); +INSERT INTO blocks VALUES(310662,'952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb',310662000,'09d5b89e5eb641c4e6474a2848510151fa3e2d4ea21a227b67739aeb349390f9','f2793e5e7ce5de99061d249b7eacd8c31a0b59c839a6f32905aa4fe955458137','09c3fe8eb995c190aa10ff3a1fb63ecca44e5d3af00e6ddcd2ed9b2f316cd91d',NULL,NULL,0); +INSERT INTO blocks VALUES(310663,'7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028',310663000,'7fba57a8ce4fe3e9ab99dae9196c9676179509a970b7441b506ea23b572b7451','f2f60e0e823edb418f01614f56dc15887f96fec107ed52406627f035c7efdd21','8c7a7287d00026bb5c9e088d7663ecde79aeb0d17da15745c1575ef825828669',NULL,NULL,0); +INSERT INTO blocks VALUES(310664,'ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247',310664000,'79b688b3fa5dd80ff80ff7ae86ae0a2113a95de65e0abfe8277557335a64f8f9','229a5edda5a8c504658c57bd7e776fb286c26031658efcc68c0e0bd80566e20a','57865d5417b51fccb6ac6cc387727060461274be20ab84ead3321f54a0b1923f',NULL,NULL,0); +INSERT INTO blocks VALUES(310665,'8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8',310665000,'c921ed3cbbfbd30927a531f9ed42e6b3f2982851ccafee096a9d1fbcf74fdcb1','b3e7615a7e9b22882a5d63ec2c1e4944ffa550aafb856db4dcd03f659eb73d8f','fe8751576843309c746e5728d805453da4ec617c15f9459bb3cc88f64d1b5442',NULL,NULL,0); +INSERT INTO blocks VALUES(310666,'de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52',310666000,'8812fdd368acd947add7a0eca401d0e55f9a5d1d312fd1bc21337f99344c38ec','9f5771d6fb484760ae44a0b7141c89e288c483d5408e26e811fa4612ca68a3ad','4199ce88036411d4f1382993cae587f40a12719031957286cbaaa003352de716',NULL,NULL,0); +INSERT INTO blocks VALUES(310667,'c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83',310667000,'f447fdf0d4c878d528ec468aceb8c2ff833ddd656933e2ccde2dbb3b0f591756','67d4cee1acc31181740c2f05b12144c7184111c5c12b4c0fcd43455e5b1d1e00','17cc943432dfa9ff0b5c8065d76f0a6a504328b34fd7661e9ba8aee853e736ca',NULL,NULL,0); +INSERT INTO blocks VALUES(310668,'699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27',310668000,'a5c44b4e330b04bfb41210684e1c10d6c5b37fdfc60c7693d29e497604efc40d','d352c080a6cd8f5ad10a897a2300f6aa87bee31d8f47ab9477a96b96935c5ef8','d128c60f42a5c5091c0a4983086e97d7a713ba45e77fdab3adf19937f8e3498f',NULL,NULL,0); +INSERT INTO blocks VALUES(310669,'c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f',310669000,'487adf783efd74528548f13f83f6bc7dcee66428a47bc9307bfb4da2574b0455','780251573f61009e4ac61ee4879e60ef6cc072785e6c57c2dacdd57fb03520c5','23c3dedf4c2c995507fa4aee2f67a22dbb1d3bac74ae97135d9bde57db53ae6b',NULL,NULL,0); +INSERT INTO blocks VALUES(310670,'9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944',310670000,'99c788d6b71852b0c120368969b650b105fb1d26b40cdcfa0456f22645d191bb','b6a1180e0a158145ea9cad059da2c082e2ae84941d0f90fb11addae85d081964','cd72d8b6123766cba5fbe61bf283005394bb86119d48a587098ebef16565b3b3',NULL,NULL,0); +INSERT INTO blocks VALUES(310671,'4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522',310671000,'dcfd2a27a1aa5c70719cd98c19e05722adfbf433f7cc65f61fe7ad616772107f','bf87e973ededd051c8bd23ccefb1de6528a82b1071aa3b791eb7c9263e2d8ff7','4d25a61a62dfaa35c46d23442c8061082118697ff1f6a2f83a7e93a4c3bef17b',NULL,NULL,0); +INSERT INTO blocks VALUES(310672,'491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa',310672000,'ffb2a57e077c5bd7203dcd2983d53090c0d274550510108f21731cc5496f9596','faae8112e80bc60f69dbae4257809ba549b0fc2b4927357945392e3843d34192','e8f714708ed313b54843d86bce11e14197008782970bda8fd32acfcf992ada3b',NULL,NULL,0); +INSERT INTO blocks VALUES(310673,'03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5',310673000,'6afe8838d8bda0874b9bc0f7d569e8571bf4c429933b7291bc0e8d911632870d','1614c8d076a5878f09a0755de3d774e2c3334884876b3b6d730ce1dbb910b2f0','c9b97bf0b419128433c5dc9ab3601a8f2f7548093657fe0139d8a4f7129ba4f1',NULL,NULL,0); +INSERT INTO blocks VALUES(310674,'9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c',310674000,'8494a7f9f04fa6e7ca8d3ddc17df63f418a2ec5489e8a1aaa4be40b7961b0636','2d25ca16358d0209557c678cd2f9826d9e15f45ee9bb1211adea973da62d0116','020ae0e030f024772bf84bd68ea2fd6b2ddad3d99d41538b934e311bff0db058',NULL,NULL,0); +INSERT INTO blocks VALUES(310675,'e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21',310675000,'5081aed7765bad7d97520bb933cc3578604a0b3c64bc51b6e3853d2fafaa153a','bc62362dfb5ae26d529f4c5ed88f8096de03718447326cfbad2a807144c1889a','966422cf3481876c2a8de3c6774043660567acd7616ed0b41a5bac2ef829eb22',NULL,NULL,0); +INSERT INTO blocks VALUES(310676,'312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1',310676000,'d7907d60b2afd888983618f5b04fd05c23675d76d7b1aa8f0187733e94d86043','d8bbf9bb6af7bf95569dcf56fb8fdefca64695b5c021bb698a0c6edee9e447c2','21535ccf00468ff69ea89d28679b6d2f9fe04539eb3fe7ef1bc5b74a56c8e1f9',NULL,NULL,0); +INSERT INTO blocks VALUES(310677,'4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a',310677000,'a8a6093432008f24226584a1491f49355b4be310bece623e5a6f4191790e38b8','7c5bc34c11f251b3748c337391be8e8f74a0399b3923627ebf9117e9276af31c','743de8d2c0c43daa862f26d9afcaec030e617679b18d599f21aa07a51f3779f5',NULL,NULL,0); +INSERT INTO blocks VALUES(310678,'d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c',310678000,'793feeaffddf01e00020ad32155d6ab5cb9a4fdc4d49f3ab677169d3615b04ed','41eb202a56ae084f3cc1457d3c17cb7eb2214a8cc385574f97a5d0913086f931','3ec1efc8ab70c4a92468aeccc8122a5b35ffcde62e76e2116f0d556dfa86f9e4',NULL,NULL,0); +INSERT INTO blocks VALUES(310679,'be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b',310679000,'3e07a5e2d4f38398b1d5f218cb8ba6393336e1e3fef63684c4076d5b856d4135','a27ecd72192938a3eda2a91456903b4bd0a1b277166e38937262a7c1a5fab580','bb5490deba2ed5b0284ca703457ecfe496e5e8415661f71efd376839460a6da2',NULL,NULL,0); +INSERT INTO blocks VALUES(310680,'239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8',310680000,'fdfab5abd301a27e1e91310ea0abde8697cecfed231ce524a5607e8acc6c02d3','19abea6cb809e0ae492acf291a5dba572a871622f4c5e675557e8d2f37102e09','480df2e104312f96e95ff4e4c4cbdff46e60e82c4a9957aff6f9745c3a55faf7',NULL,NULL,0); +INSERT INTO blocks VALUES(310681,'0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41',310681000,'662517b0bb85a3742a0d81d1b4aaac6f2a8a4dbe7e8a6a20776c5514d9e14a48','7f0276b2f2d61b95e407e95777aa4895e887111b0281099b9c5a44dbcd31f22e','4c75399acf36a3d44bcff773c9697a10def80dedf2743e7e11bf43ef2a7e7b28',NULL,NULL,0); +INSERT INTO blocks VALUES(310682,'9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55',310682000,'f7a309b6131c802520e6577c3ed7ee05e99f0e231441801a9b1bf2a430950a4c','e9cd2133c276de01869a39f4c703d2f8236b0b1b79bcfc53a4e3d8967785be9b','d10d85d191a82d37b9a8d350f06a6a67b750d54856174caee570023070f39b9f',NULL,NULL,0); +INSERT INTO blocks VALUES(310683,'ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511',310683000,'2cdd3fd5a05e6fff02a5e0747dc3b28e68c13c0ffc521c85e7de6dfdc22220f0','267450473f906200e5c2c6912b2ad40150573506e7344e632d338485e3f78192','49402605fec7d667e6283a02b9fb7f7f614efd582f0253ce1598d65096d22de5',NULL,NULL,0); +INSERT INTO blocks VALUES(310684,'d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9',310684000,'4b034b1352ed16420f29905e00a54a82d238d2c4bd4d1fbb17a3b09ea9886391','80f0ef1728184f040fa9d640aed74db77ff126c31413c88816fc0a3b01c47eb9','2efac46039dd7f35bf90c8456118a18c1daf3099a5f2586d20d0f5d14438654f',NULL,NULL,0); +INSERT INTO blocks VALUES(310685,'f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8',310685000,'af82d0fdff4a89d3b0944673aad1328ba0827ee606d79dd7706e297fc4fc2204','b8b940808bcd9e0a6d5d3b0dc001b185c7be5bd862d8ccd5c1860916b7d666d3','4a9bdc220cf3a3ccc62d0124a156c6d64be0f26e02e8fcd5ef0cf0baa95bc839',NULL,NULL,0); +INSERT INTO blocks VALUES(310686,'a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca',310686000,'c037ade6c0c1ab3458c4d3bba7d91e0cbed94027e3728e84d9facfe5763ef6a5','8fd8812c2f3696baa9f0f5714aaeba990fb7a1711c583937002babe776964c05','658a28fb1894e654ec06f9eb52f741d780b93fb31f2deea39cf06ac25c3840ee',NULL,NULL,0); +INSERT INTO blocks VALUES(310687,'c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8',310687000,'630096dcc99d532acf6415bf4504525aa85f460fd177c4bc82fd408efe59415e','2215a8448764b62467df6b53cd807cc9410850d73d728a81c753eb70de99e486','019870609adba0019c90f7dd9f8b17614d261c3cf7a61ae160b86bfa1b25fb37',NULL,NULL,0); +INSERT INTO blocks VALUES(310688,'3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822',310688000,'315c5a67d6b9b410a0aa70e0bd8efebe6f78757a09f91863c7f5e1efe47e9a9b','9312287eb460a866f6c18b0b28dd23fff23d408a84422a87d69a561447c9ffaf','7396798913c2aa1b4bcd2bbbfe65cdd71e7696a73381ffda432cc15edb0d3dff',NULL,NULL,0); +INSERT INTO blocks VALUES(310689,'d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df',310689000,'5c6ee4e9df30959f31d2232cdae7b13557e373982a03556ed1fb65aa5e3895c7','a7c5b3bc4269d9a63804bdc4e2693fd03e4e529b183510685df746092e94aa5d','5df7700c6470a74217bd1149ab2f74d95c72a2199afa414e0004ed291a05d26b',NULL,NULL,0); +INSERT INTO blocks VALUES(310690,'0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462',310690000,'1295c134cbb5678c7a4f70013dfe3eb624bb814ec039303fc10f2c7789e41a03','6310ce87234c11efea223c58d571cdbb3f04b51a3056236cd0f22cec7bf1e5c1','4ea45cd902e2b0822366150c090fe0fe6318c45be9863619512eb5931499bf9e',NULL,NULL,0); +INSERT INTO blocks VALUES(310691,'07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e',310691000,'76f74700787e68ae14b3812f53c32417f57de06ed6188b1992ca412570bc1ffb','774242c764edd3560409137905de9c9d818364aa94f62c47a621afe1087136ac','f4de1c5339512dcf2b1287e09d8877be2d2ef017f10fade68472c7371cfbf790',NULL,NULL,0); +INSERT INTO blocks VALUES(310692,'29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932',310692000,'7c0891d494e5abd9a44a4f7c70e67a547160856119c3ef06113f517e1ab9d390','df166db54b869212308c6a48d3ddb80bc0a84be52434c46d5e6e2d6499167bb0','508125f63c3de10d645e22ee4cc4f61950c86ad23474ccf5ac2b5e8910df7572',NULL,NULL,0); +INSERT INTO blocks VALUES(310693,'c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1',310693000,'0d30c6bb764b32d0ec856145453de6d0e15ec0b8a94f978f2d96c3c5d134912f','992af64c887f105b985137b441ef4a3af3ff902f5dbac355b91bf0ebaa234063','cac03fdc5399fe770bc905b3ec76aa9a46a8808b520426f319aa7faf455146c1',NULL,NULL,0); +INSERT INTO blocks VALUES(310694,'586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0',310694000,'582bf82bf4bf07a0d20259ae9026e726afcfff035ce715d13a473313dacaa5f1','52939845593123714b4bd665600642d14b61a384befa3498c7582806448150a1','44f8b452d9ac57fee090eb5d5626b32a388955bb30c5bca995ec3175e87bb4d0',NULL,NULL,0); +INSERT INTO blocks VALUES(310695,'a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538',310695000,'d5ca4a21b2fbe8121c241c097d9f76156106b345296426b5b55bc4885fba4b80','9b08253a46b87ab3df60af60b519dd0c689c0acaca38bcc33f01000bf6b871d3','cdb61ca3479bf5ad207d85590e721983539e58188ddf7f8b539e0e7a02b6463d',NULL,NULL,0); +INSERT INTO blocks VALUES(310696,'7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7',310696000,'75b37c234c5951fb06761175db6d2a9584aa779f35f2f1516ec828230b6b1383','deb12f7c45ab5944a6e08fb2933d3a435860f9e1d8a758486b5e5995258ca973','ffd24c9a2503318daab14dd046c526ed11ed3bfd5bb8207cf0048bc689ed4366',NULL,NULL,0); +INSERT INTO blocks VALUES(310697,'4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304',310697000,'ae9aa7c4e06059f148a8ed8bf2a4f69c492fac7109a778afbf6cc4d96d36dc55','663e67da5996a4c9877a6c6cb61730798695aee9d89674823917dee2d1ab9708','b6a66a5e44254ed9459a2fa8a198d060e218db5dce05a6e3904336be3ec5d0f3',NULL,NULL,0); +INSERT INTO blocks VALUES(310698,'ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53',310698000,'aa8b6ca04c8551bacd6f964f2521c07b30d3c07978c992dc59633894ad1baedc','9b6c282c7fb96cbca27fe6b73253cfc31b93ff71dc0d116ebd0d661c33adde58','6b61c09bd220de51ea7ce3730d0fb6562e321e30c180ed71088da4b2cc1bd71f',NULL,NULL,0); +INSERT INTO blocks VALUES(310699,'3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d',310699000,'66cf0537b2abf572ae579fdb3512d125c181e2a1835b38f89cfee64113922cd7','d91fc03fd15e2ca4fc59b7be29586b0c8f2942abca45ccb49f2fc84e3eff8f94','f9a65859e75811f5fff2ece7af021acfbe3f359717c438b682fbfee5c178a0ea',NULL,NULL,0); +INSERT INTO blocks VALUES(310700,'4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5',310700000,'43196ba8bf43fd138dd117cb0a9c1738d3a2c8917c2ea73893647a2ac0fbe0b8','1977d48057c66abe87f0bdffbcf4d501bd4b9fe138c0bc381409bc44bd503084','a6aed16c4649d912789340a2a6a297058790efbf230facad044428560dc5836f',NULL,NULL,0); +INSERT INTO blocks VALUES(310701,'9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1',310701000,'f235ba99322c9bf8dc115d7fe2b5e51db41b06026ac193718e47e89398c621f5','6b6c62d0facf03efea19bf2e8fa69ecd3c433d45a0ca6b3ed57ed0e5d69b1e2f','b7a4328312125afc3fb1ea33e0d2bb7b8fae879670b170208355a4a27dc48150',NULL,NULL,0); +INSERT INTO blocks VALUES(310702,'69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8',310702000,'059893c8ed0250380ad8102a8a17d60a92f1abf09000ff41766cbd846aa1efa2','0b912b59131e6aef7fb3313ef75bc138dc1f612d76e77cf583074564ddb6d35c','5a3dfae16547617feeeaed1657c4375f36a5cd2dbbbd2fa22e4faf759f3c15b4',NULL,NULL,0); +INSERT INTO blocks VALUES(310703,'b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218',310703000,'1734f9eb30868d2383fdb38bbda66b1b937209c143632aabc05bf1de167eda66','b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786','afb721e64a36bca838751fa2eca929a4fe485fbe69f8fc944e90de74019fd629',NULL,NULL,0); INSERT INTO blocks VALUES(310704,'53f0dd2f7343658f75508323a5b1761b7e5bc6743c04fc9ee9898ec0fbafd827',310704000,NULL,NULL,NULL,NULL,NULL,NULL); -- Triggers and indices on blocks CREATE INDEX blocks_block_index_block_hash_idx ON blocks (block_index, block_hash) @@ -949,15 +949,6 @@ INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A1603612857927 INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999690,310506,507,NULL,NULL); INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',300,310506,507,NULL,NULL); INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',50,310506,507,NULL,NULL); -INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',0,310506,0,NULL,NULL); -INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',0,310506,0,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999790,310506,506,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',7,310506,506,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',10,310506,506,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999990,310506,507,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',24,310506,507,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',30,310506,507,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',50,310506,0,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999990,310507,508,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999890,310507,508,NULL,NULL); INSERT INTO balances VALUES(NULL,'XCP',100,310507,508,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); @@ -967,6 +958,15 @@ INSERT INTO balances VALUES(NULL,'DIVISIBLE',1,310508,509,'4f0433ba841038e2e1632 INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92949130360,310509,510,NULL,NULL); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',1000,310509,510,NULL,NULL); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',900,310510,511,NULL,NULL); +INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',0,310520,0,NULL,NULL); +INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',0,310520,0,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999790,310520,506,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',7,310520,506,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',10,310520,506,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999990,310520,507,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',24,310520,507,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',30,310520,507,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',50,310520,0,NULL,NULL); INSERT INTO balances VALUES('myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',92999138821,310588,0,NULL,NULL); -- Triggers and indices on balances CREATE INDEX balances_address_asset_idx ON balances (address, asset) @@ -1084,15 +1084,6 @@ INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A1603612857927 INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999690,310506,507,NULL,NULL); INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',300,310506,507,NULL,NULL); INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',50,310506,507,NULL,NULL); -INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',0,310506,0,NULL,NULL); -INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',0,310506,0,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999790,310506,506,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',7,310506,506,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',10,310506,506,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999990,310506,507,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',24,310506,507,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',30,310506,507,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',50,310506,0,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999990,310507,508,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999890,310507,508,NULL,NULL); INSERT INTO balances VALUES(NULL,'XCP',100,310507,508,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); @@ -1102,6 +1093,15 @@ INSERT INTO balances VALUES(NULL,'DIVISIBLE',1,310508,509,'4f0433ba841038e2e1632 INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92949130360,310509,510,NULL,NULL); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',1000,310509,510,NULL,NULL); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',900,310510,511,NULL,NULL); +INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',0,310520,0,NULL,NULL); +INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',0,310520,0,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999790,310520,506,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',7,310520,506,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',10,310520,506,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999990,310520,507,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',24,310520,507,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',30,310520,507,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',50,310520,0,NULL,NULL); INSERT INTO balances VALUES('myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',92999138821,310588,0,NULL,NULL); -- Triggers and indices on balances CREATE INDEX balances_address_asset_idx ON balances (address, asset) @@ -1183,16 +1183,16 @@ INSERT INTO credits VALUES(310505,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',100 INSERT INTO credits VALUES(310505,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',10,'escrowed fairmint','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); INSERT INTO credits VALUES(310506,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',200,'escrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); INSERT INTO credits VALUES(310506,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',20,'escrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); -INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100,'fairmint payment','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); -INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',7,'unescrowed fairmint','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); -INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',3,'fairmint commission','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); -INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',200,'fairmint payment','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); -INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',14,'unescrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); -INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',6,'fairmint commission','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); -INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',20,'premint','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,NULL,NULL); INSERT INTO credits VALUES(310507,NULL,'XCP',100,'attach to utxo','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883',508,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); INSERT INTO credits VALUES(310508,NULL,'DIVISIBLE',1,'attach to utxo','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e',509,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); INSERT INTO credits VALUES(310509,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',1000,'issuance','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',510,NULL,NULL); +INSERT INTO credits VALUES(310520,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100,'fairmint payment','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); +INSERT INTO credits VALUES(310520,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',7,'unescrowed fairmint','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); +INSERT INTO credits VALUES(310520,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',3,'fairmint commission','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); +INSERT INTO credits VALUES(310520,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',200,'fairmint payment','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); +INSERT INTO credits VALUES(310520,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',14,'unescrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); +INSERT INTO credits VALUES(310520,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',6,'fairmint commission','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); +INSERT INTO credits VALUES(310520,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',20,'premint','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,NULL,NULL); INSERT INTO credits VALUES(310588,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',9,'recredit wager remaining','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef',0,NULL,NULL); -- Triggers and indices on credits CREATE TRIGGER block_update_credits @@ -1274,14 +1274,14 @@ INSERT INTO debits VALUES(310502,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',5000 INSERT INTO debits VALUES(310503,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'fairminter fee','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7',504,NULL,NULL); INSERT INTO debits VALUES(310505,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100,'escrowed fairmint','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); INSERT INTO debits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',200,'escrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); -INSERT INTO debits VALUES(310506,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',50,'unescrowed fairmint','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,NULL,NULL); -INSERT INTO debits VALUES(310506,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',300,'unescrowed fairmint payment','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,NULL,NULL); INSERT INTO debits VALUES(310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883',508,NULL,NULL); INSERT INTO debits VALUES(310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100,'attach to utxo','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883',508,NULL,NULL); INSERT INTO debits VALUES(310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e',509,NULL,NULL); INSERT INTO debits VALUES(310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',1,'attach to utxo','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e',509,NULL,NULL); INSERT INTO debits VALUES(310509,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',50000000,'issuance fee','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',510,NULL,NULL); INSERT INTO debits VALUES(310510,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',100,'open dispenser','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e',511,NULL,NULL); +INSERT INTO debits VALUES(310520,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',50,'unescrowed fairmint','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,NULL,NULL); +INSERT INTO debits VALUES(310520,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',300,'unescrowed fairmint payment','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,NULL,NULL); -- Triggers and indices on debits CREATE TRIGGER block_update_debits BEFORE UPDATE ON debits BEGIN @@ -2624,447 +2624,446 @@ INSERT INTO messages VALUES(1296,310506,'insert','debits','{"action":"escrowed f INSERT INTO messages VALUES(1297,310506,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310506,"calling_function":"escrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','8cbff1793d3789466015880bc6f741a4dada23b4bedb18537e3d9081c3437e3b'); INSERT INTO messages VALUES(1298,310506,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310506,"calling_function":"escrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":20,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','a1277ca87b06a3639c77666d385c703ca7de3757144c78d213cf0809451751f7'); INSERT INTO messages VALUES(1299,310506,'insert','fairmints','{"asset":"A160361285792733729","block_index":310506,"commission":6,"earn_quantity":14,"fairminter_tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","paid_quantity":200,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'NEW_FAIRMINT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','2783aaa8e61e6615caacf8829212a86cdb5a5c3e151ee3a5b7a293ee3e7c93f0'); -INSERT INTO messages VALUES(1300,310506,'insert','debits','{"action":"unescrowed fairmint","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310506,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":50,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','3ce9b00188dcbc343af3408c5bc031d24e51139525a20cc8af4f567c581e109c'); -INSERT INTO messages VALUES(1301,310506,'insert','debits','{"action":"unescrowed fairmint payment","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310506,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":300,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','bbbbb330b3b6be30a68ac2bda0fce8771a5a726ede34fd108eaaebdc6c81f5eb'); -INSERT INTO messages VALUES(1302,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310506,"calling_function":"fairmint payment","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','819162f24a93806fdc85cf6165f7cfe3fdd5d1056e88065cf2bb85969971dc96'); -INSERT INTO messages VALUES(1303,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310506,"calling_function":"unescrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":7,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','e058035969e53553b0528464978649991dfc6077951f67a5ff2878fef94f7d1b'); -INSERT INTO messages VALUES(1304,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310506,"calling_function":"fairmint commission","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":3,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','305cf0f43230a2d6622bd51227a249298fc3fd7ccde47d59cf07d9eaa087e22a'); -INSERT INTO messages VALUES(1305,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310506,"calling_function":"fairmint payment","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','3241f831b56ec4cd9eda5585ce3e83cb675b95675c689ea22ed2a0134220eea2'); -INSERT INTO messages VALUES(1306,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310506,"calling_function":"unescrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":14,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','22729f34d6c88e88dd2b2b46f53604ef21a2b0bcd9c5ea56d5bccad92d9a94cd'); -INSERT INTO messages VALUES(1307,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310506,"calling_function":"fairmint commission","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":6,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','7fa7986a57b40c54ebda30259194b392ce206eba426c2bb99272f536debd3323'); -INSERT INTO messages VALUES(1308,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310506,"calling_function":"premint","event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":20,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','92051b71287e2802bd5c007a5d3be1b81a9bd091f152418dae9b5b9c06561e01'); -INSERT INTO messages VALUES(1309,310506,'update','fairminters','{"status":"closed","tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9"}',0,'FAIRMINTER_UPDATE','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','e6924aace8e8e084047b1ab190b5518280f1cebc89b7c4c3c03b1f69fc3a8ba6'); -INSERT INTO messages VALUES(1310,310506,'insert','issuances','{"asset":"A160361285792733729","asset_events":"fairmint","asset_longname":"","block_index":310506,"call_date":0,"call_price":0.0,"callable":false,"description":"softcap description","description_locked":true,"divisible":true,"fair_minting":false,"fee_paid":0,"issuer":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","locked":true,"msg_index":0,"quantity":20,"reset":false,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","transfer":false,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'ASSET_ISSUANCE','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','86dc44ea49af38f97976e85093951bfd4bd53eb84284b9f62722aba64c386a73'); -INSERT INTO messages VALUES(1311,310506,'parse','transactions','{"supported":true,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'TRANSACTION_PARSED','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','fc13c2fbe77b268d657d0b4d18224701f784ab17f021117c2a0016263b052bdf'); -INSERT INTO messages VALUES(1312,310506,'parse','blocks','{"block_index":310506,"ledger_hash":"d2e34b3aa45be0dd5a211b9748bc71049f42e08be27ed9e08ac65e1f1b5db6b1","messages_hash":"f19edd9de332ac85a37d441a7561c48f3d0ca8118c656a300733fbe36853a53b","transaction_count":1,"txlist_hash":"a6cab6e8bebae804eb791b48d0a484f6526553e3cce266b54b40afb32a02c68e"}',0,'BLOCK_PARSED',NULL,'5044c15c6601f4f7f9c9266a8f3dc9aa384ce5d8c4b91a513324052f9d0e6684'); -INSERT INTO messages VALUES(1313,310507,'insert','blocks','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0275a97f06c7b5da1013a5d6bf51551c87681eeda0cf6b9192f27fd299c2f36a'); -INSERT INTO messages VALUES(1314,310507,'insert','transactions','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"btc_amount":0,"data":"646d6e367133645332456e44557833626d795763364434737a4a4e5647746152377a637c346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383a317c5843507c313030","destination":"","fee":10850,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508,"utxos_info":"c7f048b97f07912138691b7d133baafe98a6a10ffb089e0b773f06ef945d5c36:0"}',0,'NEW_TRANSACTION',NULL,'31720e424176cddb0c97f3370e839e5932080a8c11a421d9473476140ff24557'); -INSERT INTO messages VALUES(1315,310507,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","quantity":10,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','58fa5b62dd860af1d2b707b7a0801b51097c205f743b50eaeaa4edd2021ea030'); -INSERT INTO messages VALUES(1316,310507,'insert','destructions','{"asset":"XCP","block_index":310507,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508}',0,'ASSET_DESTRUCTION','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','df338d100b4d07a3e1a38a6f8ab0a44d02ba74195d5950c209e7f95c2bb3ea5d'); -INSERT INTO messages VALUES(1317,310507,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","quantity":100,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','5192541211ccd2f8951f616a08b202464cabf21dfb58f83e230d27dd773dcbd2'); -INSERT INTO messages VALUES(1318,310507,'insert','credits','{"address":null,"asset":"XCP","block_index":310507,"calling_function":"attach to utxo","event":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","quantity":100,"tx_index":508,"utxo":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','19dc1f163fcfe04892baa7bccbb10cd2c01c353036b9cad5d94adeece39356ae'); -INSERT INTO messages VALUES(1319,310507,'insert','transaction_count','{"block_index":310507,"count":1,"transaction_id":100}',0,'INCREMENT_TRANSACTION_COUNT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','857b234950d998915b5ac60fdac26af3d47fc2ae29c3b0db1a373cc1f972722c'); -INSERT INTO messages VALUES(1320,310507,'insert','sends','{"asset":"XCP","block_index":310507,"destination":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","fee_paid":10,"msg_index":0,"quantity":100,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508}',0,'ATTACH_TO_UTXO','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','6ccade48078a857aafd507f396658b5504eec3a8958d4b95372a10c84966918e'); -INSERT INTO messages VALUES(1321,310507,'parse','transactions','{"supported":true,"tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508}',0,'TRANSACTION_PARSED','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','95d0a78deb7caad7e1d6266f4160944b9e1d29ea07ea9ed92c44c2b9a3ee8222'); -INSERT INTO messages VALUES(1322,310507,'parse','blocks','{"block_index":310507,"ledger_hash":"d494616b8ebe6083310da3b18bd59a01e03747e0290109b2985a0dacdf8d7e67","messages_hash":"a2d1455b2938eaa024da6bdbaf7a3a663391a983b6c02688e87156338cb1fb87","transaction_count":1,"txlist_hash":"6abb9b0caedb98bc7ad209096e5baba6418d80fb11ab51a8124d2e87e9a591e0"}',0,'BLOCK_PARSED',NULL,'b603a3aaf6a9e6360461cbb8746b18e744922883d1d43f6a13f59d60642fc824'); -INSERT INTO messages VALUES(1323,310508,'insert','blocks','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1222591e640d2cc69466b67a7681acb4e6ecaf1fc5175c6ada7009ecd1ba0f46'); -INSERT INTO messages VALUES(1324,310508,'insert','transactions','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"btc_amount":0,"data":"646d6e367133645332456e44557833626d795763364434737a4a4e5647746152377a637c346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383a317c444956495349424c457c31","destination":"","fee":10850,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509,"utxos_info":"1c6f52a3ca4d5f1698d2db3f107da787153bf686fc049f2792074916249fc27d:0"}',0,'NEW_TRANSACTION',NULL,'714796242ba666449a5dd5b367b48e9a5e1a1cd90e3032e754a3ec54eeac52cd'); -INSERT INTO messages VALUES(1325,310508,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310508,"event":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","quantity":10,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','ac2a796138242009af3e4e9039ab0d410e0402d314b4d66c4e3cc1d4503f5cb1'); -INSERT INTO messages VALUES(1326,310508,'insert','destructions','{"asset":"XCP","block_index":310508,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509}',0,'ASSET_DESTRUCTION','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','e307098da6153b20f20acbaab8842c4c217b626a86ab7c9d4c2b94ce4041d1ac'); -INSERT INTO messages VALUES(1327,310508,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310508,"event":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","quantity":1,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','cae527ef3af74a79e247d42e4f6e0693cd6dac91efac77adcdf7123b8ccd088a'); -INSERT INTO messages VALUES(1328,310508,'insert','credits','{"address":null,"asset":"DIVISIBLE","block_index":310508,"calling_function":"attach to utxo","event":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","quantity":1,"tx_index":509,"utxo":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','16b00786ae2a7aad59a673d5b001713790b652a75351e226ae6ed088dadc589d'); -INSERT INTO messages VALUES(1329,310508,'insert','transaction_count','{"block_index":310508,"count":2,"transaction_id":100}',0,'INCREMENT_TRANSACTION_COUNT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','8bf691e3e63c65556edaea5599837486a6f08b050186786cc0c31cb499f93b1f'); -INSERT INTO messages VALUES(1330,310508,'insert','sends','{"asset":"DIVISIBLE","block_index":310508,"destination":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","fee_paid":10,"msg_index":0,"quantity":1,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509}',0,'ATTACH_TO_UTXO','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','36838e0cf17d5e1187badce4465ccf4dec13ade5ba086ef7a910aa30600fe110'); -INSERT INTO messages VALUES(1331,310508,'parse','transactions','{"supported":true,"tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509}',0,'TRANSACTION_PARSED','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','74b97235bc54ea41d81852508584bd6169577162d3942db6886ff3c38778ed5a'); -INSERT INTO messages VALUES(1332,310508,'parse','blocks','{"block_index":310508,"ledger_hash":"1b96f53ad5dbac5355384c4d23cb9b3b3ebf0b66ea33cfb6d3064cb8f4ea3ec8","messages_hash":"34e947783dccbd14ae84a017a050b567ec11e8dc801e4dd3a990930a303892e5","transaction_count":1,"txlist_hash":"55c18d8da0b5d415d82b40229995123dcf2151b91a8cf6c4e29e8a03c32a847d"}',0,'BLOCK_PARSED',NULL,'9acdeaeceaca751faab94ffa63cd2c939a5290aaed956094f7e190a5e8ea1fb1'); -INSERT INTO messages VALUES(1333,310509,'insert','blocks','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'382648228615ec99d6f866b56cc98b983161c3e7251ad91ba9ecbf55b8cdef6c'); -INSERT INTO messages VALUES(1334,310509,'insert','transactions','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"btc_amount":0,"data":"0000001400000023ded9aaeb00000000000003e80000000000000000000015546573742064697370656e73657273206173736574","destination":"","fee":6800,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510,"utxos_info":"5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0"}',0,'NEW_TRANSACTION',NULL,'9123b31fd4f2115b30c61d467a781d3b89baafde916db79a9f7677a71ecef636'); -INSERT INTO messages VALUES(1335,310509,'insert','debits','{"action":"issuance fee","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310509,"event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":50000000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'DEBIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','b4a7592d7d5c2f9ea59456b9d0288efaf524d0728654f67ad7e092e1f8438dc4'); -INSERT INTO messages VALUES(1336,310509,'insert','assets','{"asset_id":"154062662379","asset_longname":null,"asset_name":"TESTDISP","block_index":310509}',0,'ASSET_CREATION','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','ce879f11ba8249831779994a034eb0d7bb0bf7107b7fde18cbd9f993c5afceef'); -INSERT INTO messages VALUES(1337,310509,'insert','issuances','{"asset":"TESTDISP","asset_events":"creation","asset_longname":null,"block_index":310509,"call_date":0,"call_price":0.0,"callable":false,"description":"Test dispensers asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","locked":false,"quantity":1000,"reset":false,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","transfer":false,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'ASSET_ISSUANCE','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','b9fdb0340c13da3f9cc9c8532b96ba7f20957ddfb90ee373b3905adcdd527121'); -INSERT INTO messages VALUES(1338,310509,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310509,"calling_function":"issuance","event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":1000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'CREDIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','f9a4d58fe455f3f308744ca86a685089525eb00489d18ba43f4b0e8cd1a0eade'); -INSERT INTO messages VALUES(1339,310509,'parse','transactions','{"supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'TRANSACTION_PARSED','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','b007f1001fa1da336444ba8a23dce80ab989f049fc70c3cdbbe664132098f3e6'); -INSERT INTO messages VALUES(1340,310509,'parse','blocks','{"block_index":310509,"ledger_hash":"8842d3d22bd2fa0d1e3ae5e34245085192c6c5b565e92a644058a31cc34f9a08","messages_hash":"f1bdbf8b2ab589653e9e24ed47fd277c9429bc6f770f0af980f2ab2a4a096104","transaction_count":1,"txlist_hash":"e8a5ca9c861bda1033047cfb0896cc92d694d0d32343e54b78d861ad5daada14"}',0,'BLOCK_PARSED',NULL,'c43c7a6e245c7cb6f146cc10d9e3f1f547a17311e635d631e5c75e8f35ada56a'); -INSERT INTO messages VALUES(1341,310510,'insert','blocks','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'18bf802e200d8cb8e6fe1177eec35c940605f9492361af70531c1a14ba2c720a'); -INSERT INTO messages VALUES(1342,310510,'insert','transactions','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"btc_amount":0,"data":"0000000c00000023ded9aaeb00000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511,"utxos_info":"b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1"}',0,'NEW_TRANSACTION',NULL,'bf7c82fa793cd64ce60efdcb2f8d8714b7636f4298cfd997e9f58b9853168161'); -INSERT INTO messages VALUES(1343,310510,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310510,"event":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","quantity":100,"tx_index":511,"utxo":null,"utxo_address":null}',0,'DEBIT','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','32329704b3770400bb3de4f4428e62ab2200dc106de730af9071b94ec73fa5d3'); -INSERT INTO messages VALUES(1344,310510,'insert','dispensers','{"asset":"TESTDISP","block_index":310510,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'OPEN_DISPENSER','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','6088672c8317db8b72126432bf03722842a5ac86c3bc633ef0d24fc0d8add959'); -INSERT INTO messages VALUES(1345,310510,'parse','transactions','{"supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'TRANSACTION_PARSED','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','f78ed0bad52f5a9ec38999f160b6fe98dec944705b854a8105fd830ffe6ddfc6'); -INSERT INTO messages VALUES(1346,310510,'parse','blocks','{"block_index":310510,"ledger_hash":"99da5c9487749dda0fc8b0557a982108b7abce0972a944ea0f08c15b0c2e1b4e","messages_hash":"1227c5ff4c580ae4ce01f8279216acb5628d6a156b7d34156117e2f050408b3c","transaction_count":1,"txlist_hash":"58e8efe3ac6c19011d997f77a3f38bfd99ccf17ff15615ceeaa8fd1d02f2b73b"}',0,'BLOCK_PARSED',NULL,'e559b7d441c11310382ecafa0686abff12dbfc986f20377a8d57cbdb782ad1de'); -INSERT INTO messages VALUES(1347,310511,'insert','blocks','{"block_hash":"e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c","block_index":310511,"block_time":310511000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c1686e5c6cd195b519b9ddf1c06c6da3eeebb74fb7d46dd7ed1f7f30d4e9b016'); -INSERT INTO messages VALUES(1348,310511,'parse','blocks','{"block_index":310511,"ledger_hash":"75e2822f39decd668b61334c4e6d6ba0cabee8ceae54a5dfa09212d9e6158334","messages_hash":"9d4bc725f81077e675ad2b559f4d5fc2c7e8147faf8d144d08c04876a432d44b","transaction_count":0,"txlist_hash":"cb29377641d10173aed43643d32f6935da6948a7fdc854f4c5f7f3bf8d6f9721"}',0,'BLOCK_PARSED',NULL,'5271f2ed720ae156a5acf9ed6f480a01c36e0f8f3ed476173baa7fa70fcb4d24'); -INSERT INTO messages VALUES(1349,310512,'insert','blocks','{"block_hash":"8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5","block_index":310512,"block_time":310512000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7a535c0423d74d885aa56b4dcb6fe5b771f638a42bcaa12c3271d183a2893908'); -INSERT INTO messages VALUES(1350,310512,'parse','blocks','{"block_index":310512,"ledger_hash":"3f94facdb277489e761513f5e36de38331888c7604e9de480423a219894c7103","messages_hash":"426031d0bd0a2691d43534a0c50d069919277679f9bcc3352e1a9139dc01dc0c","transaction_count":0,"txlist_hash":"4f745e593c05074836d20561b50b884ffd4e1c17eb9666ace1c2eea5f51e7d50"}',0,'BLOCK_PARSED',NULL,'a1aafd100e040072fb987e6c1091b7543d22b5bdc42af690b1d7a837a107f598'); -INSERT INTO messages VALUES(1351,310513,'insert','blocks','{"block_hash":"ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66","block_index":310513,"block_time":310513000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'991ceecc1d77b4861a4cbca06690131adcf699f078d20dbe793a46958e5e4cd3'); -INSERT INTO messages VALUES(1352,310513,'update','order_matches','{"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","status":"expired"}',0,'ORDER_MATCH_UPDATE',NULL,'4bcd20b98b00e7f0f996ffdcb8f5049eef279693bd3ff882cb207b1dff53d4ef'); -INSERT INTO messages VALUES(1353,310513,'update','orders','{"fee_required_remaining":900000,"get_remaining":800000,"give_remaining":100000000,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE',NULL,'fbe89490741658def4309da8759214631a45b059d2f81e5a7ff8aa39bcc41464'); -INSERT INTO messages VALUES(1354,310513,'update','orders','{"fee_required_remaining":0,"get_remaining":100000000,"give_remaining":800000,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE',NULL,'71f27713834cd7d54a60ef1e10767531bdaacad8d4c6d5b5ea024981be9dd330'); -INSERT INTO messages VALUES(1355,310513,'insert','order_match_expirations','{"block_index":310513,"order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns"}',0,'ORDER_MATCH_EXPIRATION',NULL,'09d3c46d27cbb0f980418b3db466b5b73bc5b134cf6bbb81fa896a97c746014f'); -INSERT INTO messages VALUES(1356,310513,'parse','blocks','{"block_index":310513,"ledger_hash":"95fa563ac99c86ef29c53271bde2a025b3b1b9d50d61f84cea7da5d65ae56f91","messages_hash":"83ab7d2500a6bd0c7b0de67284ca9566b0df7cdc0db5ea61f62d7c215d5cc91d","transaction_count":0,"txlist_hash":"e82379e2bd481f39e310670c046d855855c476a4bd0dab621ea06ccd2ac136fa"}',0,'BLOCK_PARSED',NULL,'50b64c9f63ce66e7aca677ad28278945cad1e6324606a4e36c6e698d99c900f6'); -INSERT INTO messages VALUES(1357,310514,'insert','blocks','{"block_hash":"39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7","block_index":310514,"block_time":310514000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d4cc56156d3f24fcfbdd726fb9fa162d41fbae8f7d46dc1e90cd61682ab836df'); -INSERT INTO messages VALUES(1358,310514,'parse','blocks','{"block_index":310514,"ledger_hash":"1e6610a2d2c2f692b83f48da7b235926c87e72981da5abbf8b27ba383215bde0","messages_hash":"c6354a302be18f6360ce94327224846ecbc2916172fbc797aff8a34cc2975e26","transaction_count":0,"txlist_hash":"c99f21e4275501cdcadb134b8a409da50024832c8ca849deda3161d8b026f1a1"}',0,'BLOCK_PARSED',NULL,'7e2c10f662b996b9295b71c00ba77cb9bac62daeaa73599b621d31c888e3c428'); -INSERT INTO messages VALUES(1359,310515,'insert','blocks','{"block_hash":"57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8","block_index":310515,"block_time":310515000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e547514b1f4d900475650fabbb9144d6b6583e85f815f9fffe6ea3339393ab1c'); -INSERT INTO messages VALUES(1360,310515,'parse','blocks','{"block_index":310515,"ledger_hash":"4f09e2e6412ed7f1c152e86987439ce1d3e162163830d26fb5229d6825891948","messages_hash":"b475dc4626bfd8d25bde2c9bf05357da3f9b10a573deb1c2d898af906382ee9c","transaction_count":0,"txlist_hash":"ee33ce8f40db45f132b15d60daa3935ee8da4593c31f65ea269687594a2c5051"}',0,'BLOCK_PARSED',NULL,'37236b04e0b668b2d840068b21e041f1adf85d7aff24d9bbcc52e5456b6f1665'); -INSERT INTO messages VALUES(1361,310516,'insert','blocks','{"block_hash":"ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7","block_index":310516,"block_time":310516000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4cd23bcec54fb16983c143188eb36450b036c24df316bdc3152fb86e5ca75819'); -INSERT INTO messages VALUES(1362,310516,'parse','blocks','{"block_index":310516,"ledger_hash":"b878bef5654a7517edd013f609fe27f8f6681f806b8d43fa4569e96dac33a32a","messages_hash":"02f832da8d21c4943c0c86db06ba98cba64862ca49eb5bf64a06e6e1a38ad2a4","transaction_count":0,"txlist_hash":"a461fb607e3e3480b92d679204388b0aa2d2785cf5860e3539be8b41e1702341"}',0,'BLOCK_PARSED',NULL,'f424b63f7b058117e62ec317b5567766e5737eb97fa7bc0eda181f68d2d71d96'); -INSERT INTO messages VALUES(1363,310517,'insert','blocks','{"block_hash":"defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407","block_index":310517,"block_time":310517000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2f5cdc2585b6913873e5536feac9c30e2b81991c5fc4001713054d6bd06c1042'); -INSERT INTO messages VALUES(1364,310517,'parse','blocks','{"block_index":310517,"ledger_hash":"652e89be97ac3684609a4b6a10dce6eb5f74e1ce9fafbaa2cd02320fc322d85f","messages_hash":"24f7fa89093e93ec1a75d73f39c5c0171ef4f8cfc102a51d1afba9d260634a78","transaction_count":0,"txlist_hash":"9bacdf0026c8297570a7d50e6c372bd5a04ed7f748f820b33e7e93340ecb69fd"}',0,'BLOCK_PARSED',NULL,'89e6460378ab6cd0c94c0a3ddb6dea02e915207b88e688e644ee528b074b011b'); -INSERT INTO messages VALUES(1365,310518,'insert','blocks','{"block_hash":"41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5","block_index":310518,"block_time":310518000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e4b2a8b883e3603b50f8f33d7df93c44da0245749da723e03a774af9f05af6dc'); -INSERT INTO messages VALUES(1366,310518,'parse','blocks','{"block_index":310518,"ledger_hash":"2511ff65a406e7748f529a19968884ac8c3c140a203319dde46566b8d9c21340","messages_hash":"cec7e18d5b91ef1f2bdd8e2842bae7271062218385e8c6d38a40d6f2cac36248","transaction_count":0,"txlist_hash":"66af0cdab6c52ca6b8ce731143739553d62e1986de0478e346dbc42e570f1503"}',0,'BLOCK_PARSED',NULL,'b7230144b8a211dbda606cbb80312d526384de8c449a98b52f2961b8e45c7ebc'); -INSERT INTO messages VALUES(1367,310519,'insert','blocks','{"block_hash":"9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a","block_index":310519,"block_time":310519000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cbb7d0808dc102ee5903a048e1d0fc9e3a825d932a957015d784fcf522515228'); -INSERT INTO messages VALUES(1368,310519,'parse','blocks','{"block_index":310519,"ledger_hash":"f0e32de8b078d3ae8cee89841ad40462c7bd9657a5f5bacf45dafb4c41db871c","messages_hash":"e862fa475e9515aee6897475c7b2fadfdd3df8f0e753b6b4bae272af10b51845","transaction_count":0,"txlist_hash":"67662c882b46c7a5ac62a01e7ca43e1290e1fee20a68ebbd1011b93b9f8d00d8"}',0,'BLOCK_PARSED',NULL,'c6bbcc16d2b98280e1bc4119e35d4c7ba3643aee46c8a933529ffaa21aeb6300'); -INSERT INTO messages VALUES(1369,310520,'insert','blocks','{"block_hash":"ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680","block_index":310520,"block_time":310520000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0bbbd0a8fda5d3920e3920ce322850b4d0aa9c151deeed628a3d90fd7e402a7d'); -INSERT INTO messages VALUES(1370,310520,'parse','blocks','{"block_index":310520,"ledger_hash":"21f8e8433f145298a88f1e3e96b93b3f56a78bbe1228bb989e32ee4a77ef9dfd","messages_hash":"1225035375b39c594596e4ae27ea04676f660484537f9f16690da48922925f06","transaction_count":0,"txlist_hash":"4ae19f415141f11f6c3b72d24512114ff7c06d201e2ee94aefb58e9f1921964b"}',0,'BLOCK_PARSED',NULL,'f1bce8ebf004e96331384a56b11f2693373cfbbd723d219f23b1dd2926d0f447'); -INSERT INTO messages VALUES(1371,310521,'insert','blocks','{"block_hash":"df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598","block_index":310521,"block_time":310521000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b4937518639b70461fae8b4f8aec8d818d25b113de1abe617924d75674597bb8'); -INSERT INTO messages VALUES(1372,310521,'parse','blocks','{"block_index":310521,"ledger_hash":"2db78e0e6098bddcf2d9b736717dc7a847beb8a2caead23526a7295349bc5fd8","messages_hash":"835bd3153c94167b0d109456e09d41544e94123b0c46124930c46ed42cf0ec6a","transaction_count":0,"txlist_hash":"243a864c8243f71fa9cfbbbb25e23547337dc04b074d1aae2408a82b11ad3c15"}',0,'BLOCK_PARSED',NULL,'58a0101e0d626ce9faab02f22083ee7b3516411add770cbca79fe8d46d002c0c'); -INSERT INTO messages VALUES(1373,310522,'insert','blocks','{"block_hash":"6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21","block_index":310522,"block_time":310522000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1494685c69ac68e36ff6b838238325ba83af95378e091561a590fdd008e38743'); -INSERT INTO messages VALUES(1374,310522,'parse','blocks','{"block_index":310522,"ledger_hash":"5c8add5c7f541c3dc9c801eadb506037cd0cebd84e3be0a37b3dadf60a46a3a0","messages_hash":"17aaaa53a67562934b83a804b8c36e00b79bbe3c914f79623ca8a6450ad95fc7","transaction_count":0,"txlist_hash":"f8d7f3eeef9c11dbb8c8ec8bf5c06e4eacfc812151526c44a4208bb8d585a973"}',0,'BLOCK_PARSED',NULL,'189d58f1f6b6b0925c5917de24a2b31e0295d01b616a3b3c1e6d5fddc876eb3f'); -INSERT INTO messages VALUES(1375,310523,'insert','blocks','{"block_hash":"0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453","block_index":310523,"block_time":310523000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'27e0b670a17a8c5f50eed13e9d30d00cdc2aab8bca387198e8e6ea7d72e923b6'); -INSERT INTO messages VALUES(1376,310523,'parse','blocks','{"block_index":310523,"ledger_hash":"06a394efdb543d37060d931b5279f84e03704ddc706f7d5de6314f172d741a0e","messages_hash":"36412ed56ca125b6f4e6beab02684c7aa9dc68bf62871046afa063fb91008706","transaction_count":0,"txlist_hash":"065b22682abbad6d9076204a74a4be79acb71b8a8fd715ad334c3351f35f75dd"}',0,'BLOCK_PARSED',NULL,'f391b7e102fc72efb70867199fd26cccaa9c26864520b0e9c1126c8838013bc1'); -INSERT INTO messages VALUES(1377,310524,'insert','blocks','{"block_hash":"b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655","block_index":310524,"block_time":310524000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8ba9f524ad6d4a15e234d0f1a67ca410e40594c2cab12b9992fa36df12b0b79b'); -INSERT INTO messages VALUES(1378,310524,'parse','blocks','{"block_index":310524,"ledger_hash":"7d41fedc94049016674c859bbf11e47f1e29218b7bf0037068052ef3fe3355dc","messages_hash":"14b05fa8e0ab9565bd5d9bddd85fbd7030f15472b4dadeb0cb3f5c8496d6a9a2","transaction_count":0,"txlist_hash":"7b1d9d04b71c2b8f7aa31cdef567336e6f1dfba44fcb4915696ab498c72364d0"}',0,'BLOCK_PARSED',NULL,'d9ea5670f8fbfea86f702514ce5233a330a221e2e75d02741760569b3467231a'); -INSERT INTO messages VALUES(1379,310525,'insert','blocks','{"block_hash":"2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9","block_index":310525,"block_time":310525000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'73245dec8d7e050bb5bb45333036868e23a8f4ae77365e311fe534f4f515e985'); -INSERT INTO messages VALUES(1380,310525,'parse','blocks','{"block_index":310525,"ledger_hash":"8fe5e326806e282f22c556ab8d726c562a9bd7372f090751a8b7136611bf1ee7","messages_hash":"f315e1e9b3e71d83df3c7021f5e673456b33f39d63737cc51ecfebeb5f779e52","transaction_count":0,"txlist_hash":"52694ea9983ac76659645946334a071b7b5e86e295155526e3a27cd87d81cc87"}',0,'BLOCK_PARSED',NULL,'fcfe8c20aac85190c55758b1d8a3496e52a46c6fcf593b357917f92bd450cf60'); -INSERT INTO messages VALUES(1381,310526,'insert','blocks','{"block_hash":"07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d","block_index":310526,"block_time":310526000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'18d2631df914e9e2b2b1b9cb42b7210805516314ff9b5f917fbcfd92fa3e0e3f'); -INSERT INTO messages VALUES(1382,310526,'parse','blocks','{"block_index":310526,"ledger_hash":"6e0ef4f0f7097d90ddeabc3c00106113d91f9def26c8bd052e2b48093a57dc6e","messages_hash":"504e542e909d0ce8495a313aa9221fbcd02c7367eb55834bbf009b8b56c9233a","transaction_count":0,"txlist_hash":"7c47526dba085953aa0d343f0e5b51520d69f92b3046013d0fa0ed6632b74b4b"}',0,'BLOCK_PARSED',NULL,'dcbb4a8f69633b6ad2a9d66ace83c301ac146aeb655de14fff01f5b87c1f0bd2'); -INSERT INTO messages VALUES(1383,310527,'insert','blocks','{"block_hash":"5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db","block_index":310527,"block_time":310527000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'380c5d973e39407e45c48fd1460d7ea0c25bab5779161d7f8153ebcb67b6a3f8'); -INSERT INTO messages VALUES(1384,310527,'parse','blocks','{"block_index":310527,"ledger_hash":"a730bfdba793e146cc3f80c875c33a390bbd3200fb8fbcea65dc5f307a15c31c","messages_hash":"9c3924d13454430eb4548ffb09964c5fe48c9be11b580bf09f13aef9bedf909b","transaction_count":0,"txlist_hash":"8d0d0b180ebfe5738144b9e1f8e81f74a90cd81fc7bbcd6490881b8554ba12b8"}',0,'BLOCK_PARSED',NULL,'bafcdae52be012dbccdbf734a0109f69650f24358fa34c420d92ddb684a6c45a'); -INSERT INTO messages VALUES(1385,310528,'insert','blocks','{"block_hash":"a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5","block_index":310528,"block_time":310528000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7b51930117452b9a892a4adb0935f6a5901d17fea73db25a04755fc6903788bc'); -INSERT INTO messages VALUES(1386,310528,'parse','blocks','{"block_index":310528,"ledger_hash":"cf9f4b5a41ed1bc8e054e1702b5c9879f36f1430fe665ed04f161e505404501d","messages_hash":"05220c6bdfec2f5cc1469737ab8402c7f70820b5687ff771cba4be8a1f02e0d7","transaction_count":0,"txlist_hash":"6f1b36c493186bfc813d2e3638d0fa2dc68c2ca7f0823bf3935a2c7d2539da9f"}',0,'BLOCK_PARSED',NULL,'cfff72ab121e7728b2d5e475c5255200dc182a4eb4dcd1d29ce0f806356838c7'); -INSERT INTO messages VALUES(1387,310529,'insert','blocks','{"block_hash":"7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b","block_index":310529,"block_time":310529000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5b5cbbca9da5fdf5e8f097ad0451d0dc36f9f9dbebaaac02600e9ad47c0b24d1'); -INSERT INTO messages VALUES(1388,310529,'parse','blocks','{"block_index":310529,"ledger_hash":"bbac0b9c99cc7e8df7b27295999d4b52ffd603b52a90fc2ee18f4fc51ab1471b","messages_hash":"919635e8583a6110f8497d5716d532d6cb832801649389f92ae1952c23652151","transaction_count":0,"txlist_hash":"7e4232af9977eb670466868d83e6df5ddcb39d899f33ef653b87d58b422ab64d"}',0,'BLOCK_PARSED',NULL,'c02cd735de74e73f28deb0a7f5631c54bc9bf792bcfc999abe82f40a203ac3e6'); -INSERT INTO messages VALUES(1389,310530,'insert','blocks','{"block_hash":"f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110","block_index":310530,"block_time":310530000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b6a87a97bee42d14ed1a21353d0f4961aebdf4a8866ec46258566df5cae52c86'); -INSERT INTO messages VALUES(1390,310530,'parse','blocks','{"block_index":310530,"ledger_hash":"80db4f033b0adfc86ef43309e703ae2862c143dfd927194576af420ac2d17d1c","messages_hash":"c69df884ca4d6e5c7e1fef3c1f5249a8e532f312458e8bf87079742bea523705","transaction_count":0,"txlist_hash":"7e4077941dd95a2b0e51b0ad680935a7232fa5cf31f664150510172e4c2e6da1"}',0,'BLOCK_PARSED',NULL,'799b9ff1ad9a8df328c537147794674b7654c9269c7706ec15301a4fb2a54e86'); -INSERT INTO messages VALUES(1391,310531,'insert','blocks','{"block_hash":"764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15","block_index":310531,"block_time":310531000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a69844c14584065b4888c347611ecaf3ca927c9fb9cbbb57a64ccea929087738'); -INSERT INTO messages VALUES(1392,310531,'parse','blocks','{"block_index":310531,"ledger_hash":"3fe09cfd91c8284a31e545f63a2a8462a5c9d8c851c065272d36ae4618e4d849","messages_hash":"666625d2555c2db293b3b11ea1fd91473da269918fc82c0d3fecf2a2ce02ab44","transaction_count":0,"txlist_hash":"1245439b0d3fff0822ebed6e6ca34f99f24194cfb36fb2649ed61b0ac26ed7a8"}',0,'BLOCK_PARSED',NULL,'4e22b1b91f26044b1f457ccb66baa7b61e12aa6b8addfa63a7e52f2d29d1771c'); -INSERT INTO messages VALUES(1393,310532,'insert','blocks','{"block_hash":"4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836","block_index":310532,"block_time":310532000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'83d160d91485bd4ef88b7979c936f9909ff4537f3ee29937e18c92db25d66a0a'); -INSERT INTO messages VALUES(1394,310532,'parse','blocks','{"block_index":310532,"ledger_hash":"9871ebbbda65fb698a50235df2c22fd2283dab1a083f9ba2d31febecc2669852","messages_hash":"3f257c8f58cee62ce4164c0131b3575cecd627be50680b1f890b46765a646c5d","transaction_count":0,"txlist_hash":"6004fe4cc5ce025759106802ff56bddaf546e7a9d71510e49a4098766a794726"}',0,'BLOCK_PARSED',NULL,'01ef8eac76dca32d2d26222cd426ac2835407317505734767bee26eed9c60a8f'); -INSERT INTO messages VALUES(1395,310533,'insert','blocks','{"block_hash":"4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912","block_index":310533,"block_time":310533000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a41968d6d19ff6b624e07b38f4c95b944b43e11838c0477b52bcf968aa5a847b'); -INSERT INTO messages VALUES(1396,310533,'parse','blocks','{"block_index":310533,"ledger_hash":"5eb75c91baf2549f7905a51ce3dd926721cb7fe2052584eb393c3af649414403","messages_hash":"a7aeb1dd865847604745f1a573fd54b46802b15710a4e8ec7016b0f374be41f5","transaction_count":0,"txlist_hash":"b9a73939683499b11ce35245014153232ddde14a49fbcc8cdcac3f02c9265a72"}',0,'BLOCK_PARSED',NULL,'bebd57180b6fcf266e7962c763d29a475c341331bf597c2c9d41cce475e8938f'); -INSERT INTO messages VALUES(1397,310534,'insert','blocks','{"block_hash":"2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad","block_index":310534,"block_time":310534000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6682c78fcec50f680089129f58edf47e7d4b8bf7746ea2822f316caf3881df27'); -INSERT INTO messages VALUES(1398,310534,'parse','blocks','{"block_index":310534,"ledger_hash":"a291950484aec7e60f0fc17ed29d3908a5343ee24b3a8b926adcc2016c436aba","messages_hash":"92f4c332c7d4e7ee6fc1f1d79b6dbef85bacb4eb52074b09bd276c076708d06a","transaction_count":0,"txlist_hash":"36dfe8e8614a4f5046330df939031d7618e0c5ec9a5e9a23adfb5abf81b17832"}',0,'BLOCK_PARSED',NULL,'fce418f3dc53cd1fcb67a55a5cd385a9c67be9c1dc0abee4a2bb901ecf3960c2'); -INSERT INTO messages VALUES(1399,310535,'insert','blocks','{"block_hash":"0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce","block_index":310535,"block_time":310535000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cfdeba5a4d37cafadbf236e2b9f5d2f8237fc0ffde9e3ecd7e879f8415fdc473'); -INSERT INTO messages VALUES(1400,310535,'parse','blocks','{"block_index":310535,"ledger_hash":"fdc4940a776dd241bf5caaa5875fac2d1d869ec438ccb6ea96b67c1942bf9c7d","messages_hash":"bc583defc3c0928f1201a8733b340b17d66854021a38484570758907c08fffb2","transaction_count":0,"txlist_hash":"9be9aa1d1972bdb4febf132b2003528501375ed67a70a92efdebdeb4c1b98a90"}',0,'BLOCK_PARSED',NULL,'21ca99b695dc87218618b1cb9f47583d235fd8a5699c8c70a0f6085704be4e79'); -INSERT INTO messages VALUES(1401,310536,'insert','blocks','{"block_hash":"dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018","block_index":310536,"block_time":310536000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'df45c7f49b041bf45368bf4ceac70b8ab2a64ace584fff756a9aa432f9f4f4d0'); -INSERT INTO messages VALUES(1402,310536,'parse','blocks','{"block_index":310536,"ledger_hash":"a18b4922df0afa7c7ee49756eaf808c7cc4d9d05cfb9c9077a165b2f592d95eb","messages_hash":"c1e8b7741a7724641ffa1a82dd951186f09c1647f8ce7ce1e6ab525c16338533","transaction_count":0,"txlist_hash":"f2187b1c129b489914599faed5415ba0d52a0bc44e49453df54648a30f505ce2"}',0,'BLOCK_PARSED',NULL,'8549f1031f86e9dd4ab48bd385893701d46bb64857ad07bf07ac3b94caf672a3'); -INSERT INTO messages VALUES(1403,310537,'insert','blocks','{"block_hash":"944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d","block_index":310537,"block_time":310537000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1929d40df56bd88d3e0483e7f077e443752954d83114b034c60cb275426ab541'); -INSERT INTO messages VALUES(1404,310537,'parse','blocks','{"block_index":310537,"ledger_hash":"a0761e85b4872b162dbfe429f4fecac2e73e6e03a0a1ae6488327003d8630b25","messages_hash":"b55901750fc8eae849b2436fcb86ad92e67c65782dff7caa014be480f1c36210","transaction_count":0,"txlist_hash":"849255d12eb06d2dbf9ebd04fe0a99602216890abe7cb6faae4b13fa3dc0b3fd"}',0,'BLOCK_PARSED',NULL,'6082e3cef9490a0097c94b4a4f6688c52e50482c94640844b571e2345a8d4216'); -INSERT INTO messages VALUES(1405,310538,'insert','blocks','{"block_hash":"75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd","block_index":310538,"block_time":310538000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7fb2e7ca9fec69a8bcf6c3a48a6d44bdd115d72979e29c81fa4cd024a6f4be1c'); -INSERT INTO messages VALUES(1406,310538,'parse','blocks','{"block_index":310538,"ledger_hash":"44822634a5906e095afbf44d44daeaa36199d6af3d6c8c00e731e88fe953e36d","messages_hash":"7d2250ac3d3a16cadd09c362cfb75f37ab216ec09efd5c88156fb1b82d2dad45","transaction_count":0,"txlist_hash":"8ab5b08a8f5f57d62cc8fdaefb001fb34757bc7dfa355311af7e993338c15e80"}',0,'BLOCK_PARSED',NULL,'9caa629a83a59798192bd891bb6d169496747da2a00c1ac89aa02a42abfa9dc2'); -INSERT INTO messages VALUES(1407,310539,'insert','blocks','{"block_hash":"338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3","block_index":310539,"block_time":310539000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bea04c092c7b27721040b5e41a606e206a33de232f96f1193008fac3c0db592d'); -INSERT INTO messages VALUES(1408,310539,'parse','blocks','{"block_index":310539,"ledger_hash":"4f5a26997d376667b7c37e6d95e207fe429c09c05e5367b3db0b6a8fb74d23af","messages_hash":"bc46707dbc59f1e220e0b495f1f0efc12a9917f9bd9147d446c8b87a93d029be","transaction_count":0,"txlist_hash":"f889de9308ec0bbca7f214cc8c81030ec5317cb72dddbb97dd3b00a002c4fa64"}',0,'BLOCK_PARSED',NULL,'ca69f32c27bf029c3eae5195115b5c058165a389cd10a413f22e790a211b5ddb'); -INSERT INTO messages VALUES(1409,310540,'insert','blocks','{"block_hash":"0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d","block_index":310540,"block_time":310540000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'251d01d54bbe94339ee2460632d2f958901162ee83fa6ea55cbe0e60430cb7b4'); -INSERT INTO messages VALUES(1410,310540,'parse','blocks','{"block_index":310540,"ledger_hash":"8a87004e3a64106806696f71d7efb9bcae3135c322f297ad7de379c29ec8313f","messages_hash":"ea1e0e430289a1643f5cb0bd3d6d9163a039909fe3665760a961d18073095fd4","transaction_count":0,"txlist_hash":"474f6e2a51277c8f90f02aab78058b6b9c7e3327d0cec325ff6002e058148496"}',0,'BLOCK_PARSED',NULL,'9dbfda62751aec595fd7f7ec2d1c5b1a19be91dd7b8e79abaf9bef84ef0863c2'); -INSERT INTO messages VALUES(1411,310541,'insert','blocks','{"block_hash":"ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453","block_index":310541,"block_time":310541000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'63611c2dba5fcda859bd0a742bd93bdd37211ac3dfccf6c126b50b890dea198d'); -INSERT INTO messages VALUES(1412,310541,'parse','blocks','{"block_index":310541,"ledger_hash":"6d998264dfe16f8058aaa5858cb79e79ad69fc2d329c02251b00b1e0167a7c4e","messages_hash":"6c40c21a73ede375b284285d1a92654f59703a39f6a86da1ffadf749a4716049","transaction_count":0,"txlist_hash":"0b004058cd27a1be5261693a5203d69c14f2ca5b3105d21bf28ef3f49273f885"}',0,'BLOCK_PARSED',NULL,'90953ad8dc3038f03bbf1f89ed7eb4012af69763845626c9a39ff77b6ce9146a'); -INSERT INTO messages VALUES(1413,310542,'insert','blocks','{"block_hash":"7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2","block_index":310542,"block_time":310542000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e3084fc2f6e5e8f99d01bbf031bfe5b5de24cbc0a62e57c34baec929348f6630'); -INSERT INTO messages VALUES(1414,310542,'parse','blocks','{"block_index":310542,"ledger_hash":"62a19834e7fbf406a9aa79eadb62777fcca224a7989db7de1067b2e6caa63369","messages_hash":"010fc2e1fe45d582619ecae7a17c4c61a109ef7546065e8e114c1ee3150b8a5c","transaction_count":0,"txlist_hash":"7553c0132cfd45b14cbab4f1e59510933069a4f3b82be8a0e2f13d08e3a06cf3"}',0,'BLOCK_PARSED',NULL,'c73bc741fef19ec2ee37cddfdb7259d5899c4f99ae4acace85a040aefae85d75'); -INSERT INTO messages VALUES(1415,310543,'insert','blocks','{"block_hash":"cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2","block_index":310543,"block_time":310543000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5bec25e6faa7c4f7ac30a273c675eb0f86ffc8f49c05131003a8c3ade8a6490'); -INSERT INTO messages VALUES(1416,310543,'parse','blocks','{"block_index":310543,"ledger_hash":"33219794788b90ec54583a14b734f678f557e0bdd8b34f7bce2ac42ea3a6c0f6","messages_hash":"9352986391e5180e06cad855006335fb840493e528785721e9c33a22bf5ea10d","transaction_count":0,"txlist_hash":"f7e56981d310a7b8a06ea7ce6c4d4091ce35e4a8023ada8890e952453dae8201"}',0,'BLOCK_PARSED',NULL,'84dadace066fe21b9560c6c542998cab3640b1fde5519c299b9ad450514ce0e3'); -INSERT INTO messages VALUES(1417,310544,'insert','blocks','{"block_hash":"c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6","block_index":310544,"block_time":310544000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5047cd7f5b5b46985078602e8fcdc390a53cdd256fea0c6e4654a867d73ef598'); -INSERT INTO messages VALUES(1418,310544,'parse','blocks','{"block_index":310544,"ledger_hash":"b59bad9fcba90d7f5bfced7e90f5c9672b2ffe33d79bb9cb20c2baadcb964e50","messages_hash":"72a45c4d8f834e61b65e0252c77cb8e57a5113d5244c96e4ba931340f0d829fd","transaction_count":0,"txlist_hash":"bdf0fae7bf5083ddc2a99a4a7efbaece20070f0145e44b67567f71c90b29ca2e"}',0,'BLOCK_PARSED',NULL,'82b6feed0451135ec61c660db32f9aa1106bdcffe960e74f9288c72660ecd37e'); -INSERT INTO messages VALUES(1419,310545,'insert','blocks','{"block_hash":"aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a","block_index":310545,"block_time":310545000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'43a868f12da6049ebb994d3df45a72b900bcff565e1e782033ae29ca1162e5f7'); -INSERT INTO messages VALUES(1420,310545,'parse','blocks','{"block_index":310545,"ledger_hash":"cbf12a5107ecad81944e4f881bfe77b2d78564160f266d8e71667645932956e1","messages_hash":"9c8c5a5d9e0e40ca08179ed61ae3ae32b05133c6743c2bbcef94e96229ddf7e8","transaction_count":0,"txlist_hash":"9a25f3b3bb017cd926e1fa8b768324a147979f518208c106ffbad1b5fb8d502d"}',0,'BLOCK_PARSED',NULL,'1b2d83e7f9884577bd7ac1713c6f9b0fa2ddd127897f0945183123f6126a6154'); -INSERT INTO messages VALUES(1421,310546,'insert','blocks','{"block_hash":"20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d","block_index":310546,"block_time":310546000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'736fddcfbdbeaae2e47367f7817d48b71ad896406c6b6c9db83333cc56beeb7e'); -INSERT INTO messages VALUES(1422,310546,'parse','blocks','{"block_index":310546,"ledger_hash":"f25847e305f7db225949a80d76e9e1bdada01021099c5c0fb08ddfdcb78ab480","messages_hash":"b96accbcc891a2256e584d14dd3d339355aefc1c1109f0fe42e562797c342e85","transaction_count":0,"txlist_hash":"cff6edc9625c136443e036d39b1ed3cc5e76a49b919795f05cb92e508e4cead5"}',0,'BLOCK_PARSED',NULL,'03385a5594b8fc9eda6ee4f90d817517edbf5d966e6d37fa95461c3837003609'); -INSERT INTO messages VALUES(1423,310547,'insert','blocks','{"block_hash":"f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7","block_index":310547,"block_time":310547000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea34c395915fa6103abd03a55e76a80e0917c09d4c396433269fac503784f7dd'); -INSERT INTO messages VALUES(1424,310547,'parse','blocks','{"block_index":310547,"ledger_hash":"d39a0f8a9ff6b86cc72abc351e8391e0df2ab52d195035f009d18d11d5d5e9cf","messages_hash":"7b9d3c1636efdfd8a82b4c46507b704e936e6e8258589e16d9a820176eb787b0","transaction_count":0,"txlist_hash":"3a305e7a9b8de2e2ec9f43206a08e257a1e17c540f0e47625b64feafc3413daa"}',0,'BLOCK_PARSED',NULL,'d16fa4e275a1217cfb0da6e87c5c9695e4f40955a3ee5c24ed9c55795b114917'); -INSERT INTO messages VALUES(1425,310548,'insert','blocks','{"block_hash":"bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2","block_index":310548,"block_time":310548000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3d25ad8b950d2249b3d8ef905663dad948d8871b9426c997527cc2b0612ae0f5'); -INSERT INTO messages VALUES(1426,310548,'parse','blocks','{"block_index":310548,"ledger_hash":"1f54b81e87e72ae3f76c8fb8f348a3dd24f2918be8e2914267c93d58c810efcd","messages_hash":"7af4c43009cf4dd3a831d1a5c8c0bb68888b8e6d72a9cdf4775409852b65087d","transaction_count":0,"txlist_hash":"6a9672fcd678d39907e6c01137f2c6514ff99929cf60171c1760e72dea1b1f19"}',0,'BLOCK_PARSED',NULL,'36e46045abf1f7049276250231eec56c6a3b3f87503af0c235e554122f1dc84f'); -INSERT INTO messages VALUES(1427,310549,'insert','blocks','{"block_hash":"8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979","block_index":310549,"block_time":310549000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d583bec5730c3b51d863382091d7c014e37df590a74688af1272554ff37a87e1'); -INSERT INTO messages VALUES(1428,310549,'parse','blocks','{"block_index":310549,"ledger_hash":"697b6c693e7cdb7fe22a9b1d9d7b9332c9ca9197adb351245b543e24fef49c2e","messages_hash":"836a9ceec89f9ae37667a2adb677f1714060f398530eb4a7b6c5c3b95b1be986","transaction_count":0,"txlist_hash":"d16823e9ed0b346917aae45cd173cbd173d229f284cb95ec7af7c9b159b2d8c8"}',0,'BLOCK_PARSED',NULL,'009a06e2bc7532a37a2e4fc2ee89eb28b3530a96bce6c98f13e696e4e394a5a6'); -INSERT INTO messages VALUES(1429,310550,'insert','blocks','{"block_hash":"08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914","block_index":310550,"block_time":310550000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0cabbec016b9faea29a78404b67a85b9217d0b67627409c6d1d71f91a3d9cf93'); -INSERT INTO messages VALUES(1430,310550,'parse','blocks','{"block_index":310550,"ledger_hash":"353f9dd7d173823446e7a4d536b2a136a0005dec0306ec18541d1c95b06e2986","messages_hash":"7ff391cbc597eebea8fb24e1923b93be79fb044f40ef612b27221dedb6b1fee2","transaction_count":0,"txlist_hash":"6ce86b2a35a931348e98118c7426950ad4ee1a9fa557cd3c1eab0c4fd8d3f144"}',0,'BLOCK_PARSED',NULL,'ba4b02c9cf65ec8505041668517b57a931f75ebe0aa8d1658cfa3d69486cfe77'); -INSERT INTO messages VALUES(1431,310551,'insert','blocks','{"block_hash":"cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b","block_index":310551,"block_time":310551000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eba695ab03284284f38d85af3777cec242194d3b8f307711c50f53d914692892'); -INSERT INTO messages VALUES(1432,310551,'parse','blocks','{"block_index":310551,"ledger_hash":"cbaf72ce2e4047e48974e4839f6e033fbc0cee5d3599cee2ce43af879900b5d5","messages_hash":"2094bd531d4c5bfaa19bbd0021a74b200880f5402449db0c6a8f9fdf4b9ad7dc","transaction_count":0,"txlist_hash":"49db288f7c65afd8f99a1f8e6edc85dac9c599d27be113df4b6246f9232a6056"}',0,'BLOCK_PARSED',NULL,'17edb2318528a63ce5c69146160db8edd7dfb2ebefa05b55ba1ee6963748c467'); -INSERT INTO messages VALUES(1433,310552,'insert','blocks','{"block_hash":"d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d","block_index":310552,"block_time":310552000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f18b9dbdf5d223d67e73ae505fefa4fd4bb0ababd1875ddd4c1dd1f73099b223'); -INSERT INTO messages VALUES(1434,310552,'parse','blocks','{"block_index":310552,"ledger_hash":"056d1a4bec68b036c52ed73a5086a3bdca8649dfe364480326ae170534da62c2","messages_hash":"819300e47b634f4895bb8df78cb17f8a4e74ab04b4410d6fd00090957e64cf41","transaction_count":0,"txlist_hash":"f5ba7a3fdb9394f101d5187b107ad937fa5a224c290119cd76bb37710b1600a6"}',0,'BLOCK_PARSED',NULL,'dcc5aa95749e77ce49a071fbf2111e50146684306d30f0ecd45ebf8541730bf0'); -INSERT INTO messages VALUES(1435,310553,'insert','blocks','{"block_hash":"d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2","block_index":310553,"block_time":310553000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d4b1126be53252a0225416a2d4908ddc6991489b135dcca478cd06aae8d80993'); -INSERT INTO messages VALUES(1436,310553,'parse','blocks','{"block_index":310553,"ledger_hash":"5bcdeddae792fe5322b07b5edf563f1de05f7ecf2f54a0d9c88b76ec2be96617","messages_hash":"1cb3860758eee8411742b13c8f69b255bb02de353b3e99bb9cd5c7542eab40e0","transaction_count":0,"txlist_hash":"b1777df226b373535e3fff13e4379375cd601d0cbc1a90951cf288d21eb66aff"}',0,'BLOCK_PARSED',NULL,'63eb2f0c65635b7d7babe2ef425444776a6fb3a88d9cb384695251e8895d1b74'); -INSERT INTO messages VALUES(1437,310554,'insert','blocks','{"block_hash":"7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65","block_index":310554,"block_time":310554000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'de3395f7fda5e0aceafc54a1dc379c5f4e0c37f068cba5739bc6dea88cda2f3d'); -INSERT INTO messages VALUES(1438,310554,'parse','blocks','{"block_index":310554,"ledger_hash":"8f28d0859871fd1513213cbb15d5825419c12bc23b2affd954b35cdc63d28536","messages_hash":"5fd6ed58ddb4ca4ff4f67850d8037bd9fd9197446576d43bdc9a647f02e99bc6","transaction_count":0,"txlist_hash":"870b61238a3e7c740fb52ba62719724cf95250ac22a4705dd88a1870f560fa1c"}',0,'BLOCK_PARSED',NULL,'55554c236eb05b377b7711ff66cf56d94af8a68402560ae759b524e4bbe39d62'); -INSERT INTO messages VALUES(1439,310555,'insert','blocks','{"block_hash":"c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa","block_index":310555,"block_time":310555000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2fddff4dff1c65e5ac3c926ec2031ee184d534aff3dc24ba5861bc9c7825f243'); -INSERT INTO messages VALUES(1440,310555,'parse','blocks','{"block_index":310555,"ledger_hash":"8d9f3a940b5094e7e59de402cfa9c2b07b9d95fb9afde5400e9884c15712df31","messages_hash":"8c61e56049534b413b5f5d30feca4ccaafc492dab7af43f3f3a33706f74b0fd5","transaction_count":0,"txlist_hash":"8b3bd64e05150c476d55dd64729b8e20e7b8c345c35c723392b194785472c6a3"}',0,'BLOCK_PARSED',NULL,'3ac83282023e2b5aab816fda63259c14892f41d20de727c6e63cf9abc8dc0532'); -INSERT INTO messages VALUES(1441,310556,'insert','blocks','{"block_hash":"4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a","block_index":310556,"block_time":310556000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'38fbc6b8c3eb935575b69e76a6334eb168486de054e1f3533f696be7cfa8aac1'); -INSERT INTO messages VALUES(1442,310556,'parse','blocks','{"block_index":310556,"ledger_hash":"6855961c09b3b8b8ef2e8b9aee33b7da1d36228e2af0792932c3f7419d6da242","messages_hash":"c7cb6b173e457394f5d2408520f95584489146dd500d102e2d3d5768819d0522","transaction_count":0,"txlist_hash":"a858a0bafa17a74c79b65ca07ad3418ac201e5096c87159bf789f40c3d84679b"}',0,'BLOCK_PARSED',NULL,'845385186232e3be2889433d4645af5abc68db069f291973f02473e4d88a0658'); -INSERT INTO messages VALUES(1443,310557,'insert','blocks','{"block_hash":"0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382","block_index":310557,"block_time":310557000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d2037edd0e453d914b2e25c88aa1e4e4f1c57d5be6400ed41c72a27347d9740'); -INSERT INTO messages VALUES(1444,310557,'parse','blocks','{"block_index":310557,"ledger_hash":"3b3c17afde8ac19daec1f9e6ac4ddfb80ef6e0638be51e1753f0a23baf378fb5","messages_hash":"5b3203ca1a8e30ecff1d98090949ee36fb90af1cac932e0b72a0cda843da69c2","transaction_count":0,"txlist_hash":"6cc6e826d65d96cd9546e3e459934acfac6456a706ed5423da4c4ae0c71feb83"}',0,'BLOCK_PARSED',NULL,'eb215ac93f328792e29815c2d2b426e8ca45b36a42c99444265ec9b6ff6958b8'); -INSERT INTO messages VALUES(1445,310558,'insert','blocks','{"block_hash":"75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15","block_index":310558,"block_time":310558000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fbde38be0357a945cba7b55e1b66053133b95141db339940d7202399e7c1b2c2'); -INSERT INTO messages VALUES(1446,310558,'parse','blocks','{"block_index":310558,"ledger_hash":"4d503551c20c5d235f77879f85d947f00c5041567ddd19d307042b4662036bdf","messages_hash":"d4c9396893f2b11c371f235e13725b68384e13b0e8d2f368125d45e64e7ee0de","transaction_count":0,"txlist_hash":"56c4cf4c2b8562bd4e1721cbcfb9faa7c67e31e6f1abd95525084cc51dabf3b1"}',0,'BLOCK_PARSED',NULL,'17a6faf297bda75495b646d2cac2e6093ca6988c6ad2de472de6f90c1f7c1ef2'); -INSERT INTO messages VALUES(1447,310559,'insert','blocks','{"block_hash":"6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc","block_index":310559,"block_time":310559000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'987c1b47b1f5434772bd072c8c6c54bcdf62645935cf93b481ceefd886552d10'); -INSERT INTO messages VALUES(1448,310559,'parse','blocks','{"block_index":310559,"ledger_hash":"31fec5359649d8c4a59223216b4f190c3c8639a7b2b4d6c91a8ea26929f5247f","messages_hash":"09e26f07054048a2af8ac5c8cc2ea347dedc992e9fe1b6c12b2ad7bf27de8ed8","transaction_count":0,"txlist_hash":"7d1ba0a6152887e4a66e003c7444c35fd14a9ed3c48455e6ccd8476ff232cb55"}',0,'BLOCK_PARSED',NULL,'3203f3b7ed6da29df2b2fbce2f249a2966148245f5cc9b0898fc0c4888250ba4'); -INSERT INTO messages VALUES(1449,310560,'insert','blocks','{"block_hash":"d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec","block_index":310560,"block_time":310560000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a88ccaa9da822e18029ac996f5de3c4852b20fa5481e2470675645bc9349d7cb'); -INSERT INTO messages VALUES(1450,310560,'parse','blocks','{"block_index":310560,"ledger_hash":"298bb7532a1c40a663cad5fabdb1cab1b85c0e876b9fd350fee91983688ec701","messages_hash":"42a8cb47d6874c78b2061560207b4670bddaf27148bd04de0daa4e13ac5fca08","transaction_count":0,"txlist_hash":"65eb78129546514584c78b914d05644975681daa08d796aab35e3662a4a9f387"}',0,'BLOCK_PARSED',NULL,'9d6886e2cb999033a556fe81b06e7110fc3684489046c1ac27fe47d9f684269c'); -INSERT INTO messages VALUES(1451,310561,'insert','blocks','{"block_hash":"b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee","block_index":310561,"block_time":310561000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9aa66332934e706c0266d898825011bb38068a8e34d1c86b6b510334dc180398'); -INSERT INTO messages VALUES(1452,310561,'parse','blocks','{"block_index":310561,"ledger_hash":"918f0648deb5255921569d3938fd05d438dfc62a14b5f87335642c86507739bf","messages_hash":"30331c707eb0a4ba121e095687168967d3c8c567395d098fff7aaa96fdca7859","transaction_count":0,"txlist_hash":"3c09fa18d2fcc72e4afbca9679e46f5bb5f4d56dc2b5d4da3282c758819d5403"}',0,'BLOCK_PARSED',NULL,'9c010b38cd9c9d33049343b8e61834390c4874103486a96b49423cc48a0a4d0f'); -INSERT INTO messages VALUES(1453,310562,'insert','blocks','{"block_hash":"4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405","block_index":310562,"block_time":310562000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b42fd164169c008ff8eafa5878265e628c682c6eff45fcee0a5adbb6e30e33f6'); -INSERT INTO messages VALUES(1454,310562,'parse','blocks','{"block_index":310562,"ledger_hash":"794af8befc03cfba539c0521496a4b0c9989e30a3caa5b61fee6593daaf3aed9","messages_hash":"00cb38c4cd96fb13a8db283bedd5f8daf98d3a777fce4915f6ebd42c9fe7f40a","transaction_count":0,"txlist_hash":"e06b6edc60212d17694503e28f4d8879a12b5c9f0d75fe281e0ffea001d78c76"}',0,'BLOCK_PARSED',NULL,'37fd0e53b623711734354cde04a84adc680600ca59fbbaf9d432fa2d24b0fc7d'); -INSERT INTO messages VALUES(1455,310563,'insert','blocks','{"block_hash":"f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636","block_index":310563,"block_time":310563000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9964b11c25e440b87c6d3f853a20bbf5d9be1fcf33169489362792867bc4eb29'); -INSERT INTO messages VALUES(1456,310563,'parse','blocks','{"block_index":310563,"ledger_hash":"33acceb8a2020c1c3076a85888772b4e5a1226be90e169aea7a79f1dcae0c77e","messages_hash":"d34331ac044b779e3531087c7fb7d9f5d0a7a171a14a479babc00e5c0d326239","transaction_count":0,"txlist_hash":"4df37acbbdd1a1f9c717f58748f170d7ded7f62b686121a9f821275fbb12e25d"}',0,'BLOCK_PARSED',NULL,'9dbf4e68be83671a5362e32402e4dc0e8bd6f4c4c60af0820e64fc56b3205a7f'); -INSERT INTO messages VALUES(1457,310564,'insert','blocks','{"block_hash":"cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea","block_index":310564,"block_time":310564000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'942a4c90905dd9ebdcc1ecacd0fd8fb57ad5d87eb18275b8999840557f10c3fb'); -INSERT INTO messages VALUES(1458,310564,'parse','blocks','{"block_index":310564,"ledger_hash":"229e114ecd638e974aaa61f1d54673df550e5c6180fa316389642c967d702bb7","messages_hash":"f22a1d0575a8f148aba74f1b1fff2e0ca51d0732b780ebb9a45bee8e0f41c921","transaction_count":0,"txlist_hash":"f145d6e47e0640e5b13185eeb88286b190884347aaaced30f2a3ccf1d934b75a"}',0,'BLOCK_PARSED',NULL,'2025b211fd76774142c2489cfb892b8acfb1fd065b2e0266d81a6ee4c6c46b54'); -INSERT INTO messages VALUES(1459,310565,'insert','blocks','{"block_hash":"954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305","block_index":310565,"block_time":310565000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9b698a1e46f059069601d20e33c28625ee378bb34354f54f0a511f39e0104821'); -INSERT INTO messages VALUES(1460,310565,'parse','blocks','{"block_index":310565,"ledger_hash":"5c53d7ad75f3555e7f7eef51c5feae9d95f0b721f2f8c297ebe185a2e74d3053","messages_hash":"038a28d7e697da93577a7abcfac353d7409b0f6ce26772281a9bdd41102c5239","transaction_count":0,"txlist_hash":"db540061e4a8c10001274daf3bd8addd05306a07836ed6369388720544aae941"}',0,'BLOCK_PARSED',NULL,'097ca5beda606ad1ea6cb28df821d7f3b0b5556cd7870f995a317d448567f87e'); -INSERT INTO messages VALUES(1461,310566,'insert','blocks','{"block_hash":"3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39","block_index":310566,"block_time":310566000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da843ef2ac48a20df38190e54f58527fe705e88ca5498d9cc3ba755b075eb6be'); -INSERT INTO messages VALUES(1462,310566,'parse','blocks','{"block_index":310566,"ledger_hash":"df9192301e714c00210833532326501b47fc993a006acecb9871826c53dfa60c","messages_hash":"367b03a65f437966835c093f267676163ec0c5991c2f6f0a080be548d483f0cf","transaction_count":0,"txlist_hash":"bc9927aa4bb22304a9ea2edc24e6fe5d8d6b6d6f1083cd64a5098492e811f2c9"}',0,'BLOCK_PARSED',NULL,'2f070becdb02557771e8f3a4d371099c3b0136b41d5055629a4892a60980284b'); -INSERT INTO messages VALUES(1463,310567,'insert','blocks','{"block_hash":"499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431","block_index":310567,"block_time":310567000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3024e6c605c9c6100583b1d37eebcb07c9255c71cf048e5e7e21874e6f6f1625'); -INSERT INTO messages VALUES(1464,310567,'parse','blocks','{"block_index":310567,"ledger_hash":"ebffee7f4b8ffd4a2e29837e2f65f9c485f85bdd08504dae239a7efa29fa4d59","messages_hash":"5c7c2ebb9de95b8e27a5c367ad4b7915161cc2f953510c6709edf65a23296e6b","transaction_count":0,"txlist_hash":"98c790c8b92ac26f828848a06f10408d459b5fe2f54529f3137754d31cb103bd"}',0,'BLOCK_PARSED',NULL,'78a4387136de394da1862b4caa7c7a9fa9d8f8c55fca2078444b49fc974178af'); -INSERT INTO messages VALUES(1465,310568,'insert','blocks','{"block_hash":"ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e","block_index":310568,"block_time":310568000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'42e91ab7b2d4d3a92cd2c07b26647b3a829af45dd5ce1662af0569594483c72f'); -INSERT INTO messages VALUES(1466,310568,'parse','blocks','{"block_index":310568,"ledger_hash":"97c8786092e3685c8916143bbd2a059791b6e2ba46218c0e4debba4448b5d0b3","messages_hash":"6e4246f6142ea3858f1dd7b03ae80c544e053ef04d71e773184b9bde490a86e7","transaction_count":0,"txlist_hash":"570347e1c43a67562eedbef0f6d1a5e9945e293058c5277ec2ae0efb8254eb63"}',0,'BLOCK_PARSED',NULL,'39a1926a97f09b9f038be1a4a41053490ff08976e7b1733e0856565f13333112'); -INSERT INTO messages VALUES(1467,310569,'insert','blocks','{"block_hash":"c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de","block_index":310569,"block_time":310569000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59ecbccd4c4185ba39763c510a3b3c083e6e88ca14543ce447375c61d6e04770'); -INSERT INTO messages VALUES(1468,310569,'parse','blocks','{"block_index":310569,"ledger_hash":"a28ba712a296e1d7b16bc870c661754529f9dcc88bf8cccced55d872d3541bcc","messages_hash":"bac17b6f0ad8186129cde3d4af94d4060b72db532c3e1f16cdc8d5a7f4c7d98d","transaction_count":0,"txlist_hash":"2efe30e2ed6a9f020f3ae70db81c701cfe07d9bd24451dd80294d0692c63685c"}',0,'BLOCK_PARSED',NULL,'d4264c982bd056e8b9f9b0e892cb019d6cfef8e6aa169f6b15911d46a1f2dc55'); -INSERT INTO messages VALUES(1469,310570,'insert','blocks','{"block_hash":"f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55","block_index":310570,"block_time":310570000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3327f08da794d86dd553eef38aae7b48515b2f4b023ce17cd4cf38e038a36b9b'); -INSERT INTO messages VALUES(1470,310570,'parse','blocks','{"block_index":310570,"ledger_hash":"2f8006f26a6de634588bbf77a34c9738306b6241a65ea0b69b6ed49a52186c90","messages_hash":"7d2794a3076987332851c0eeec05e51f6413b71601cd007ca07a1e3c8b4b5e35","transaction_count":0,"txlist_hash":"2ff0d7d5e4fb10d63fdab2561aacdc90f92f0df462bd652fe58f23c076242e82"}',0,'BLOCK_PARSED',NULL,'2b661e8cc1e4464757c63c1cafcc46cb41b5981080ad2b01a923cca1add7ce31'); -INSERT INTO messages VALUES(1471,310571,'insert','blocks','{"block_hash":"b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73","block_index":310571,"block_time":310571000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1576c5968f19bed51f2ad8bf86c9d567a5122bba266cc38ca90ded54817a1ee6'); -INSERT INTO messages VALUES(1472,310571,'parse','blocks','{"block_index":310571,"ledger_hash":"d44dbf0231c9a0ef8ea7282ae6866df099c6b143fbea41abedd96a4303e285b8","messages_hash":"30c0f19d47d78b0e6a5c843a9479a712e92bfb7dfd3523939ab19a5411b475ab","transaction_count":0,"txlist_hash":"7098b0fe2e0577a4d1ccd090b3b9ffa952b5c1fccb8fbaac6b1a43635084eef8"}',0,'BLOCK_PARSED',NULL,'76d8435e84b730fa5baf845d7ec88512b1c497c9ba6515dfb04c48fa44a85a98'); -INSERT INTO messages VALUES(1473,310572,'insert','blocks','{"block_hash":"6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9","block_index":310572,"block_time":310572000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1ac129ca3416af97338a5384749a5b367f6537d5e4bec9a3274148804051ba1'); -INSERT INTO messages VALUES(1474,310572,'parse','blocks','{"block_index":310572,"ledger_hash":"27a4161e0d0ad2f65ef32d4dbb1b1bbe44a08abbc98af9e20674a8779c07a59c","messages_hash":"14e7ec83214dc2e364deed75690e2cfd70cf5116aef1cb42b8a22b55003239b3","transaction_count":0,"txlist_hash":"e7db661177bca11155df203594bdaf815bb537d525084767ac0ed6e9fe99fd5a"}',0,'BLOCK_PARSED',NULL,'d21b4328e77d8e65d6de8d85ef6dff10bcb6b53e482c073af03befe01ea080ea'); -INSERT INTO messages VALUES(1475,310573,'insert','blocks','{"block_hash":"302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5","block_index":310573,"block_time":310573000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'71f30dc2a533b9985402558a15101adf82ed6e6228ba98a4ad1c1a4dabcd72e8'); -INSERT INTO messages VALUES(1476,310573,'parse','blocks','{"block_index":310573,"ledger_hash":"63a2b48574e98a59c8e69c26886c48bd25d2afec89f7554145c4e342c6ba18b9","messages_hash":"98833b1c69e87ecde559dc204f53285facb6751897e773829c31834fbe996599","transaction_count":0,"txlist_hash":"672565a64f687b09950572bb69dc51cc874a34d8808bc861d84bb3d227da1f30"}',0,'BLOCK_PARSED',NULL,'571613e5e184fb531940a8be092f1cce99e3787e04ed451fa8f8e66e8549e4e0'); -INSERT INTO messages VALUES(1477,310574,'insert','blocks','{"block_hash":"c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d","block_index":310574,"block_time":310574000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e2d3246629c54071011de9c2fd0b81bd30e41400b162dff3fa19233ee6877740'); -INSERT INTO messages VALUES(1478,310574,'parse','blocks','{"block_index":310574,"ledger_hash":"1a27efbd3b088f35dcac8186f7eb795bbdd96273cc2359b368b6a64498ca1876","messages_hash":"0311ec09263c91fcc861f8e8204259d50751c332567e7855a5971209e6324e1b","transaction_count":0,"txlist_hash":"c681d31f5e8b1344188913364f2eac845db9d9a936b45f6eada955996b7073c2"}',0,'BLOCK_PARSED',NULL,'c60f15dd6ade7ea2a56063250ebf66c9b0008942ef45d70de81a95b8492235b7'); -INSERT INTO messages VALUES(1479,310575,'insert','blocks','{"block_hash":"fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde","block_index":310575,"block_time":310575000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a0389e381a75f8dadb44c1aba9d10ce2762d988ee4f57f7ac52db5afdf636c1a'); -INSERT INTO messages VALUES(1480,310575,'parse','blocks','{"block_index":310575,"ledger_hash":"d76913a45582bc5e55943c8944f8a1320eeb3631b32f5d8470c44b8d62655966","messages_hash":"fbbdb09df06575e75d67b47de5436ebe471a9c5c33cdafcb1aa00ee45dbed7c1","transaction_count":0,"txlist_hash":"3ea5d34d65420a54fd0a1c8424f3afcfa5eb40707eb42088814218583ff36cbd"}',0,'BLOCK_PARSED',NULL,'d474919f61b3e785e923f2643923a43119c74515110a1a6e461094ade005e6f8'); -INSERT INTO messages VALUES(1481,310576,'insert','blocks','{"block_hash":"b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5","block_index":310576,"block_time":310576000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44b830c46458e1959ed84048deaff4d296fee0c1686ec6fe7ddc58fc8dd06ca3'); -INSERT INTO messages VALUES(1482,310576,'parse','blocks','{"block_index":310576,"ledger_hash":"f7fca8d1a77ceface6731d23bfea3ec36f63d4cb201e44c36f57d01f9107d045","messages_hash":"0d4771b4cac31dbc2f51e12117a73f5223fe6993d8a7e6c3ac9fcc87de7bb230","transaction_count":0,"txlist_hash":"19eafc5f2e2d7ec141f9f2bd1d5c7fb0b380adead15654553498e3af5bba0ea2"}',0,'BLOCK_PARSED',NULL,'db5421f2adeabf43f5cff5bd24f156d539c9bface941b9a20c54124940906114'); -INSERT INTO messages VALUES(1483,310577,'insert','blocks','{"block_hash":"a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3","block_index":310577,"block_time":310577000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7216212a6ed9453c7f0c599a3fafac400a30a9094026ff63af4967312cef7139'); -INSERT INTO messages VALUES(1484,310577,'parse','blocks','{"block_index":310577,"ledger_hash":"1cdb07845fec337dcde9404762ddf77a14355e5b78817964f378a830427fd197","messages_hash":"8e42b3affbcf5935286117e73440608272964f3ed3ccfd244a7bc4e598767e0a","transaction_count":0,"txlist_hash":"be512460315bb9b670cd1b9e78165df49fc17a8851dd7b66bb58a0e83bb4e487"}',0,'BLOCK_PARSED',NULL,'e6678f60bc8ec4da723caf90ee338c578ba2b28f2aea0103386f0aeff3dc3dcc'); -INSERT INTO messages VALUES(1485,310578,'insert','blocks','{"block_hash":"f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf","block_index":310578,"block_time":310578000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'94762c55c9a4eb5acf89c98f79d8ae657b199fde59eb8a3d53d424b71a45c5dc'); -INSERT INTO messages VALUES(1486,310578,'parse','blocks','{"block_index":310578,"ledger_hash":"19640d7fbf5a9a85606c6b6971b3039bd870e8e11602c98da1c83269eeee9eb5","messages_hash":"f92169e487d9f1b1587939fd1398d677b9a8612b24aadeb6f6c33138bde395fc","transaction_count":0,"txlist_hash":"56dee75f67260fc83f55a276ed430bb1c9495d91b54d323a3d0cc427686a85c4"}',0,'BLOCK_PARSED',NULL,'ac24753e17662468e91d8f6fa5fa705313fbd61428a985f6151a46f44ecf88ab'); -INSERT INTO messages VALUES(1487,310579,'insert','blocks','{"block_hash":"672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38","block_index":310579,"block_time":310579000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8317e7251ee049359c744695dc81d2f57816867c022e1ccc7bf5536679bffc6c'); -INSERT INTO messages VALUES(1488,310579,'parse','blocks','{"block_index":310579,"ledger_hash":"2535535df8e8250cb90972418faa698e79a766a42d0321f7bfd2d68426fe2c6c","messages_hash":"91a42777b228ae160da8ef3f3f522ee6b4bbfc4fa55f0fa13ad93af6bf9ca85b","transaction_count":0,"txlist_hash":"c9a5cabe5916d0d169e06c7528835c5fcb00af3515e0c44e5e17c567dc52f1ee"}',0,'BLOCK_PARSED',NULL,'631619ca09c6bb4e48d0a6ac250448289f13e47ef259aae55c1dce06b8f47850'); -INSERT INTO messages VALUES(1489,310580,'insert','blocks','{"block_hash":"e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13","block_index":310580,"block_time":310580000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11eb757444aca1d09e2834ccadf5cbe8d12e4a6dd0fb61173dea0e71f14bb668'); -INSERT INTO messages VALUES(1490,310580,'parse','blocks','{"block_index":310580,"ledger_hash":"48f6ae3b5d93cf4b2d6deaa8dd30fe2486cd1f98020a3121add7cfe9f64d0d1f","messages_hash":"0398e37743a453d86ce9dbd40180ec3b7d704f1f3818f938a73984a91057b829","transaction_count":0,"txlist_hash":"b484963a876ccbf57728287a7cae8ad916cc4523219b7f2fd6c42bbdfaa5ead7"}',0,'BLOCK_PARSED',NULL,'4031e9ff740b9e4e9f32adfc63855dad13e550fe1e178a93cc1f59aec10f4fa9'); -INSERT INTO messages VALUES(1491,310581,'insert','blocks','{"block_hash":"baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a","block_index":310581,"block_time":310581000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a90d941d7150cbd1c1f34a6149deeff5c1a9a313a87aeaf5f1f706dca10662b2'); -INSERT INTO messages VALUES(1492,310581,'parse','blocks','{"block_index":310581,"ledger_hash":"c97da518cca598c170a42b948fd0091798370a2d0672788619b42cdd5386a2b4","messages_hash":"0f2f71ae9e55d958b0d725dc9f1bcee3b5a2fabfe19414e84898c7f921b081ca","transaction_count":0,"txlist_hash":"301ff101dba0c28f5603b3776bd17f373f30a5e77c8e619dee30e323322e4680"}',0,'BLOCK_PARSED',NULL,'a18e39696726519db06265cca19703e3d18b393b5c6867a3de77c984b2f235b3'); -INSERT INTO messages VALUES(1493,310582,'insert','blocks','{"block_hash":"08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c","block_index":310582,"block_time":310582000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5c377eae57a8cfb968a33134d961f19b2c80932acb1206b5e521ac6246d6082e'); -INSERT INTO messages VALUES(1494,310582,'parse','blocks','{"block_index":310582,"ledger_hash":"0663d39d2f80ed99eb3e017a9bf8626344ce6f220da4c86f3cf29b250e9a66f9","messages_hash":"17de9b8c13566e250cafb691f8c46ba6bfe0be93848af606d502a8ae75aff56f","transaction_count":0,"txlist_hash":"3e8a5d33e8340bc7e1c96c95f4eece8320807dd01e7f66a53f9afbcd26b19fa3"}',0,'BLOCK_PARSED',NULL,'97df6c31a0751e2ce8c344185efb238cd1344eb245c2de9bc9da7aeb8b6f1a54'); -INSERT INTO messages VALUES(1495,310583,'insert','blocks','{"block_hash":"22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4","block_index":310583,"block_time":310583000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7402d2a21f03312b1313f1eca87ab3ad90670e62d542dbc2891d021e5894a3c4'); -INSERT INTO messages VALUES(1496,310583,'parse','blocks','{"block_index":310583,"ledger_hash":"948c8ab523cc1b2c514d2023f3ec9da1c5abd99312a52083fbcafdb3cd584d55","messages_hash":"41b79447a81a386694351e4e7da7eb3a7233e95a226ba6ec752414c8cf10c771","transaction_count":0,"txlist_hash":"60d468a45c64869425508b88e3fbe166690c3009fcf33e3292fb2da145079044"}',0,'BLOCK_PARSED',NULL,'a7b7032346e39ca87a4c20ffc0fd658f088f7ed6961f2726a2fe7493cb75e4b6'); -INSERT INTO messages VALUES(1497,310584,'insert','blocks','{"block_hash":"db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b","block_index":310584,"block_time":310584000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c910151e8689b8eb646ae02a24b2123fbab04ef680e28fb8e16c1bb777fd8d3b'); -INSERT INTO messages VALUES(1498,310584,'parse','blocks','{"block_index":310584,"ledger_hash":"756c6163f2bb1f47c57ca55ca571793115cb650efd08096e67ae5f78c26092f4","messages_hash":"ddbc40c471276db0176d1d76f57a552344267513223b1f902745e1350bd8a1d0","transaction_count":0,"txlist_hash":"ebebd15c29221496c6547f786ec67bfe72278cbb8e15fb96737a30094880557a"}',0,'BLOCK_PARSED',NULL,'bee611b37ba36f297444e39e36dedbbb45b0ad0232c286200b9559ea92f665be'); -INSERT INTO messages VALUES(1499,310585,'insert','blocks','{"block_hash":"a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb","block_index":310585,"block_time":310585000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6d9974808ba401fb8bbf3fa0e42d85b2633ec12cf537d23a0ee48c06c80c79ab'); -INSERT INTO messages VALUES(1500,310585,'parse','blocks','{"block_index":310585,"ledger_hash":"0e5ff2b0d4c06e384768b425e4553c1c8e41dd89f0aae6c955a4b5f6cab16f34","messages_hash":"401a2d467537d5293b7dfb6d7d4b7954316bdbafb1cdd87a853c6904c9f23fb3","transaction_count":0,"txlist_hash":"733e1df46cad658a76f3ae6bd51acb09be0932fdeb5f92e99b94bd5bec78ecb0"}',0,'BLOCK_PARSED',NULL,'027f44535cc72898feaa85ce7e022c55ca373df3602c4d4a4d2ba89f0a664654'); -INSERT INTO messages VALUES(1501,310586,'insert','blocks','{"block_hash":"c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7","block_index":310586,"block_time":310586000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'27d305222f1d60019faa251cd9ae7d0572e9216941c3d21468b0124a21f96810'); -INSERT INTO messages VALUES(1502,310586,'parse','blocks','{"block_index":310586,"ledger_hash":"396eb8297b2b514b584d2f799b6cc8ebd613b5eb443bd01e68055ae8235bef16","messages_hash":"447c626e05958d55f2184eb8716dc80c3feba04674fae3b1500d6a7577fee914","transaction_count":0,"txlist_hash":"3ead47e29b52236c485f6461d73c47c076f23aa5c96d2462adbf265966426f5d"}',0,'BLOCK_PARSED',NULL,'30fa8ad529d52e13b35a398b1b769e3ea56b82c93a80c5e86cd353e4bd359078'); -INSERT INTO messages VALUES(1503,310587,'insert','blocks','{"block_hash":"6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa","block_index":310587,"block_time":310587000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d38ec11a4e80a4d8958b66d5ea95610cc65fb058baecddebc9535227f465199'); -INSERT INTO messages VALUES(1504,310587,'parse','blocks','{"block_index":310587,"ledger_hash":"7da56a4b5bc6939f12cc9a2b4ca24184978cad34f1a457b4041de83bf29ae15b","messages_hash":"524f8d3ec616b08760af074c959d424bd751280eb0557bcbc242dda7f55eb113","transaction_count":0,"txlist_hash":"94d69dc7ecb628956923ed4d570fe0da3ef0c367066d76252f656f3774347938"}',0,'BLOCK_PARSED',NULL,'e6109dd1b02cfc628cd40217ff8768c7df8770b79fdd145064d44e341741d49d'); -INSERT INTO messages VALUES(1505,310588,'insert','blocks','{"block_hash":"d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff","block_index":310588,"block_time":310588000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7f09560e177ab4401b1a883605e84bc4c639fefdbf222ca0ee2c3584d640f3d8'); -INSERT INTO messages VALUES(1506,310588,'update','bets','{"status":"expired","tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef"}',0,'BET_UPDATE',NULL,'30d02c97258ec46f83d34f73da682ae086e6aac1844058a1ded4bca0a1453c8c'); -INSERT INTO messages VALUES(1507,310588,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310588,"calling_function":"recredit wager remaining","event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'55f8c024d2979d70d1288fa4341e70284bc65810c2529d07b37a362b28cf8460'); -INSERT INTO messages VALUES(1508,310588,'insert','bet_expirations','{"bet_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","bet_index":488,"block_index":310588,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM"}',0,'BET_EXPIRATION',NULL,'004667d88c0c770559b93b21432e000e74d8ab3f5a80e8c39b1a66131b82f68f'); -INSERT INTO messages VALUES(1509,310588,'parse','blocks','{"block_index":310588,"ledger_hash":"4b743eb87cb4dc115c78f353e62611598cab891bc16c921d3cfb279ff12a3c50","messages_hash":"3bd9c63c03444c338b7072b4054e589c254a7a7dc10315cec03b210bca0e04b6","transaction_count":0,"txlist_hash":"b50620604ec72308ff19abeebe034e9ca8d732d2d21e765ff2ff78940076d62a"}',0,'BLOCK_PARSED',NULL,'43465dc4a59fa9c99b94d23aa355bddf8e71d71b6c73a3851865b06581342c74'); -INSERT INTO messages VALUES(1510,310589,'insert','blocks','{"block_hash":"4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da","block_index":310589,"block_time":310589000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9d7fbfca7ee14caa217ba6f229e06bda191266df971edfda45564a10bc6ba265'); -INSERT INTO messages VALUES(1511,310589,'parse','blocks','{"block_index":310589,"ledger_hash":"046efaa061d244e1f2da8a7814f2c59fa13d10c50787ce1a33ff11ffff1a2c27","messages_hash":"c228af4047b3efdd478e707b16dce13c0ec025ab44c015e70a3ee6a369ae6e27","transaction_count":0,"txlist_hash":"78bdf68341d15bca6e325624feb58f527fd0256d044dc90dfd0c5874dae32f4c"}',0,'BLOCK_PARSED',NULL,'efdc0851d6adb7b52d8b73b027137f6914490322f95d77b73212df0fa4416d1b'); -INSERT INTO messages VALUES(1512,310590,'insert','blocks','{"block_hash":"7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6","block_index":310590,"block_time":310590000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9e1432678bf51209653bc86d459714e3ca83ca0e4f4df2322e61ac5dd4014bcc'); -INSERT INTO messages VALUES(1513,310590,'parse','blocks','{"block_index":310590,"ledger_hash":"c0387ead71f6ecaeb514e6dfef129921194912295b3e317becc3d5206bafdff9","messages_hash":"461799c504a0e097e2bf93811b662acb956fa2477d1dfc4ace8ea09774407056","transaction_count":0,"txlist_hash":"c4f9e894ebaaca5ba7bd4c20106b670025db1438df60700fdb4d69032277f740"}',0,'BLOCK_PARSED',NULL,'3fae05ac354f86dcf5bd72cc6782315310a73b72643953c70edcb74e114e3724'); -INSERT INTO messages VALUES(1514,310591,'insert','blocks','{"block_hash":"9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7","block_index":310591,"block_time":310591000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'621a0342563af73bcd316aec889969798dc252f4df8a0f47bfb01697d8111f77'); -INSERT INTO messages VALUES(1515,310591,'parse','blocks','{"block_index":310591,"ledger_hash":"292d47eda1bbd30200a44840aa067e3b581a38406fc103d6d4e21e81a6971d32","messages_hash":"29a80a2ffc13ce9eeffbbc378b147df2ce2f6fa4e966fcc28ce45acad0706ef2","transaction_count":0,"txlist_hash":"a3af6a21611a7407ff02eab2468c377d29814f84add22f19f3fc1bfbe0d9694b"}',0,'BLOCK_PARSED',NULL,'6860972cff424d12439199ae57303a3ea29aa8341e7e5fad21b066d7882d1bda'); -INSERT INTO messages VALUES(1516,310592,'insert','blocks','{"block_hash":"d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3","block_index":310592,"block_time":310592000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d7fd2f56fc70f8ce167bb95cbb0ac1977db67aaf5d93c30c736a2622c6bfb495'); -INSERT INTO messages VALUES(1517,310592,'parse','blocks','{"block_index":310592,"ledger_hash":"7558ca835974df67db436b22ae880e0519654f4d6d9bf79f44e1511d647548da","messages_hash":"a5aa7c92c9ee4a2718b8d6438f3e3a498cf5df316c573c9d4a22dbf1837e2564","transaction_count":0,"txlist_hash":"daf91d91dbbe9f77915568b355565696d4da404095e6b547bd2db3587113e403"}',0,'BLOCK_PARSED',NULL,'f3e48d32be5423ac05bcbf73333426d1b2bbd86be5e19f1cd5e12502d71975ca'); -INSERT INTO messages VALUES(1518,310593,'insert','blocks','{"block_hash":"97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b","block_index":310593,"block_time":310593000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0700375efd44eddf0d9d3f8ec1ea4b156614946c9a85e89f3d800bbc332116ab'); -INSERT INTO messages VALUES(1519,310593,'parse','blocks','{"block_index":310593,"ledger_hash":"470979540b6e201a9c09b177b9f0b61251dc588df9d1078ff768461d0126e553","messages_hash":"be434fd8b2825800ff54fc268bb4285a96df24fa6733057ac4bf6dc3c6a5f10c","transaction_count":0,"txlist_hash":"b5c3b0df9648788b62ccf2fc881924438c4409b828117e2db502b42f2aa800b8"}',0,'BLOCK_PARSED',NULL,'22c317eaf2f7168b15146d9ddaab24038e038d9385e2c656b8e1307b6c1e72a9'); -INSERT INTO messages VALUES(1520,310594,'insert','blocks','{"block_hash":"f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015","block_index":310594,"block_time":310594000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1de32d32bec8609eee43db1b1cb293c7f8847850b18facf1a8cbb66829d694e7'); -INSERT INTO messages VALUES(1521,310594,'parse','blocks','{"block_index":310594,"ledger_hash":"cf27c790b1bf7de710bc370c74cd55b8b720867a3d016637d6d01b469d6c1bf5","messages_hash":"2d14f203ac54a9b0121ce13bc2cf4d0ac38352c9138c09cffecb0e730bd70a22","transaction_count":0,"txlist_hash":"05b3baac4f1a13d3b2f287b6660be568bde7646bf4d2dcbd58928f8be1b5751e"}',0,'BLOCK_PARSED',NULL,'8c97e3477c0260d7f16373108b2929227a80c173dd73d4284eea9e45067dcf77'); -INSERT INTO messages VALUES(1522,310595,'insert','blocks','{"block_hash":"0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66","block_index":310595,"block_time":310595000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae529680d7d7f32e290582280cd5a4cdde5411ddfe20ad994d8ffdfa0e8fc8f8'); -INSERT INTO messages VALUES(1523,310595,'parse','blocks','{"block_index":310595,"ledger_hash":"51f45c2f8a54cc0e8d0e668f1892facada295aae3157215beac73f25cbfd6e13","messages_hash":"a4d74b3830b5904f7b812913e66dc66735829e9a12005b01b9b1ea39284029e3","transaction_count":0,"txlist_hash":"2bd0b4f8dcf78006ab0a7aa8dd4d71c6598e9162d772e84c4701bc4c8d45f6d0"}',0,'BLOCK_PARSED',NULL,'dcf722eb0fdac3d467afb50d19fb3e695fb99cf6e36aa4590a12587989bcdac0'); -INSERT INTO messages VALUES(1524,310596,'insert','blocks','{"block_hash":"1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688","block_index":310596,"block_time":310596000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'781f062ff09f437b71bc19c32e9dbcf202ab88df92cdb7f2f2a56d37d3159508'); -INSERT INTO messages VALUES(1525,310596,'parse','blocks','{"block_index":310596,"ledger_hash":"829638e299bf581dd5edfea61d4b051af219b50e344e6bf487b4742d2469e73f","messages_hash":"12c55abea0e3bde23b8d33a4f781f5f16559ea79b6906adcd7586a587733ba15","transaction_count":0,"txlist_hash":"c7a197d075a2b5d5bd3267ae10eba1596cbc93bcbf77830b4d32230c27fa72fe"}',0,'BLOCK_PARSED',NULL,'6d2a61249d34bafacf6513c6be0a6e345e9ce18ad1706df885652b645ce9f559'); -INSERT INTO messages VALUES(1526,310597,'insert','blocks','{"block_hash":"490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd","block_index":310597,"block_time":310597000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bd4155907feaa31dab988330bbcbb2bfec901228743c9f8ca5f0eb5eab0081c9'); -INSERT INTO messages VALUES(1527,310597,'parse','blocks','{"block_index":310597,"ledger_hash":"bb4a411c7aba4fc72004771f88da31ce729936ba612f2eab99c1e1a637730ca5","messages_hash":"941fc2d522943579830d8bcf66c2fb8b5f40527478425dbaa03fe1ebaa7b4798","transaction_count":0,"txlist_hash":"c648adc37b10d6b7c9fc0e1f2a4b5c8ff9ec86fc035e4124c576d8f118c23503"}',0,'BLOCK_PARSED',NULL,'9fc433e2f006bb8e14f3cae1f4d29643c1542d53a2322665195b4e1cbc6a7890'); -INSERT INTO messages VALUES(1528,310598,'insert','blocks','{"block_hash":"8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a","block_index":310598,"block_time":310598000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2097197ef578a691be177d26a0ab46dc973a81bc68029e747c5ace0203ce6ea5'); -INSERT INTO messages VALUES(1529,310598,'parse','blocks','{"block_index":310598,"ledger_hash":"5982c8df2e62829447ce3b2bbb0864f2d732c508aeba03fab92382ae0096bff6","messages_hash":"6d71c4becfca063245d125dcc92d00b9129597411436c189b574b02a3169e1e6","transaction_count":0,"txlist_hash":"b23f0702a5066982b19875ee3aeacce21c97adacc44c5ae6bc1be94f3edcfc93"}',0,'BLOCK_PARSED',NULL,'50ccc05982b877dbcc4d1435dd67cab98588f6d5732b14af1a1ce5de245d3f88'); -INSERT INTO messages VALUES(1530,310599,'insert','blocks','{"block_hash":"71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8","block_index":310599,"block_time":310599000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07251708e5f907f522ed9f54827ca595bf60664afcde71ac24296453134566fc'); -INSERT INTO messages VALUES(1531,310599,'parse','blocks','{"block_index":310599,"ledger_hash":"330ce22a1553aea1b050b9e14565015b3aeefc4244ee64d801591a53be9dac17","messages_hash":"c8f7a4129b3f0b508d65be8eaf0215da3e2fbafb5ea9d0aa3e10c9b6d3fa225f","transaction_count":0,"txlist_hash":"cd5848644ac2a8bf3fe63736a96ce91345ecfc54c943e72e6e24b8cde5ced243"}',0,'BLOCK_PARSED',NULL,'18594d98d377eda2e088619079be338e36409d0e3ae79c0c3d9bb519ec2f8842'); -INSERT INTO messages VALUES(1532,310600,'insert','blocks','{"block_hash":"f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a","block_index":310600,"block_time":310600000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4bb999a144d1531d1093a01177f140b348b91a4a75626bbd5b5465173013dd0d'); -INSERT INTO messages VALUES(1533,310600,'parse','blocks','{"block_index":310600,"ledger_hash":"1f012bb22bf3b313141af4a62287dd888877de2b59cba7b9d04e8b78f13ab989","messages_hash":"a3acf54f3ceeaf750ecf644a865e5613620b2f75eb28015149b6dbe38955a7fb","transaction_count":0,"txlist_hash":"8d9bdfd600f2ab1f9df6b51b3849792e10973ce73b872ab6e8d6da2b5606af53"}',0,'BLOCK_PARSED',NULL,'68a175b607e727d3a0d64ad4c97fe84cb3035db0b9b744cc7c6e1c8699046737'); -INSERT INTO messages VALUES(1534,310601,'insert','blocks','{"block_hash":"7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd","block_index":310601,"block_time":310601000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6668adc1d660d3a08e4877aecbdb2bb77ee10e58c62bddae02effe69d4e06419'); -INSERT INTO messages VALUES(1535,310601,'parse','blocks','{"block_index":310601,"ledger_hash":"a671374e89b156243374d38ec1a279dddda45a5dfb0919e4f65b9a8191ea954d","messages_hash":"b62511095287bcf37d6f450bce6ab2b3f3681ae5f09a922420d5b1a5f42d6dea","transaction_count":0,"txlist_hash":"2acbb771db97fb8e8f0963b813502965908a680d2fd86446a33be34e3744e81f"}',0,'BLOCK_PARSED',NULL,'c3f6a0c5d6b43fe8c0390fc86e53671563fa7e7397a55da79dff3c33902f6d52'); -INSERT INTO messages VALUES(1536,310602,'insert','blocks','{"block_hash":"c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2","block_index":310602,"block_time":310602000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'70b0b5147f0207b5af6a663ef0a2662ae1cac49d5896a6146c8d104100bd5348'); -INSERT INTO messages VALUES(1537,310602,'parse','blocks','{"block_index":310602,"ledger_hash":"829ca2a90dd76a26bf72e16fa59b324a2c904821f54ecfd9cc00755beba483d0","messages_hash":"3b19c242e370e5bbdb0750d190f6ceb09dc1f263db49fb718c550a82e8b9edc5","transaction_count":0,"txlist_hash":"243a393f2fac01b0ee4e10351a0cdd703509ca63d66654bdf578f3eca689421f"}',0,'BLOCK_PARSED',NULL,'7ed0fa53a1bc5dfd4b8d07aec832817ae96f678148181d6f36122c9ef91236bf'); -INSERT INTO messages VALUES(1538,310603,'insert','blocks','{"block_hash":"44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c","block_index":310603,"block_time":310603000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e2663f0b0188270cb3a76708445434862300e22f4e79bcbcf36b05456869a3f7'); -INSERT INTO messages VALUES(1539,310603,'parse','blocks','{"block_index":310603,"ledger_hash":"58081fe32b8b77c4c807d2aa86ebef918c21242eb33d06e3ffba6701d2655d69","messages_hash":"e0db5a4e1015ca8719eec89dfa230f27341caa184eb2da25224bbc9008862d17","transaction_count":0,"txlist_hash":"6bd040dedbdefeb0e3398fb4533bd2bcd99edcbcaec5319ccde5e7a5403017d7"}',0,'BLOCK_PARSED',NULL,'a35752950e96c60976c8ba7884af2fe3a6c4d4c17fd059cd6a622574817d9623'); -INSERT INTO messages VALUES(1540,310604,'insert','blocks','{"block_hash":"36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f","block_index":310604,"block_time":310604000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c909b3d1fcb4783c62e9f7c178a0fdf2c87ce5b05bc047f99fa0c0ba45112950'); -INSERT INTO messages VALUES(1541,310604,'parse','blocks','{"block_index":310604,"ledger_hash":"e130a31f9ad532e80fb8a10076f1b99d230a19070959e7c0eb0f2d59bc00fe36","messages_hash":"3838f1eed88215d65561721a1be25e04f00332046005757c161729d39fe7b89f","transaction_count":0,"txlist_hash":"50dfcfb2871929ffce0a82a85a5ee11a125109a774b34a9ec127ab6bfdfa3b8c"}',0,'BLOCK_PARSED',NULL,'6acec7923c6343e13f75c5451f52c88ae72f71a8d99097664b7a653ed3472eec'); -INSERT INTO messages VALUES(1542,310605,'insert','blocks','{"block_hash":"ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9","block_index":310605,"block_time":310605000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b5917287b85fcbfb42ad71fac685f319c3dbf3954101d8c0fcdf789d04e90ccb'); -INSERT INTO messages VALUES(1543,310605,'parse','blocks','{"block_index":310605,"ledger_hash":"8c43535f2ea91a8a051f2ea6bd5434cfcadace5836e6e04a958a3d29ef76b54c","messages_hash":"1789cbf52be6780c3e98c877d87ad20ee0964befea76ec1de63c93c75c68d492","transaction_count":0,"txlist_hash":"3427c9e8c0ec9016a521b4ec842bb5cf3731cd747b514a553f222e44a3d3def3"}',0,'BLOCK_PARSED',NULL,'67b1231d591a8140c41644625c24d7fe785387401985042fb83d2dbb91cf1e27'); -INSERT INTO messages VALUES(1544,310606,'insert','blocks','{"block_hash":"9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f","block_index":310606,"block_time":310606000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b71eb925132abf9fd5518efed571ffc5c575c5b49002568e78b1a6c56b173f49'); -INSERT INTO messages VALUES(1545,310606,'parse','blocks','{"block_index":310606,"ledger_hash":"cb0466214b24bb1d2dd3a0eba9a62fff97742f3b00d9d5efe04293be34b247d5","messages_hash":"b1397dcbc26ac5a35c2327bea11eec27e93d01abd372c7702f8d6eb1b06779ba","transaction_count":0,"txlist_hash":"c11cb503ed27d64acc8b2363a34617edbbf35bb701f21b87c70eb4966f7eb035"}',0,'BLOCK_PARSED',NULL,'3f86965b82ea2b2b9bbc62cf6e1d0e77763e2c79a4ebec2d3dca0d0944776b13'); -INSERT INTO messages VALUES(1546,310607,'insert','blocks','{"block_hash":"ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d","block_index":310607,"block_time":310607000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'08119afad470462faa52c02cd4467c596803592a1a41a7f81cea26410f5922d1'); -INSERT INTO messages VALUES(1547,310607,'parse','blocks','{"block_index":310607,"ledger_hash":"2f2504389bdca2a1acc0459bfa5275128a92b0d2a09d1aee771d400759fe6a26","messages_hash":"3bf52165aab0d600ac023e2b06f6b73b30a4af197606ce7d88b6fe5c652c003b","transaction_count":0,"txlist_hash":"12b12d0888cd3a82d149f4f8c136000c26a49f97f318c76dc90fcb4996bc3064"}',0,'BLOCK_PARSED',NULL,'b7158dae84cb5310a67f9508d1cdc4819bf2d90e0826f3a65dc7c82de080d2f9'); -INSERT INTO messages VALUES(1548,310608,'insert','blocks','{"block_hash":"ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846","block_index":310608,"block_time":310608000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aa3bc1bc2f9a76d2ec43c12ea2f6863ab349867a252500aef0549f580bc5b8ad'); -INSERT INTO messages VALUES(1549,310608,'parse','blocks','{"block_index":310608,"ledger_hash":"4e855f5327460e76c36a2a9a4a8fa470822ed1f0aada17fcf2436c7b2586c7b4","messages_hash":"6d616648bea1e6d01933bc3db17a671f89833a9f78c856ffad4531701522de42","transaction_count":0,"txlist_hash":"9fcf0c090ae0aa70fee65fa83a35cd15311ef460f5fa501f6f842c29e2865856"}',0,'BLOCK_PARSED',NULL,'b5f3671f098fb4ed0688f82b1ac26e604ed45397247e18163dc2731d1fc25cc5'); -INSERT INTO messages VALUES(1550,310609,'insert','blocks','{"block_hash":"83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455","block_index":310609,"block_time":310609000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'767ccffe21d71eade39af9db724d493194f72437da25b07f1c2b0a56072c5247'); -INSERT INTO messages VALUES(1551,310609,'parse','blocks','{"block_index":310609,"ledger_hash":"724bd0faffc7b39a6e88fde32041767fa5f537ed2f1eae619d52ee6e9fdde52c","messages_hash":"fd2a92876b31307ebaae154a3f5febfede1470095425900116cf3354017e5609","transaction_count":0,"txlist_hash":"7e09b9bc2a4a6bee758dbee3801455b3c84998bccaa40ba8e1a62eed98fdf40e"}',0,'BLOCK_PARSED',NULL,'881d15466439239be8c34d747766928f8f110df7b98c95bb92b79bb1acbaab1b'); -INSERT INTO messages VALUES(1552,310610,'insert','blocks','{"block_hash":"f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9","block_index":310610,"block_time":310610000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a74d4bd66277d8e9ef803fd630510c6861019d9baf98d082710288970821750'); -INSERT INTO messages VALUES(1553,310610,'parse','blocks','{"block_index":310610,"ledger_hash":"6459bf81897bd97e8107de9600cb7004c65112388402e3c3c58543e09317a723","messages_hash":"f4cb0d75a0befd89ec8f672255621c4f00c54b2009cbdffc5d67691388b9df18","transaction_count":0,"txlist_hash":"b5615378baa3bd212119929c04f03e2ec798efc02eaf92232b393e1cebf21cf4"}',0,'BLOCK_PARSED',NULL,'e0b6aa597b80968310300136398039989602dab8b9d7434a7be23ea72f6f672c'); -INSERT INTO messages VALUES(1554,310611,'insert','blocks','{"block_hash":"6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89","block_index":310611,"block_time":310611000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fdc9e53b5ebcabdfd6ab7a38cffe48845e5fbd0f7de4ddb0c85eb06a8b80c5eb'); -INSERT INTO messages VALUES(1555,310611,'parse','blocks','{"block_index":310611,"ledger_hash":"7805ff535922d15a7faf37f4ba517e6ee61775f71e40e3e1f077afa9acaed282","messages_hash":"49a6a4e246b8ce6a0877dd3e7117c2ea81584a2a33ccea851fa9c6223c75f045","transaction_count":0,"txlist_hash":"f026a93859c733bd910f0341d53802b2443e5efe0a7a7dedd3b0e3bcb7cd6f07"}',0,'BLOCK_PARSED',NULL,'d7139aff89926a4223208eaf0c113c03a28cde065eecb32dab6d6359800aa5b4'); -INSERT INTO messages VALUES(1556,310612,'insert','blocks','{"block_hash":"08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd","block_index":310612,"block_time":310612000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10811dc9fa9396752f2b23978e200835f5c1c6d60c63af4298b3547f1c91983a'); -INSERT INTO messages VALUES(1557,310612,'parse','blocks','{"block_index":310612,"ledger_hash":"04f908169e879b7fdfeb29f70daa42617c5704b39b2b911b9a33ce64bbf8b92d","messages_hash":"aaebc56b3d648e9bf2da78ca8b3d3c4ef1b8e0ac1e9da8b69519ec3d48a26174","transaction_count":0,"txlist_hash":"b67528c85ae55a57b1dcf3501d340c280af942e4078a1c9a39e9ea63ee9570b5"}',0,'BLOCK_PARSED',NULL,'a9a6aacf14c0e9a6e8852b7ac121d5c6863245bcc88b9aba7edf257a5b956706'); -INSERT INTO messages VALUES(1558,310613,'insert','blocks','{"block_hash":"c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53","block_index":310613,"block_time":310613000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bc26e3913fc78e0fe2effb0aab7b3eb4752dd11a3801c51274a6dbca093041c9'); -INSERT INTO messages VALUES(1559,310613,'parse','blocks','{"block_index":310613,"ledger_hash":"a4fcaabb9f8905ef4237580183f934a039175162518328bec2b4fbad00092a88","messages_hash":"37e4311b44d7d6644d8abe77406672d1d6686e70753756f3a2da8ef0307a352a","transaction_count":0,"txlist_hash":"d6e9204ae7b7c5f887a25fc06ffce731e1c4f3228ff039e35be1d321276f81a2"}',0,'BLOCK_PARSED',NULL,'0d26fd5566c7a31b495b0d1dad8aa31c06a643024cb1cebd8f69519c6fcf97b5'); -INSERT INTO messages VALUES(1560,310614,'insert','blocks','{"block_hash":"e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b","block_index":310614,"block_time":310614000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'33abdf917203d34f4508c5a257380a9a7005e34ea69c22db8d39779e831cb7d1'); -INSERT INTO messages VALUES(1561,310614,'parse','blocks','{"block_index":310614,"ledger_hash":"656b5b57178f9682b70c9d723c08be8694ca94e6dd93f7cac61f83cf38d00ad9","messages_hash":"2c42dfefff1701eee9fa988f6074290928a67b50ba8581afdd8ae51b1d1a9152","transaction_count":0,"txlist_hash":"d1459bf2b59c0c441b8f00889669c3c6f645f66f608eeb623576ed7044bf37e4"}',0,'BLOCK_PARSED',NULL,'8f263355cee2a055e4667f570b19a2554ac839951998dff81d3f0e367501230a'); -INSERT INTO messages VALUES(1562,310615,'insert','blocks','{"block_hash":"fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc","block_index":310615,"block_time":310615000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aed705eff2f0401bc25f5d396e2089811b7166443398393e7cf93b56c1702424'); -INSERT INTO messages VALUES(1563,310615,'parse','blocks','{"block_index":310615,"ledger_hash":"935e774a5ac52c24cfa4f6dafa08bf87de895663d349b4a80e30408ad0e78ad0","messages_hash":"1480014156b2451a43376314d78beb3b3d02a6e832d6611ae0e97937359da78a","transaction_count":0,"txlist_hash":"b35468ce63479f2f7cd17f791e8a66b3a1b42e716a7792a2213bf8742978f9df"}',0,'BLOCK_PARSED',NULL,'84aa5bb43f4c0ab2d9e96533362ddae6354225bcfe24888d4b95ea6b0d402f2b'); -INSERT INTO messages VALUES(1564,310616,'insert','blocks','{"block_hash":"008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84","block_index":310616,"block_time":310616000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'288222dae6f4c0648ca5ae7f7c5703a8c1319e14525a651845816259832f2eaa'); -INSERT INTO messages VALUES(1565,310616,'parse','blocks','{"block_index":310616,"ledger_hash":"a69373473bdb2a81d17cfb98c152812804069d375b0eb6a1c08437187070c0a7","messages_hash":"2e72ed8940147ea9561102e38ca3e7650947f0178be4b75ee50e52ae6fc0dc96","transaction_count":0,"txlist_hash":"51e2ca4af76f00e81e5f946c53f23e1ee7ba4ea7603832ef77c374bae59afe3c"}',0,'BLOCK_PARSED',NULL,'dbea55855bb677643358a0abc1eb4b4beee55fab5f4db7ddc02464d752d8eaee'); -INSERT INTO messages VALUES(1566,310617,'insert','blocks','{"block_hash":"cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29","block_index":310617,"block_time":310617000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'436a1aac42b7a970dc6734c1b7c8edb3268848ffe626044874810b93496a6a30'); -INSERT INTO messages VALUES(1567,310617,'parse','blocks','{"block_index":310617,"ledger_hash":"8291e17379fd2e1214612151f8bcce3bd3b8bc409e528b4b39e3d341cceb4d66","messages_hash":"a04be794dd7cc993bafa6463eff3f493f56a572172b7ffcfb6c5e723777b8862","transaction_count":0,"txlist_hash":"55776209dc06de6d494ddf7866b805d94f4371598273d4dcf23b510e72826cc3"}',0,'BLOCK_PARSED',NULL,'4214c6b54bfbe4a9a26a8250ea71166fe5bfd8e54992f162b41b6b7f32edc144'); -INSERT INTO messages VALUES(1568,310618,'insert','blocks','{"block_hash":"f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b","block_index":310618,"block_time":310618000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ab7844e6464b97900e9aeff3305c8c3f86ac20ff641578c04df1be9ccceeaa35'); -INSERT INTO messages VALUES(1569,310618,'parse','blocks','{"block_index":310618,"ledger_hash":"1d84dfa4fa75b017967b275a803da6b4938348b4b5cfc4a109e0784148a186ca","messages_hash":"374b9303afdc52229487fc5409024f8fb25d9b82626a86ab807f29bf689d1b75","transaction_count":0,"txlist_hash":"cad5af4c24c74aad93c806ae54251b11cd7d13210d68098afb26cbe73e3e120e"}',0,'BLOCK_PARSED',NULL,'03724795e8b29a84e0b6c99aea7a43b1abbd230847b0dd4d20de1529611e875c'); -INSERT INTO messages VALUES(1570,310619,'insert','blocks','{"block_hash":"4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d","block_index":310619,"block_time":310619000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f091f98c2fe2bf76f517abe081d180b975eec9f750ea1a7cd3870ee93ddc3c36'); -INSERT INTO messages VALUES(1571,310619,'parse','blocks','{"block_index":310619,"ledger_hash":"ccfc63ac8e522f8b5307b644d04ad95540fd490008f6e25017b888542f8754e9","messages_hash":"90e10fb595f8339080bf8b45dc57a7b9163bfa3ba25ca309957bf9943cca0183","transaction_count":0,"txlist_hash":"42704ac1329f6cc2fbae3b8d6113afc679f159b44e007a4268d03cd9a9944721"}',0,'BLOCK_PARSED',NULL,'07d081cd7f9dbece7056014693cb561b140bc2b467b01ca48280025be863cfcd'); -INSERT INTO messages VALUES(1572,310620,'insert','blocks','{"block_hash":"98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519","block_index":310620,"block_time":310620000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'097d9982846b99f3839646148b10c70f5295921f03f43f97703161721afc9bd8'); -INSERT INTO messages VALUES(1573,310620,'parse','blocks','{"block_index":310620,"ledger_hash":"7eaf246b47ddee30c53dbc1dd816030c9548ad7b57e6d72a3e61dc1b0f0fb542","messages_hash":"6c0ca10e0af73fd4f3a05ce3411a017abe028d2df830dc9e80e64a1f0a18cb6a","transaction_count":0,"txlist_hash":"e70c9193269a63eb0ade25f20d608c5ae1d9bfa8d79f7ed50c2f3e7b03945149"}',0,'BLOCK_PARSED',NULL,'04a00c070bbd8583f0920c97448b11a26b98d6832f37f2b861bf86192bd2d682'); -INSERT INTO messages VALUES(1574,310621,'insert','blocks','{"block_hash":"1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11","block_index":310621,"block_time":310621000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f3812519afa276ed7807d92c5b997f7becbc1a41e454f5cb463db784f22ca48b'); -INSERT INTO messages VALUES(1575,310621,'parse','blocks','{"block_index":310621,"ledger_hash":"8b12d5690d98419f42aeec91f62b2c0a90f65ca5ffa745051194222e45a514ed","messages_hash":"ce5e96a09d2013bc5d33f2b7d144be4edaeca6a7b71c05721eae9ce723cc3b3c","transaction_count":0,"txlist_hash":"0993cb53bd6e9ea2635b2ddd58c9a43c5610e9e2a0ed0fa5407616a28e3aa201"}',0,'BLOCK_PARSED',NULL,'a23da92245087852ea10cf0c42705510a5324764712f81ce46bc3e4faa059e25'); -INSERT INTO messages VALUES(1576,310622,'insert','blocks','{"block_hash":"3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47","block_index":310622,"block_time":310622000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ade2f6ac6b4f390d54fd0ae9fc818be4eedbd6e00fe851b5ae2126ebc927c0bd'); -INSERT INTO messages VALUES(1577,310622,'parse','blocks','{"block_index":310622,"ledger_hash":"da3a62ddb012e6176d17d3039c8f9bfec8049e13ead94ac2b95dce8049528ce2","messages_hash":"312b9a734093e87f37ef2625c3ba249c49790ad5c0cda9375a6b6fe70746ed4e","transaction_count":0,"txlist_hash":"674ce108f53ec7902c24edac613cfc104e7d08cfde7c8dd3ce65ed9dfd72182a"}',0,'BLOCK_PARSED',NULL,'f7769de44b964e3627ba4e55c618880e025aa2414fe6f513967f6c32665f9dcd'); -INSERT INTO messages VALUES(1578,310623,'insert','blocks','{"block_hash":"817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad","block_index":310623,"block_time":310623000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4367e46aff2e76e79e4a92227fd3f421d8b5f27ece9abe745594d126d88f581d'); -INSERT INTO messages VALUES(1579,310623,'parse','blocks','{"block_index":310623,"ledger_hash":"ad481b7cea15f41cf9cd5fcce0a66edfd4e174f9630786c0169556bd0b361328","messages_hash":"cb00a7e42616a641f7d884e74a2e1dfa7b53a0b6af10793a877ed329241052ad","transaction_count":0,"txlist_hash":"a56c89d0b997d5411cbcf260edcbd409e31a599fe36ac6f20a3e0c031e17e750"}',0,'BLOCK_PARSED',NULL,'d2f62852626938c74d3d45394641340f5178e6bc6899d74dae75d01711485dd2'); -INSERT INTO messages VALUES(1580,310624,'insert','blocks','{"block_hash":"3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4","block_index":310624,"block_time":310624000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b6a0db1352a6fd3630c5b17b905de452d465bed9d0c369901475009939d34d39'); -INSERT INTO messages VALUES(1581,310624,'parse','blocks','{"block_index":310624,"ledger_hash":"0489aca927ff2bfbd2da547c31f2a66c76d8732147a795a797b2645707d2115d","messages_hash":"71076c4b07b0e5f82a80c482801c1614f9974fd5c62e6ca9d0095e99d069d27d","transaction_count":0,"txlist_hash":"daec5678d2803f99becdecb666418513aab7cc9a37f6ab54e675e0a895a3b69a"}',0,'BLOCK_PARSED',NULL,'be93ccad110cdfb82a3bf0f643020070695b7621cd3bc64dc63d3a156cad016e'); -INSERT INTO messages VALUES(1582,310625,'insert','blocks','{"block_hash":"bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba","block_index":310625,"block_time":310625000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6afdbce11bb2020c55c7e625f0c26d3dbdf4cb7d7a7396f88ea3c02c894e8930'); -INSERT INTO messages VALUES(1583,310625,'parse','blocks','{"block_index":310625,"ledger_hash":"95e06957b32480a49eabf24b464749e6dcdfab2d64bd8f6acbfc197ef24ae01d","messages_hash":"08e24d51ac43918e9f79d6d6a5b3c674f36aa36d77a27a6e7ead4b7ca583d277","transaction_count":0,"txlist_hash":"e378650c25e95773a8167e904ce8ff4d10efc57fc2b544054c6b4201f7547537"}',0,'BLOCK_PARSED',NULL,'56a6b5bd53513a7325cecf368d2921004232311fd5dac55dae7332f3dd25dab9'); -INSERT INTO messages VALUES(1584,310626,'insert','blocks','{"block_hash":"b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d","block_index":310626,"block_time":310626000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eea3d4b18bfcb0f7bdcd0f5f0317750bd70e7ba67ef38557a5095d358ee262bf'); -INSERT INTO messages VALUES(1585,310626,'parse','blocks','{"block_index":310626,"ledger_hash":"7a467fc398bbeb5d6a346df3e14a79dff81babc22577d45f8b7f52fb80cb0c96","messages_hash":"b714cf8fa4e1683b37fcac2d109cd1eea547090438ffe5b6ee682421935ee4ef","transaction_count":0,"txlist_hash":"0d54a79bc7f05e33aefa5fece35ec2902b3da8461e34163b58c2fd3779483614"}',0,'BLOCK_PARSED',NULL,'3db912d1f0eaf0943db9d7c5bbc1bb452eda3533a99973a3a7082c1c5a4c5506'); -INSERT INTO messages VALUES(1586,310627,'insert','blocks','{"block_hash":"828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f","block_index":310627,"block_time":310627000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5070074db39ce033217ce141d9f546463e1131feb0e42fd1ee12977f29283a5a'); -INSERT INTO messages VALUES(1587,310627,'parse','blocks','{"block_index":310627,"ledger_hash":"03f34f091bb3e16276b410f8f3bee09a53442e800a58d2487d8732660647a34d","messages_hash":"77eaf5c31e059e0a930e9b75bdea6a5b1e68b8119b1803fb5e1446d5da0d62f3","transaction_count":0,"txlist_hash":"b4e762b53ffd3d9ba24a34032ba26b048f2c7524008cc3f35c0e44c1eaadf8d1"}',0,'BLOCK_PARSED',NULL,'33cb03ea8c14291660724caf7b07a62b924eae6552e372c2fa770b9fdb49bb0d'); -INSERT INTO messages VALUES(1588,310628,'insert','blocks','{"block_hash":"f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e","block_index":310628,"block_time":310628000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6982e2c6cf3e2a6889e6c31b14868e3b2171f25ad231cfec090605d97d4a7ff1'); -INSERT INTO messages VALUES(1589,310628,'parse','blocks','{"block_index":310628,"ledger_hash":"ed30807d010e320514081a63cb058b13177a2e4dd27851c028c910ab0862ac9b","messages_hash":"63f32a60725805546bc8317785565538e7e40929fb35ffc88d0d3429cec52c47","transaction_count":0,"txlist_hash":"966ab2ff446abb9ad3589034fa23dbc5c467d019cb92803745c8732b05a6bfbb"}',0,'BLOCK_PARSED',NULL,'6c0ba4a9ac4bd5322d8713e4cf3979bffa3fb5b9a88f9dd2357f252b170ed31c'); -INSERT INTO messages VALUES(1590,310629,'insert','blocks','{"block_hash":"254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20","block_index":310629,"block_time":310629000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6134476804fc7d382a268995e7a3f8052c7118dd84780c4514c01fa57620f69a'); -INSERT INTO messages VALUES(1591,310629,'parse','blocks','{"block_index":310629,"ledger_hash":"ba0d1e9e0077394a67aa0af1deb288effc88234b747df7c8fbef3896a89bf50d","messages_hash":"1bd94e3bd4ec922e91c777b0bf77533799f99ec602a75753a1546b59890d0bd1","transaction_count":0,"txlist_hash":"f739aa66c8acb9c24def7f1febed2189e6cc63361d2f798ed32cc808acf01eec"}',0,'BLOCK_PARSED',NULL,'0527f3b69d4183d7b64da284e67b45eebc84787fcb2c2200a593664f091c62d2'); -INSERT INTO messages VALUES(1592,310630,'insert','blocks','{"block_hash":"09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde","block_index":310630,"block_time":310630000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e2ed5c756ffc93d00fb57c53295e129e118feff75715de633836cf31374fa931'); -INSERT INTO messages VALUES(1593,310630,'parse','blocks','{"block_index":310630,"ledger_hash":"4f67cab0a96746d8b009f780be5831412c238c2c4b148b7db8752f1c2bfee5f8","messages_hash":"aa7888db91b2b02a3d7235aeb2fc0de60399a854a04c89e7536bf51307a3d49e","transaction_count":0,"txlist_hash":"51ee75dd962cc512bcfbdec32657f7439d60f3e613329a313f44970952abc904"}',0,'BLOCK_PARSED',NULL,'ffc49e0151dd93628fa8b4eb256d490774e1fa2b1c80875fe83115eb8a86d026'); -INSERT INTO messages VALUES(1594,310631,'insert','blocks','{"block_hash":"b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be","block_index":310631,"block_time":310631000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0b3872ef346212116593611198d8e064437c85d776f98d41534d1f585976aa27'); -INSERT INTO messages VALUES(1595,310631,'parse','blocks','{"block_index":310631,"ledger_hash":"8faba1bed91e4c5125448b6a016751e9b1f83e6c9a6e9758b717ebaa2a738dc3","messages_hash":"a5f943de51ddb9f952e92801b92e280d8355057bd888d67b84d4202708e67fbb","transaction_count":0,"txlist_hash":"c513b62a3d7bd0b4fc649889deb032ffbb9efb6d209e4bf5e14ea24250f147cd"}',0,'BLOCK_PARSED',NULL,'d4f4dd92bdac4afc9f5a0fc676bb8d2500cc05bd197c6e6a6928bf910688788a'); -INSERT INTO messages VALUES(1596,310632,'insert','blocks','{"block_hash":"79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1","block_index":310632,"block_time":310632000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8d8ec35d6b49affd59975d4eb9d1c89680bc6b4b8b4959e586e1d0394e8863ea'); -INSERT INTO messages VALUES(1597,310632,'parse','blocks','{"block_index":310632,"ledger_hash":"00e1e3a4c4c9d8dc64e002a2552ba27a005ee5cd1fbc36dcc4b59e9d16a110c7","messages_hash":"594852600ac607a4b62b030a421303c9336641ad1bcf3eaf6b971892b9ca1267","transaction_count":0,"txlist_hash":"6f4ee24d93a37b3686c71e39cc7ce7e3f79a3a9a6397e608d74c3646b9358d62"}',0,'BLOCK_PARSED',NULL,'65c10fb78e871e261c21d74507da03f974d42f4e8ca96fef6ac87a62ccfd0be1'); -INSERT INTO messages VALUES(1598,310633,'insert','blocks','{"block_hash":"e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1","block_index":310633,"block_time":310633000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dfbc471e78d1b9df7698619eb161d5210a00b1ebb14d767a8425b233e9539a07'); -INSERT INTO messages VALUES(1599,310633,'parse','blocks','{"block_index":310633,"ledger_hash":"0ca32d925169eef800ac257a28162666842ec0f1107775ea26d5de8f6074c52f","messages_hash":"c3b986dbcd02f8c741ed822c230095e2384f85f8b84458c35dd2747cfdf47121","transaction_count":0,"txlist_hash":"52825a5f663c03d9d8027057b36564cf4be997fdc15b5b503d1701019e92376e"}',0,'BLOCK_PARSED',NULL,'452ec349ca12a4ab2f5fdaeda7e6a2cc311a3345e60f77e793ebc2cd0a6da161'); -INSERT INTO messages VALUES(1600,310634,'insert','blocks','{"block_hash":"c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af","block_index":310634,"block_time":310634000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c3885afe7fd7070d3c9f58df94cf7e0969a17b2b96f8994ed493363d8242306b'); -INSERT INTO messages VALUES(1601,310634,'parse','blocks','{"block_index":310634,"ledger_hash":"1d6ed8dc599d0a2edec11893a1d6e502394d890cfb425b54c8e18e26c22bd9a1","messages_hash":"f71f39f62deee0ddd3427a073057326771664934d75590809c0f0796ea0fa235","transaction_count":0,"txlist_hash":"e9c54a989efbd6b8234ca7f0fae5d39b7f83479470c90f2d43dd11288792da1f"}',0,'BLOCK_PARSED',NULL,'caf06542347c43c8acf6435743ab1d644b98254c6ef39c9c18e795bbe4cbad9a'); -INSERT INTO messages VALUES(1602,310635,'insert','blocks','{"block_hash":"8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e","block_index":310635,"block_time":310635000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'435530afb9576765d2c24b204a4de4a25701ea38bf6a353993b4218003610aaf'); -INSERT INTO messages VALUES(1603,310635,'parse','blocks','{"block_index":310635,"ledger_hash":"f7579cffd83d518b2d123f1972a2d33c9e1e0672973d0112b485ac3895e40e97","messages_hash":"f996f16496b47ccbf70ffc8ac27c589970ac369b42ef8c1010db46c64c8c03a2","transaction_count":0,"txlist_hash":"f93c139e303a561ea8d29de69ea04dcdea0ed5ae41ad8ac0f6fdc2fe8817d815"}',0,'BLOCK_PARSED',NULL,'788a992313e1383759172ba8117ebe346d2b169ae56a9cdc63a16421fd0d6d87'); -INSERT INTO messages VALUES(1604,310636,'insert','blocks','{"block_hash":"ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31","block_index":310636,"block_time":310636000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'476026ab441dac28b43bc62b069e6a77e0c40c93cd255a6ece327398f9c8a934'); -INSERT INTO messages VALUES(1605,310636,'parse','blocks','{"block_index":310636,"ledger_hash":"6a12a7e2aefe8bff21de544dfc773b32c667a85d7d7046aa2d3b77eb62913323","messages_hash":"d84ef56606e5a88e804082aa6599c267fff4704642b565bd00006685ef6cfc00","transaction_count":0,"txlist_hash":"63a31a218d2b42aa278be0ff76c71bf572114c281a90431d952010b7e75a0b14"}',0,'BLOCK_PARSED',NULL,'1143af0f3d1b3ce4d43384933f07cc5725419178d07118ccf72b0d6a8d4f478e'); -INSERT INTO messages VALUES(1606,310637,'insert','blocks','{"block_hash":"d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336","block_index":310637,"block_time":310637000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9b12efac81314503d3b7377d64d8084392d4d6ca599b6857558c470272f2412f'); -INSERT INTO messages VALUES(1607,310637,'parse','blocks','{"block_index":310637,"ledger_hash":"a9d05feb729df342319d0f9f4df1eb72c28f60c41caead0cbdb50b2de397734e","messages_hash":"99e56dbbe5801899c6955e350bb6b80172b4b68a437f824560ff169128dd29a5","transaction_count":0,"txlist_hash":"aaf47bc37b85c127d9bedf76b0900a07b29bb2a1300a12d92200e3f006e0b930"}',0,'BLOCK_PARSED',NULL,'626a49bf808490638aa9db544994212b8bde2df8ae6a2cbe9dca05fb79d4a64a'); -INSERT INTO messages VALUES(1608,310638,'insert','blocks','{"block_hash":"672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b","block_index":310638,"block_time":310638000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2d28735f8e3141ac1c4fb65b433ffb7b1afc5aec55b8636ef2e1206a89f265d2'); -INSERT INTO messages VALUES(1609,310638,'parse','blocks','{"block_index":310638,"ledger_hash":"a7668ddd027e8557dec79414d7f6748c357eb0d1e93a28fcae2a13d19fe14247","messages_hash":"078b3b6ce12d82148bd5bb9834f76bbcf4fca03a83116dd0e153667c2e69a7b8","transaction_count":0,"txlist_hash":"eb6e3a68506f9c0bd4c522d5537ea01140273c8b84f376cc95fda0c99c8d8c7f"}',0,'BLOCK_PARSED',NULL,'00f852f90f7fedfa11ac81d37b5961fb59b87c6a364e8f441e78384e581bd329'); -INSERT INTO messages VALUES(1610,310639,'insert','blocks','{"block_hash":"d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b","block_index":310639,"block_time":310639000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'072aa6fc0e7adb41b679b18cf70a6f43e9627b2f4013c233f41bfb7e3e58f9bf'); -INSERT INTO messages VALUES(1611,310639,'parse','blocks','{"block_index":310639,"ledger_hash":"776581e6fef0013b9824dcebd414b27819db7a1adf285aa1358a0c46dfbde626","messages_hash":"a39c88f3fc8641d3744b3a88af36af70fbbae2ba1f4fb767f3a1cd5f4a636624","transaction_count":0,"txlist_hash":"4618a0558955508e24b4e79308cfeefbdefcf4def0f3dfc389d66b335488976c"}',0,'BLOCK_PARSED',NULL,'ed8cfa900eb514479b7ae2604f8d59b2b9e127d105e9a9b009b38eea845c6f52'); -INSERT INTO messages VALUES(1612,310640,'insert','blocks','{"block_hash":"474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59","block_index":310640,"block_time":310640000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9ffcf0f0264ae40b65b1e653f0b403f9bd3d59a87dcf472a8177f6f40f68f5c0'); -INSERT INTO messages VALUES(1613,310640,'parse','blocks','{"block_index":310640,"ledger_hash":"a4088753ec2b36d7dc750fa73b06d6966119c647887f7d551f0a0063de9b8f6b","messages_hash":"c0f045c019827d5b5cd15a26d32293bad9b32f9e40ad4b5b0f26528695743996","transaction_count":0,"txlist_hash":"41342d146bb15f623738e998c667d3bf2b51966495f1bfc948bfdfef93d27bcf"}',0,'BLOCK_PARSED',NULL,'b249f9bf061dcad18876024db67db6928c14a622508130d393b3ce6bd1f2787f'); -INSERT INTO messages VALUES(1614,310641,'insert','blocks','{"block_hash":"02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b","block_index":310641,"block_time":310641000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cb2fc4f342f2f946f88bb9d7a993c2895f89f9183c70a7e54c3e69caebccef59'); -INSERT INTO messages VALUES(1615,310641,'parse','blocks','{"block_index":310641,"ledger_hash":"4b9dfe1a7e0e1b4b25cf7f9f88491a116e07eba534b3493325d63bd47385b8b1","messages_hash":"1f1d6c3624f88605cab087414e4f6f254a5618b2aae45ea6134e43516a44542d","transaction_count":0,"txlist_hash":"266cbd2f8009b1c950b4a0f5d7b1a9e7fee56a0b60feca824b5f7e4f69334435"}',0,'BLOCK_PARSED',NULL,'b1fc374cff6b2de92432b4290316ff08945926089f97a9ac78a1da61761e5106'); -INSERT INTO messages VALUES(1616,310642,'insert','blocks','{"block_hash":"cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd","block_index":310642,"block_time":310642000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'288487a5bc987d4441fd3cf5cdafc99aef444320a4fa03657af70fe80fadb342'); -INSERT INTO messages VALUES(1617,310642,'parse','blocks','{"block_index":310642,"ledger_hash":"2d86730c1683d1b55e0500c58baac0ccc3b7f1e7cafd4ba91ade00842f04912b","messages_hash":"70266ac82fa8120f8415459950cba5a891f92b185d41949b1109aadc66d7dcf7","transaction_count":0,"txlist_hash":"483e13632b7785262d09bbc9c55ec5ecfae7992d38b44d92b3b7b9dffc979be8"}',0,'BLOCK_PARSED',NULL,'62a672288f6da438638d13a5da6adb635f77bda99f1d72e5067b6f10d21759af'); -INSERT INTO messages VALUES(1618,310643,'insert','blocks','{"block_hash":"b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b","block_index":310643,"block_time":310643000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'728205651c27100dc182fcd1c43089951564c688b3c01ebb661b0d16ecf68236'); -INSERT INTO messages VALUES(1619,310643,'parse','blocks','{"block_index":310643,"ledger_hash":"aff408483481696ed082d4177a3884f24f99b01ea9d89813cda2d2e7fcd34a80","messages_hash":"685e2c0a87db8ea0214c2191429804ff7f11145b3156a0d3425646a4dd7b13e5","transaction_count":0,"txlist_hash":"2d428ebef22ccd8e01c73c47d63ecc37614f5bd34907d6b5e821aa4b3d7a0b07"}',0,'BLOCK_PARSED',NULL,'e2eea44fb1e59cdbc3a980dda8442be8d0333a4151e74effc23d957e364e26c4'); -INSERT INTO messages VALUES(1620,310644,'insert','blocks','{"block_hash":"f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672","block_index":310644,"block_time":310644000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a994b76eeab9a3136043a57915bb76c0e29157a43e53574bca88e04a2676d6a6'); -INSERT INTO messages VALUES(1621,310644,'parse','blocks','{"block_index":310644,"ledger_hash":"ad875d0db986ae2350a0cd34fc3c20e9db9db2259ab1e145ea6d896d968aa105","messages_hash":"40776d6f8094d5b1fecdf694b43142312d6f31c1b5d61e70ec19e70517a1adae","transaction_count":0,"txlist_hash":"848e6511e3651c225508e11808f494e5730bff9072e37c5961b209f6ca5eedb1"}',0,'BLOCK_PARSED',NULL,'572dfeeeed959eb41a23895b40d69ee862c09280ffc27ebb58416415d239dd3a'); -INSERT INTO messages VALUES(1622,310645,'insert','blocks','{"block_hash":"f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3","block_index":310645,"block_time":310645000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5d863772a2fb373e32e9259a2134ac4638cfd07c44fb39fa531b1364a0a01bfa'); -INSERT INTO messages VALUES(1623,310645,'parse','blocks','{"block_index":310645,"ledger_hash":"a92d8611bc794c5d360cb0121223d44928ad0e6612cd6400a06965b670115adb","messages_hash":"282d27b4c64ebbd5fbefb3920cc52ba386922099e50d1faa4e6f96bf49936a8c","transaction_count":0,"txlist_hash":"1e1feae6d6050b88b16c5df26ce029eda5fd272e96bec74d7a6139fd4c38343a"}',0,'BLOCK_PARSED',NULL,'ad2d68cd04fbe02d442558139edc6a9648556f434e591ed6acb47a69b49c4de8'); -INSERT INTO messages VALUES(1624,310646,'insert','blocks','{"block_hash":"839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494","block_index":310646,"block_time":310646000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fa107f982c508b32f2dffdca0ffb2b76a960ad27b7b33b0bc2345a9ebf079a14'); -INSERT INTO messages VALUES(1625,310646,'parse','blocks','{"block_index":310646,"ledger_hash":"f41b95ef2301edbee5b23a9c11044ca8a0fb39cc4a43f277ef7e56eb1d8fa920","messages_hash":"b345dcb4eacd36f8f16e706ea93fcd31f52f9475b6055fd492674f2e1d21e00c","transaction_count":0,"txlist_hash":"d3f50fda8401e46bd75e7d4abe1296363de460d45141da3075342c8bc017f8d1"}',0,'BLOCK_PARSED',NULL,'2061899e625f0e128b2b168abc86e2b6ca59bf34597c2f39622bb42a12567827'); -INSERT INTO messages VALUES(1626,310647,'insert','blocks','{"block_hash":"8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d","block_index":310647,"block_time":310647000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d5e25ef4b79885d0a3d7c9e1ec3b88d4e1b6ba8c238af465ea970f96db829f9c'); -INSERT INTO messages VALUES(1627,310647,'parse','blocks','{"block_index":310647,"ledger_hash":"1dfd0b93adf736f986ceab06a68824b9efeb97291503b05b326f028518569602","messages_hash":"11bd85c511f9acabb48e97cb817dd089b886bf0e5a200014ba54fcfc9dab12b9","transaction_count":0,"txlist_hash":"4fb604a40972ea2e2fe9dc8ffe24f8bfb8d77900c80ff8f33bb7a34b2a0be681"}',0,'BLOCK_PARSED',NULL,'be4219747e6090ceb0c1d6b314c3a6184c68746b4ccce4dd43788052672d4c8d'); -INSERT INTO messages VALUES(1628,310648,'insert','blocks','{"block_hash":"8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f","block_index":310648,"block_time":310648000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b362af5d251bba90bfc7a79e9cee8c34e2b8e410bc3b8c54c0000d5b36bb9aaf'); -INSERT INTO messages VALUES(1629,310648,'parse','blocks','{"block_index":310648,"ledger_hash":"2aa89ef15383a6417e2dfcaf0bf7504b439b0a0270942b86e962d30220f5dd6e","messages_hash":"2db1c60dfc41e2b6868b7258c7abbd1d4d9c5a492c63cafeda0802c8aa51f38f","transaction_count":0,"txlist_hash":"c9ba3aeda8abee31772f8a0f7cb5643a12eeb8c9fe59045bb0c9d49d5c69c3f7"}',0,'BLOCK_PARSED',NULL,'52cf4e4e696fc1b48b220cd4ed443c52720dfbf9f82ed94efa35a7c50c20498f'); -INSERT INTO messages VALUES(1630,310649,'insert','blocks','{"block_hash":"6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb","block_index":310649,"block_time":310649000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3a33472f8ee3a43942febafb546cb4556046ce8975168ded9a2a2f3902328267'); -INSERT INTO messages VALUES(1631,310649,'parse','blocks','{"block_index":310649,"ledger_hash":"7159029d6e74c3eee2fce15ff8dae41263e1c4db016eda0e20ef63b0ba59e07d","messages_hash":"158ba0ba02bf4670c3863c8ba4f17da302454a33a343f0e5417db84e4ede7e07","transaction_count":0,"txlist_hash":"1654a3cbc3954d23e0ca92af18141e3384277e78e664ad40f2867fcbc60a2d70"}',0,'BLOCK_PARSED',NULL,'bdfe05f98cb57221ad02f56844e6191287da3b24af6f202eb8a99d2c5eb7702f'); -INSERT INTO messages VALUES(1632,310650,'insert','blocks','{"block_hash":"630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0","block_index":310650,"block_time":310650000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89804c9ff5312bcae051b512ad1b55e611ed3c41a379acbd1a7fa07bfc2e2e8e'); -INSERT INTO messages VALUES(1633,310650,'parse','blocks','{"block_index":310650,"ledger_hash":"81fb324cdf169e35d7d233ae1f08fa00f880d5cb9e375fd20ff36658e717620c","messages_hash":"bd14debb288ab6760292db9069d4536c449e5cfa1c12a5691f883f197ffe9687","transaction_count":0,"txlist_hash":"d10f8ee8b2a804d4610ea132e890fa11bbfcd9582d059a77ad3b59c9ac93669a"}',0,'BLOCK_PARSED',NULL,'dea163346d5c23289937f0be379cd1cbe1b60fc7c3402ef4951dedecefef4548'); -INSERT INTO messages VALUES(1634,310651,'insert','blocks','{"block_hash":"abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22","block_index":310651,"block_time":310651000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2b23da0c537727d0d093be9ca704c7a91a0c4e61f1c9470731a117809b4cdae9'); -INSERT INTO messages VALUES(1635,310651,'parse','blocks','{"block_index":310651,"ledger_hash":"bfcbf8a4ba790bdf9f7d27b1a20c2acab287830f61523be9b76a4b2645eae966","messages_hash":"fdeccfb491199bce4f48ba5c277a60b25ff9d04c5f5e0444dbd8619812ea4b00","transaction_count":0,"txlist_hash":"d4ca114a2c4e1e43d82c0502548e9f9168e55553df009f846c652477104b3fc8"}',0,'BLOCK_PARSED',NULL,'bc211d75adb82d06ea9c43fa3b463b96bc1f1b7b34a412360b50d8ed620b231c'); -INSERT INTO messages VALUES(1636,310652,'insert','blocks','{"block_hash":"5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6","block_index":310652,"block_time":310652000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ac9e1c9d83d1be280dceb5a17e31f790c2a6cec2620c0a12d369e88eca3e7f76'); -INSERT INTO messages VALUES(1637,310652,'parse','blocks','{"block_index":310652,"ledger_hash":"47dcbad7a555f23477079be3a5ea3ef83913724056381f787dd7771e0a3b4ad5","messages_hash":"58ed559ec63ad18957d120a82cd5f3487be62e8bfd1c7a333fe1f2ddd1c6e58f","transaction_count":0,"txlist_hash":"6491a9bdd162cac7cfadb1930138e1714fef048d0b2b001fcbdcf24413110d42"}',0,'BLOCK_PARSED',NULL,'d60f45683680a2c1e4e3d411b91428b42310f58957548d80264dae9c7c369a05'); -INSERT INTO messages VALUES(1638,310653,'insert','blocks','{"block_hash":"149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0","block_index":310653,"block_time":310653000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'62bd8629653fb60fe77f3a78c13a6760683aad6ba4dd769df87ac68e0a8a2d25'); -INSERT INTO messages VALUES(1639,310653,'parse','blocks','{"block_index":310653,"ledger_hash":"e8721460d27297ca09bf0026c78ed56b505b95d59f922d63ad8ed542a8aa8d66","messages_hash":"e2966788a81db390cfa0317f23743defc5a90b02b2e862a30ce863a00aaf77dc","transaction_count":0,"txlist_hash":"fc791bbbf8c78847cb342bdb1273cb697c513c68ee6d280941031cc38d4d6354"}',0,'BLOCK_PARSED',NULL,'d048e56137e58d14055785f373a271159b998086c03ea5803f8301c0cbf6832a'); -INSERT INTO messages VALUES(1640,310654,'insert','blocks','{"block_hash":"829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569","block_index":310654,"block_time":310654000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89f87e5840479464e5052a60c0df78a0b5c74753589c159dc5e52bca62de2a28'); -INSERT INTO messages VALUES(1641,310654,'parse','blocks','{"block_index":310654,"ledger_hash":"0008b3d669bca8b3790ae93bee813f4fdc302ddc132caf32e51c6539cb316d72","messages_hash":"0b87085b00b5dd73c4a69870e34437e2183e3d55ba50eff7d34fc3f7f923be1c","transaction_count":0,"txlist_hash":"dfaac3f5a38a1b4586cfe3ea5959b3d879d50a231191fcf46f75fec0b8a3329a"}',0,'BLOCK_PARSED',NULL,'431b2d205f29ad47416b14554aa1ca9136298df8410cd5a1cd6790883a37fae9'); -INSERT INTO messages VALUES(1642,310655,'insert','blocks','{"block_hash":"c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55","block_index":310655,"block_time":310655000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'067bd6dc923dd4a4ed1851b226ea18ca3480e06c722880bc1810293b81c7f27c'); -INSERT INTO messages VALUES(1643,310655,'parse','blocks','{"block_index":310655,"ledger_hash":"ecab44b42ca7a0f302ddc87392714a8b842daf98b329edfdb233ffbcb86dd658","messages_hash":"2f9a0d805c031c4ede1170600374c2bf4b5229ac71b5b27a4ab87a3e67e8231c","transaction_count":0,"txlist_hash":"5a9a17b6be46a48a00b986503cc922e945ed3e59a0fffeff477e6953e776ed2a"}',0,'BLOCK_PARSED',NULL,'bb6471809b8dba0431267c50f07cc76a7fe755ba65449445bf8978537c2d16e8'); -INSERT INTO messages VALUES(1644,310656,'insert','blocks','{"block_hash":"5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b","block_index":310656,"block_time":310656000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a2d14dd6ba070180c8acd5bdf7e53c458f989b06ae39ae7321f86bcb128ff9ec'); -INSERT INTO messages VALUES(1645,310656,'parse','blocks','{"block_index":310656,"ledger_hash":"559c96bdf5397b1fbd27e6c67c57ce9e97a95e335288f9bacb03d0b069afa67d","messages_hash":"f9fb148430bcbe08f21820e99843d2762bedd62477e7cbc500e44976462d964c","transaction_count":0,"txlist_hash":"73e8b5247b6daa8b931b1b28610b6fee7e10949a1aa6a62d71e276929fc5ed11"}',0,'BLOCK_PARSED',NULL,'b4b30048bf8d8cb2e2de8b4f8853e6d78774bd9884586ff1069f8ec50a4a0314'); -INSERT INTO messages VALUES(1646,310657,'insert','blocks','{"block_hash":"e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26","block_index":310657,"block_time":310657000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'92bac5d43d4a43070e1ca1e4f6de753ef0bdea990197dce57df2420accaf916e'); -INSERT INTO messages VALUES(1647,310657,'parse','blocks','{"block_index":310657,"ledger_hash":"396ea2b013e7a9bf16b5276990c4102c7385b43c964084c1f5eb6397c2d4e58b","messages_hash":"c9ab3ce79c13bdf00565c06aece7fc7c5a781aafffc05c55a7153db560c3a3dd","transaction_count":0,"txlist_hash":"c426afc816a4d8536d96d8ed39c75dd8145e6d93864259b017c1932bd3bf0687"}',0,'BLOCK_PARSED',NULL,'808d5db12e83e9f673295cd785716cd97faed5305e1861e92767266888a958a1'); -INSERT INTO messages VALUES(1648,310658,'insert','blocks','{"block_hash":"579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501","block_index":310658,"block_time":310658000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'06fa1364664a3f2372e51e43728b11acbc15d9aa228d3f91c8f0e84568dece8b'); -INSERT INTO messages VALUES(1649,310658,'parse','blocks','{"block_index":310658,"ledger_hash":"ff3c16421a8f61a3c56875f8a80cfd670f081f919fc9fc2af8b4f5f9f133f614","messages_hash":"9dc09bd94c9d1657bac3782e1114af0a15056ed8fadde6520d330177a740a852","transaction_count":0,"txlist_hash":"a0a1dbdc2cb08b59bbc105c44ebae0f8776483f2c1dba13a519984ca70a839db"}',0,'BLOCK_PARSED',NULL,'d4db1617e36a0af43c68874bf83f3aefd6a1a7fc06c56b00330607a0b2dc2cd8'); -INSERT INTO messages VALUES(1650,310659,'insert','blocks','{"block_hash":"e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f","block_index":310659,"block_time":310659000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'680a2b5ca1e8f9ce501cad257841d76147a2f3f2695313233e3bcee1fe79a4f2'); -INSERT INTO messages VALUES(1651,310659,'parse','blocks','{"block_index":310659,"ledger_hash":"34b99e29c60046d9a128832e1faedd9e831a71d358cfb914400c13a837370f0d","messages_hash":"0aace83184349717cb211de8992d36fbc6a25a81df46c4f90c3ba6f3f668c974","transaction_count":0,"txlist_hash":"8820d989cad56e3ec4c084d37c7d586355019ea8e5cee7371ff05f4e19972528"}',0,'BLOCK_PARSED',NULL,'5053c32e2f920b618ce66e3d1a2743a99cac2c2bb28297c367885be8a0adc035'); -INSERT INTO messages VALUES(1652,310660,'insert','blocks','{"block_hash":"d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d","block_index":310660,"block_time":310660000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2d908f80c7e8ff72c32316feaffb50e5a06e6b7e251e34d9b9727cd228a4fc4b'); -INSERT INTO messages VALUES(1653,310660,'parse','blocks','{"block_index":310660,"ledger_hash":"e891b77c195003df8d383aa2b6a292153ef421967b48d9ed7058faf2f5cd8392","messages_hash":"654517d01ce79743e41470864e73d95b03c0d95491516189ecb8876ef71ae748","transaction_count":0,"txlist_hash":"f606b03288e72a208f5d44ef49343632cded5a190acc9784e7d44c3ce89e3d6b"}',0,'BLOCK_PARSED',NULL,'f9177657a9d5419d3590c41ad1e43370fcafb745364d384c11767ca66e7ca2a7'); -INSERT INTO messages VALUES(1654,310661,'insert','blocks','{"block_hash":"badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89","block_index":310661,"block_time":310661000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'83ed90debd3f92b88c77216d8b1acd531f25f8e1df59faa17a3ed95743ee7c87'); -INSERT INTO messages VALUES(1655,310661,'parse','blocks','{"block_index":310661,"ledger_hash":"d210c23a7243de978dd217275021a82ab92cde2193eec1ef1f7b51fcb04ee805","messages_hash":"afdaf4562913f50b33e58c46ed749b3a841d1e306c3697dbffbac8631ba7f2b9","transaction_count":0,"txlist_hash":"121ea9d910cd7cd9522a4c21056464d4b5831269d55d3ee93613f9edb80abce8"}',0,'BLOCK_PARSED',NULL,'fc403fbe506d6f61093fd7b8ac122aabb96ccb8dcee9726c681fd267c34ba422'); -INSERT INTO messages VALUES(1656,310662,'insert','blocks','{"block_hash":"952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb","block_index":310662,"block_time":310662000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6b0757b114f0a1acbfed66cab60240d6cbc76470041bfa52671d5de8a11b6803'); -INSERT INTO messages VALUES(1657,310662,'parse','blocks','{"block_index":310662,"ledger_hash":"3aa08456f2d542275957de7c3b11ca112a95cd6f9ef10db7d8b09f15329a5318","messages_hash":"11ceb66f10015594a7e5e5b09390c89155a3d5ba3bb51d6c39d46bd4d9d1e301","transaction_count":0,"txlist_hash":"f2793e5e7ce5de99061d249b7eacd8c31a0b59c839a6f32905aa4fe955458137"}',0,'BLOCK_PARSED',NULL,'f1a082617db05fb3beec1359e105dabb31c675712a3bd12845dbbaef49b34a2f'); -INSERT INTO messages VALUES(1658,310663,'insert','blocks','{"block_hash":"7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028","block_index":310663,"block_time":310663000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1e39fe30a0c2f06859d1ef1fcb16930eae8a8e94cb70ff47f3bba85b04d7b17f'); -INSERT INTO messages VALUES(1659,310663,'parse','blocks','{"block_index":310663,"ledger_hash":"65409754fbd2df007d8f88f589d655e2327f66b0a80054e3f901cfd6064afb0e","messages_hash":"85ba074ba8c0f28418326b310d16e896aefbfb5b8eb3967f167315636c6d4bc5","transaction_count":0,"txlist_hash":"f2f60e0e823edb418f01614f56dc15887f96fec107ed52406627f035c7efdd21"}',0,'BLOCK_PARSED',NULL,'62865cbe463c03d4e096c0ab6f0dddd4ffa198f1aaccc15ed31536ecb3aac74d'); -INSERT INTO messages VALUES(1660,310664,'insert','blocks','{"block_hash":"ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247","block_index":310664,"block_time":310664000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07e84c5e7e58475d27d117de4a831dc33a6bcbdd6a59d106177b89f3ad63a362'); -INSERT INTO messages VALUES(1661,310664,'parse','blocks','{"block_index":310664,"ledger_hash":"95d04fa70f12ce0dade256651cc11fff8140a46b628966e9b6a51b38ec9e22d8","messages_hash":"12673c03aca38e253579dea035ad95bee24651123d197040093b39982d9e168e","transaction_count":0,"txlist_hash":"229a5edda5a8c504658c57bd7e776fb286c26031658efcc68c0e0bd80566e20a"}',0,'BLOCK_PARSED',NULL,'b618105c4ff1470be8ac038fa4b1adb1cb6055aa3e7bafa3be4c7ddb7a1d6f85'); -INSERT INTO messages VALUES(1662,310665,'insert','blocks','{"block_hash":"8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8","block_index":310665,"block_time":310665000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5a9861a4b5133b1078d32a221e7eea6b13375f88bf4204a5547152d16f424b98'); -INSERT INTO messages VALUES(1663,310665,'parse','blocks','{"block_index":310665,"ledger_hash":"556990a4482613bc6e4b6a0d94969aea4a4f299031c3305aad91ffc2fb5899a0","messages_hash":"3b2be671c2390b0bff63b8f1ed97686a104ae65e2da7eb8d2486b1e6f7d3adf6","transaction_count":0,"txlist_hash":"b3e7615a7e9b22882a5d63ec2c1e4944ffa550aafb856db4dcd03f659eb73d8f"}',0,'BLOCK_PARSED',NULL,'7e7456d1834de1cd539a6472359c732295132998412c687a499fc4e7956ee509'); -INSERT INTO messages VALUES(1664,310666,'insert','blocks','{"block_hash":"de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52","block_index":310666,"block_time":310666000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'778b75dd72741eaa91796d4e66a9c029399002514cc18e3967fd760fd60739d1'); -INSERT INTO messages VALUES(1665,310666,'parse','blocks','{"block_index":310666,"ledger_hash":"f070cb9168ea3002a9facc00f056938659807077a8fe257958829e40dfd7d2d6","messages_hash":"6c65de23f4c8bcb130113144dd7f8c1c12a9ea06683ab0f08c092a25e42fa7df","transaction_count":0,"txlist_hash":"9f5771d6fb484760ae44a0b7141c89e288c483d5408e26e811fa4612ca68a3ad"}',0,'BLOCK_PARSED',NULL,'3ef140ea29b88638ada86c7e4d21d9d5bcc6b54fec91f2a137c1e472d1e10bab'); -INSERT INTO messages VALUES(1666,310667,'insert','blocks','{"block_hash":"c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83","block_index":310667,"block_time":310667000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'745b27c7e3308ca29504184b9bd603895e571b413ce2b7f701afee8318abf00d'); -INSERT INTO messages VALUES(1667,310667,'parse','blocks','{"block_index":310667,"ledger_hash":"ec7fc439acb828fadd36de7918fd6503e978f76330e56b0434d28eeeaf5bebb8","messages_hash":"b914fefa784e1dc61433186e78aad04cd224c3344dc3255b1c6044902fc00a94","transaction_count":0,"txlist_hash":"67d4cee1acc31181740c2f05b12144c7184111c5c12b4c0fcd43455e5b1d1e00"}',0,'BLOCK_PARSED',NULL,'a0370184adf58ee43aff5010c8e32a0fcbb255b6d808c98e20855c7b264deae4'); -INSERT INTO messages VALUES(1668,310668,'insert','blocks','{"block_hash":"699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27","block_index":310668,"block_time":310668000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'171bf146070071e5a8272e03144936f2b0c2853d1b442aa880851c60ad0768b8'); -INSERT INTO messages VALUES(1669,310668,'parse','blocks','{"block_index":310668,"ledger_hash":"03a7ece626bd68fe45114048a0a7a528fb118ce22bbb650c9014e37312d2d75f","messages_hash":"20dc9bc450deef2fd7deff6f38744ab5d1982759ba4d7240569de1d9b17d9b46","transaction_count":0,"txlist_hash":"d352c080a6cd8f5ad10a897a2300f6aa87bee31d8f47ab9477a96b96935c5ef8"}',0,'BLOCK_PARSED',NULL,'9d06c2a8d5fc2681f37d163feda2617d4e5a880fe2be9a7157a32154696084a0'); -INSERT INTO messages VALUES(1670,310669,'insert','blocks','{"block_hash":"c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f","block_index":310669,"block_time":310669000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dc94f7c1ee16cfd715e405190c6e2c16733a6c90c2975b9bf87edb7cb72b95a4'); -INSERT INTO messages VALUES(1671,310669,'parse','blocks','{"block_index":310669,"ledger_hash":"ea0f0c31b8f007d93ea96539e8d922f32c98829017fa79261c5fd077ec9fdae8","messages_hash":"1cd1e93e4867edf77097266bd0b5214ee4910bb461ca282a29e92116091f522d","transaction_count":0,"txlist_hash":"780251573f61009e4ac61ee4879e60ef6cc072785e6c57c2dacdd57fb03520c5"}',0,'BLOCK_PARSED',NULL,'0a644f810b7aa3e31760b133d190c71700af80b5f74a6d32be14520b95c0b7e5'); -INSERT INTO messages VALUES(1672,310670,'insert','blocks','{"block_hash":"9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944","block_index":310670,"block_time":310670000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6bf6da262a1376060b1b32bbc0c565c71ccdfc7390135e9ec746260391d93232'); -INSERT INTO messages VALUES(1673,310670,'parse','blocks','{"block_index":310670,"ledger_hash":"2adad32a5f4e777e309e4e245eb2479a999d3d151c9e8792ce166ea520529076","messages_hash":"b1becce13f8df25d5d9fe5af2bad1637262f13902be2bb2397401c92ed99287c","transaction_count":0,"txlist_hash":"b6a1180e0a158145ea9cad059da2c082e2ae84941d0f90fb11addae85d081964"}',0,'BLOCK_PARSED',NULL,'ccbd811b2c3766cd4a3637192ce5d4751ce7a663ba2a24c99b20e8a079abce18'); -INSERT INTO messages VALUES(1674,310671,'insert','blocks','{"block_hash":"4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522","block_index":310671,"block_time":310671000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dec575ceda84b0219347e572be8fab480c831593a78b1bc21331104143538a9d'); -INSERT INTO messages VALUES(1675,310671,'parse','blocks','{"block_index":310671,"ledger_hash":"50e2196f8189b95d5ecb20aba76f9cab54ea04869c384f537c7790df812ae238","messages_hash":"643ef0ebf5f419385a02b483b3709976d36a01ea7c79ebcd3b05468e2bd7913a","transaction_count":0,"txlist_hash":"bf87e973ededd051c8bd23ccefb1de6528a82b1071aa3b791eb7c9263e2d8ff7"}',0,'BLOCK_PARSED',NULL,'5dbaeb314bf6cb7ee9178bb798730ec4bb96cf996b241d2c67daad27cc77eceb'); -INSERT INTO messages VALUES(1676,310672,'insert','blocks','{"block_hash":"491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa","block_index":310672,"block_time":310672000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4dc5b5115ad53c7ff685935303ce9a71cee67d26ed2dd01b5b5c6c430e881e9b'); -INSERT INTO messages VALUES(1677,310672,'parse','blocks','{"block_index":310672,"ledger_hash":"846e3f8f36a3ae9ee67a0c4c42dd055865128928bf4985a365405922a0084c3c","messages_hash":"600dcdc7484062a7487493c2b8875353d4f20d97d3f5f066384327da53f98165","transaction_count":0,"txlist_hash":"faae8112e80bc60f69dbae4257809ba549b0fc2b4927357945392e3843d34192"}',0,'BLOCK_PARSED',NULL,'ec569cff66861f3685e19cb46a4c856c1218fd7a73c2e1dcc0d0eb614f32542e'); -INSERT INTO messages VALUES(1678,310673,'insert','blocks','{"block_hash":"03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5","block_index":310673,"block_time":310673000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6217a92c1d49e3390fab81b4426b04894db132957448bcbfcde103f0742ec1db'); -INSERT INTO messages VALUES(1679,310673,'parse','blocks','{"block_index":310673,"ledger_hash":"c428b66bf0e998d32add95f1fc2c159ca42a2d8c8e8742a8ba40ae36d56def54","messages_hash":"19df6f4a3edef5cd1b966f694707ee4bb4dd58287f6dbdc4c82782ab335d61cd","transaction_count":0,"txlist_hash":"1614c8d076a5878f09a0755de3d774e2c3334884876b3b6d730ce1dbb910b2f0"}',0,'BLOCK_PARSED',NULL,'0d422468b118f7e4e0d68ca4effa5292f10537ca969cd42155f1dedcaf1ce3fb'); -INSERT INTO messages VALUES(1680,310674,'insert','blocks','{"block_hash":"9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c","block_index":310674,"block_time":310674000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f3cdfee8eef00fe9fc9581f1d3ae767b2fa83b9dad9632b626bbb1547f436332'); -INSERT INTO messages VALUES(1681,310674,'parse','blocks','{"block_index":310674,"ledger_hash":"05cc21de553be3fadaa55748f1fbcc5038d5cf04e68912a4af0b61cf501e5712","messages_hash":"b2fc94b43ba18452dea194dc4e39d4887a305c096a3bfa33100d3c0a061c6524","transaction_count":0,"txlist_hash":"2d25ca16358d0209557c678cd2f9826d9e15f45ee9bb1211adea973da62d0116"}',0,'BLOCK_PARSED',NULL,'34a5be3750291471931c2b4efb6cc17a04af726d6afb0a15354a50eaaa57f513'); -INSERT INTO messages VALUES(1682,310675,'insert','blocks','{"block_hash":"e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21","block_index":310675,"block_time":310675000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'adf1d6458015075f56c377ae9a3dfd596cd21e2a88a40f34170cdeebf51b5a63'); -INSERT INTO messages VALUES(1683,310675,'parse','blocks','{"block_index":310675,"ledger_hash":"b28e9d1b35c5fdc969d79e47f2b909f74dae565b2527d11e7490a13942c6a583","messages_hash":"1b89cf5af3e3242102873babbac0c7fe9ae92a01dc8ed1092dce5d30cfe4a964","transaction_count":0,"txlist_hash":"bc62362dfb5ae26d529f4c5ed88f8096de03718447326cfbad2a807144c1889a"}',0,'BLOCK_PARSED',NULL,'2d9cd77fccab2fd2e4612abf62ee5f612607b57e6bf11d76e6ff6a2409bda0b5'); -INSERT INTO messages VALUES(1684,310676,'insert','blocks','{"block_hash":"312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1","block_index":310676,"block_time":310676000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8be367c60fcb4239363be3c49d5f6572cb85fc48b4c0ddf7ae3db199293e2e04'); -INSERT INTO messages VALUES(1685,310676,'parse','blocks','{"block_index":310676,"ledger_hash":"69a187e7ab5ec16a9cc9fd1a987619c70aeec67b38ac78ee9c0ec9fcca14ac07","messages_hash":"dd6d9b56db66c7da78e06cca8e85ca3d54c2e7a3fc75b1b18e6675668a429559","transaction_count":0,"txlist_hash":"d8bbf9bb6af7bf95569dcf56fb8fdefca64695b5c021bb698a0c6edee9e447c2"}',0,'BLOCK_PARSED',NULL,'030ce57b74c12205a11489f83e6a787ced8658cb6c4dd4ecdbbf5ba317cdaa8e'); -INSERT INTO messages VALUES(1686,310677,'insert','blocks','{"block_hash":"4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a","block_index":310677,"block_time":310677000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'892c3de9d8187f47c7d7d3488d5eccec51f8f0494bb81a1e5fc0df5674bea0d6'); -INSERT INTO messages VALUES(1687,310677,'parse','blocks','{"block_index":310677,"ledger_hash":"b4638a8ac7c0f0adf125162897ab97e40f4a0ad293f8a28b026deef3626a5c8f","messages_hash":"fe3093eec8f0789886747ceb2ffce0e0c0b08f3e653076fc4e5388b4f501e469","transaction_count":0,"txlist_hash":"7c5bc34c11f251b3748c337391be8e8f74a0399b3923627ebf9117e9276af31c"}',0,'BLOCK_PARSED',NULL,'41acba3816baaf4dee44dee004981b291e9f44ac180024b87505d463a1b057ca'); -INSERT INTO messages VALUES(1688,310678,'insert','blocks','{"block_hash":"d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c","block_index":310678,"block_time":310678000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea45b0e03843e5cf9bb0aa595b94b2bf720158eb40a4665ef3f6275329737544'); -INSERT INTO messages VALUES(1689,310678,'parse','blocks','{"block_index":310678,"ledger_hash":"8dd6b6f83315d469df3b87d07afb074b2f0c72cd4e62b3693211d63280d25e2e","messages_hash":"6b720cb22bf2e7b8155262983938bb0c589853b845e598f3ca5fe572bf54671a","transaction_count":0,"txlist_hash":"41eb202a56ae084f3cc1457d3c17cb7eb2214a8cc385574f97a5d0913086f931"}',0,'BLOCK_PARSED',NULL,'2c7ea885aabe6be27dba396af272fac7267ce664de23bc498897b3494aaa13bf'); -INSERT INTO messages VALUES(1690,310679,'insert','blocks','{"block_hash":"be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b","block_index":310679,"block_time":310679000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'25337bb497cf3592155b5f929483f846e2dcdd6debdac02ccd44a07e199747d0'); -INSERT INTO messages VALUES(1691,310679,'parse','blocks','{"block_index":310679,"ledger_hash":"28444f40446d25ba0117dc6c65b276eab758071f664f06e7c8b7a7790f7ae7e2","messages_hash":"57dcdf6ccf9a4718f5fec3a7858e76f1f3324089ba416d10df73039a1ddf9fe4","transaction_count":0,"txlist_hash":"a27ecd72192938a3eda2a91456903b4bd0a1b277166e38937262a7c1a5fab580"}',0,'BLOCK_PARSED',NULL,'c7c20d1f74c1351a7e22d82910806d2af7fd8c3ce1f21c0029e1888731a5fb4a'); -INSERT INTO messages VALUES(1692,310680,'insert','blocks','{"block_hash":"239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8","block_index":310680,"block_time":310680000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'18830ad23c9daf30092f8475bcf8a05b1867c6456648c864a908c045c4c76822'); -INSERT INTO messages VALUES(1693,310680,'parse','blocks','{"block_index":310680,"ledger_hash":"03abd766908511876abb9514cef33bf4a6b133d7d5d872c2e6568efb383d02ec","messages_hash":"df6e1a719dc7966e07baaf047280dbca0f4197a42c41991d33b0906e22a752e5","transaction_count":0,"txlist_hash":"19abea6cb809e0ae492acf291a5dba572a871622f4c5e675557e8d2f37102e09"}',0,'BLOCK_PARSED',NULL,'40a1413dc30113ab87f37edd302a8b6bbf8b6d0ff4cab98f1fabfec6e16fa055'); -INSERT INTO messages VALUES(1694,310681,'insert','blocks','{"block_hash":"0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41","block_index":310681,"block_time":310681000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d862d0b7376d8534a950c169d2697dab69eb2f55296d838cd839bfaf5cd4351d'); -INSERT INTO messages VALUES(1695,310681,'parse','blocks','{"block_index":310681,"ledger_hash":"d2945f562378c9baf4f2572006bc807e93656dfd8743c87c97d010e664318779","messages_hash":"d501616cd190087c222d2a87eb4688069f6839d68b171c482a44b41a0df73fa4","transaction_count":0,"txlist_hash":"7f0276b2f2d61b95e407e95777aa4895e887111b0281099b9c5a44dbcd31f22e"}',0,'BLOCK_PARSED',NULL,'2e0936916c62807791b0a8f538df0997321fcf1441b584ae94e5ae72b32497a5'); -INSERT INTO messages VALUES(1696,310682,'insert','blocks','{"block_hash":"9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55","block_index":310682,"block_time":310682000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9b23978428a878c49aeaf75ccbc9adf6ec9a14d345acbb123682b062263194dc'); -INSERT INTO messages VALUES(1697,310682,'parse','blocks','{"block_index":310682,"ledger_hash":"80de0d2871ef1227030758dd8257f30ac754612734a6e56cd9e078678e3af0f1","messages_hash":"d56eece645a7a7891d0e3b3f2ef8d1cd85777c1fb7fc7795b405f5288016478a","transaction_count":0,"txlist_hash":"e9cd2133c276de01869a39f4c703d2f8236b0b1b79bcfc53a4e3d8967785be9b"}',0,'BLOCK_PARSED',NULL,'e599e5912966339a60c8e1ecf657b7d5a16946205785f9c6e9db412795038852'); -INSERT INTO messages VALUES(1698,310683,'insert','blocks','{"block_hash":"ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511","block_index":310683,"block_time":310683000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'09705f6e19b550768b275a030e74364866fc0a0a62411148781d6fe46fe74b3e'); -INSERT INTO messages VALUES(1699,310683,'parse','blocks','{"block_index":310683,"ledger_hash":"536fb911d46abe4125c8597e0a9a14d374bc83ecf17927e509cec7d3b41004e5","messages_hash":"65d2cba44ecf97dc81f8b80ff8392bac96ff42353e0fe420fb28ba5979b2c9ac","transaction_count":0,"txlist_hash":"267450473f906200e5c2c6912b2ad40150573506e7344e632d338485e3f78192"}',0,'BLOCK_PARSED',NULL,'e165a760de69f13ae56dd25b044e509e9710d3f680a7a1bbf3af81094ce26fb0'); -INSERT INTO messages VALUES(1700,310684,'insert','blocks','{"block_hash":"d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9","block_index":310684,"block_time":310684000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d43a95e6b24ee180cfe5d8330ba84010fde3a29e46198c0b3199d2b20eb37910'); -INSERT INTO messages VALUES(1701,310684,'parse','blocks','{"block_index":310684,"ledger_hash":"87bf3091c4a6839a0e63d0a45b3a5eee0d4f5ccaa84aa9a20703bf0e11ffa914","messages_hash":"8199788e0670df13796f1217e83835358253d56babc33e68a0de05ec95ab0fce","transaction_count":0,"txlist_hash":"80f0ef1728184f040fa9d640aed74db77ff126c31413c88816fc0a3b01c47eb9"}',0,'BLOCK_PARSED',NULL,'29c630c43508bef22935ec686a673abb12f3d2ad3d61a0c13fb34c419a284bb8'); -INSERT INTO messages VALUES(1702,310685,'insert','blocks','{"block_hash":"f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8","block_index":310685,"block_time":310685000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ee39beaabc4bf0e1511bab355d78c0bd3cee0e100a7c8403eaaa0e1e00aa035'); -INSERT INTO messages VALUES(1703,310685,'parse','blocks','{"block_index":310685,"ledger_hash":"ba962d58c2a54938f6c8dc1b64addbb21d13b6e462c6966362a026ddac50af52","messages_hash":"40d834e1006461806415957d6b415a1ddafd2a0972331a237f436c6a72a90e6d","transaction_count":0,"txlist_hash":"b8b940808bcd9e0a6d5d3b0dc001b185c7be5bd862d8ccd5c1860916b7d666d3"}',0,'BLOCK_PARSED',NULL,'c0dddb850af0348a34cb395a56d2cd67c19bd70a0ff4769a79bfb741581adac9'); -INSERT INTO messages VALUES(1704,310686,'insert','blocks','{"block_hash":"a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca","block_index":310686,"block_time":310686000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'71863eec3cedf0b0b81a9ceaa468cd362a01cd20a7028996c213a897eb5ea92b'); -INSERT INTO messages VALUES(1705,310686,'parse','blocks','{"block_index":310686,"ledger_hash":"ca8f687a5dc38643f240018fd6c72963792155e39ae6a7055f8cd7e3265dcb20","messages_hash":"46439879e0eeea01548fa97d7668dbe66d8afaba9fa5dcb9e0f7039bd34951a8","transaction_count":0,"txlist_hash":"8fd8812c2f3696baa9f0f5714aaeba990fb7a1711c583937002babe776964c05"}',0,'BLOCK_PARSED',NULL,'45c6b780edf7d5e9d0b130b30b75a7262a6751802afadd83fb2edad0853c0741'); -INSERT INTO messages VALUES(1706,310687,'insert','blocks','{"block_hash":"c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8","block_index":310687,"block_time":310687000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d022ee7ad4ea3db1b1c984105c4c8e08218c596c25f8a1230e3a98e63fb72fd5'); -INSERT INTO messages VALUES(1707,310687,'parse','blocks','{"block_index":310687,"ledger_hash":"1f3f3f92e37c9cf9f195b70ce9a0e9d0148fd3561f55582e9666b7e69a85673f","messages_hash":"c434fd4daa8af4fc42a9de10183d533b86bfefc1a8c24d9b96787f39d91b163a","transaction_count":0,"txlist_hash":"2215a8448764b62467df6b53cd807cc9410850d73d728a81c753eb70de99e486"}',0,'BLOCK_PARSED',NULL,'f642046fbff216a55e90b819391d3fe3a2d5b6eac11939216f52d35621514f35'); -INSERT INTO messages VALUES(1708,310688,'insert','blocks','{"block_hash":"3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822","block_index":310688,"block_time":310688000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b93099baab911b2b486f5a82396389c0d3dd6a3ca1cf66615796e9ac69285f8d'); -INSERT INTO messages VALUES(1709,310688,'parse','blocks','{"block_index":310688,"ledger_hash":"318fb29772b5e85c71e2ce29cc40c6d3fa191b58ea2ad949c26d2f5eff6441cf","messages_hash":"7aaa6e20153b0aa576bd7759167105314c75f24491d5a04d62e94f81076ea237","transaction_count":0,"txlist_hash":"9312287eb460a866f6c18b0b28dd23fff23d408a84422a87d69a561447c9ffaf"}',0,'BLOCK_PARSED',NULL,'ccce00eacb461d975a7398b32cba04e729f5c086a5bf177fd7cd29e224c21b7a'); -INSERT INTO messages VALUES(1710,310689,'insert','blocks','{"block_hash":"d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df","block_index":310689,"block_time":310689000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ad34620623cff15e43fd91c69a25cdc0a642599f6ee84dfef04136fe124cc3c7'); -INSERT INTO messages VALUES(1711,310689,'parse','blocks','{"block_index":310689,"ledger_hash":"027206a2d51a290c54ee4a2c6207fbcb3452038491704fba8b02bef065596d7c","messages_hash":"5301118c9aa8696231d78808a1d9c8127c5f096cb5e0bd4f3a72d400d5db99d0","transaction_count":0,"txlist_hash":"a7c5b3bc4269d9a63804bdc4e2693fd03e4e529b183510685df746092e94aa5d"}',0,'BLOCK_PARSED',NULL,'3d6633e1a6ca9edb93a87fa04fda932060795511f0f9efec78656b887ebf9811'); -INSERT INTO messages VALUES(1712,310690,'insert','blocks','{"block_hash":"0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462","block_index":310690,"block_time":310690000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'952c4820ddb847f66efefb2b7e8378756144adf4f850aaccd47685d8cbebff3d'); -INSERT INTO messages VALUES(1713,310690,'parse','blocks','{"block_index":310690,"ledger_hash":"0e6ce3eb82baa1aacc53cf8c19e9ba4d11c0d5297d70a1c5bce188e515936ba2","messages_hash":"6b93c3afd6d1b2f3fede8962b6083ed99ee8f731058a5e60b7a43b2594ff65dd","transaction_count":0,"txlist_hash":"6310ce87234c11efea223c58d571cdbb3f04b51a3056236cd0f22cec7bf1e5c1"}',0,'BLOCK_PARSED',NULL,'e73f258dfd6c1e5d9f0860ce715651a8dc032a17e9317225fdcfe466b1df8618'); -INSERT INTO messages VALUES(1714,310691,'insert','blocks','{"block_hash":"07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e","block_index":310691,"block_time":310691000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'57dce2dd100cc6ffb8f65a3e0cc08fa10a1cff810c200ea0d523f1df3008cb09'); -INSERT INTO messages VALUES(1715,310691,'parse','blocks','{"block_index":310691,"ledger_hash":"86d4a3256d111bbb118869227cc3a609a45d7bb8f207e7426420d38d57a96a82","messages_hash":"1ef6bb05942d114320f97145e138b48f8049648fdb7a498ed1190d7e480d9fef","transaction_count":0,"txlist_hash":"774242c764edd3560409137905de9c9d818364aa94f62c47a621afe1087136ac"}',0,'BLOCK_PARSED',NULL,'c456b9da2c65193d24851341b924ee7b4cc358eec22f21fc438ece01c4456525'); -INSERT INTO messages VALUES(1716,310692,'insert','blocks','{"block_hash":"29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932","block_index":310692,"block_time":310692000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c26ee1af8df0d08c278f0d7a687ccc2ed9b2f92ab53752b1c1ac9dfe745e811f'); -INSERT INTO messages VALUES(1717,310692,'parse','blocks','{"block_index":310692,"ledger_hash":"f9c6d31ef1c89ecbe584020acb89d16e343a06db820beb8b3471037bd7bb5a1f","messages_hash":"a13952e453dd31b30c330a9e67aabdb61cc7b9eb28da51007e3a520da1117fca","transaction_count":0,"txlist_hash":"df166db54b869212308c6a48d3ddb80bc0a84be52434c46d5e6e2d6499167bb0"}',0,'BLOCK_PARSED',NULL,'7f1a9221eefe4928271d199948aa71bbadf174f9949158ca50ee3848e03867f9'); -INSERT INTO messages VALUES(1718,310693,'insert','blocks','{"block_hash":"c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1","block_index":310693,"block_time":310693000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'60941910ca111101c043ba1736c82065390f21e80bbb58d6d463bd61f1535895'); -INSERT INTO messages VALUES(1719,310693,'parse','blocks','{"block_index":310693,"ledger_hash":"f3d27993aa304802c36f3deddef3baf81edb04bdf507a2a5e6e739443ea775b5","messages_hash":"95061c25cc54a351a7a22cd4ff4ae7173864bccd1b6ea7d8ead540b8b0587781","transaction_count":0,"txlist_hash":"992af64c887f105b985137b441ef4a3af3ff902f5dbac355b91bf0ebaa234063"}',0,'BLOCK_PARSED',NULL,'05d458c30899df2bfd82ba7da448032e8dd48f3beeb810571bed267fc8c2a83e'); -INSERT INTO messages VALUES(1720,310694,'insert','blocks','{"block_hash":"586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0","block_index":310694,"block_time":310694000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b48dc9862cc2f49eb620a3d38b95179c819c7ac298dfadb12d96342d43abc04e'); -INSERT INTO messages VALUES(1721,310694,'parse','blocks','{"block_index":310694,"ledger_hash":"2571bbddd1991d25250bcd1789cd861bda55aeff5e70c90fd854bf7850b478e8","messages_hash":"4fd7a64e2d1cfea79d942ac7b358740a3c066cd72c8ec30133cf420f51053212","transaction_count":0,"txlist_hash":"52939845593123714b4bd665600642d14b61a384befa3498c7582806448150a1"}',0,'BLOCK_PARSED',NULL,'edd37086c06560ed1160f13a6afbad5a3bdc17e175ca581eb19951f37febf879'); -INSERT INTO messages VALUES(1722,310695,'insert','blocks','{"block_hash":"a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538","block_index":310695,"block_time":310695000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f0556440fd50b512e4b7baaf41c1f87453ac7b17692151904121e7575f186b7b'); -INSERT INTO messages VALUES(1723,310695,'parse','blocks','{"block_index":310695,"ledger_hash":"e6a29a3329dac5849c6019688653cb9179792254ea263d908ee1840812eae1e1","messages_hash":"b0a954ecb6f6b298444e634e0e35c8dc8e642d4cc766e403d18e013081e38552","transaction_count":0,"txlist_hash":"9b08253a46b87ab3df60af60b519dd0c689c0acaca38bcc33f01000bf6b871d3"}',0,'BLOCK_PARSED',NULL,'06946ea0dec7e61331b9b956e9a850a71f6ea328c59f94c36381515e0249506d'); -INSERT INTO messages VALUES(1724,310696,'insert','blocks','{"block_hash":"7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7","block_index":310696,"block_time":310696000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'57d5d0d4fa5c77f1ccd09274b064cb5856ac00295e5159e8c2c05d4595e8e333'); -INSERT INTO messages VALUES(1725,310696,'parse','blocks','{"block_index":310696,"ledger_hash":"122e4a4d499019a24ee9fcb024541d3ad30e06cda616f82b21a5e18bcaf58728","messages_hash":"c65d6968b5674d0faa3ba0ced721c7bb0e452d06db2cd4cc0c87056b42cd81ce","transaction_count":0,"txlist_hash":"deb12f7c45ab5944a6e08fb2933d3a435860f9e1d8a758486b5e5995258ca973"}',0,'BLOCK_PARSED',NULL,'7b5ad02460ba5827030413f0c0d2da1faab3c132f118322645c1b28cc0baa5c6'); -INSERT INTO messages VALUES(1726,310697,'insert','blocks','{"block_hash":"4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304","block_index":310697,"block_time":310697000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd1690f3c00387f223b61643e5c3f6462d9e27c67805993a5551b49692a6e5cc'); -INSERT INTO messages VALUES(1727,310697,'parse','blocks','{"block_index":310697,"ledger_hash":"ef8ebcfad12ea2bdff5760d7a28fd6e0c9ff1f80c5db666df99daf73bb758584","messages_hash":"1f8c4bf719ff7da97a2ae86354d1d9453f98f772b3302afaf87143d198d2c480","transaction_count":0,"txlist_hash":"663e67da5996a4c9877a6c6cb61730798695aee9d89674823917dee2d1ab9708"}',0,'BLOCK_PARSED',NULL,'8884545ad1fdc4f8ad4cf56659a2a14f6a6a1421ec9a242fb08f872d31da86ba'); -INSERT INTO messages VALUES(1728,310698,'insert','blocks','{"block_hash":"ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53","block_index":310698,"block_time":310698000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d9fc1a58db2a6192f3777621b7c36ca1594498c329888b1d447b3adf9fca6c3d'); -INSERT INTO messages VALUES(1729,310698,'parse','blocks','{"block_index":310698,"ledger_hash":"7a3e7800ae592d461c8d4a90597d65257e14082534f0052e862ea6665151fa65","messages_hash":"124decc91575b2b3b4e5c82252f5bad4c3fbad53d82e2cb387ebdf516582ca73","transaction_count":0,"txlist_hash":"9b6c282c7fb96cbca27fe6b73253cfc31b93ff71dc0d116ebd0d661c33adde58"}',0,'BLOCK_PARSED',NULL,'75aad94ecbd1774c28bd239440496ee75a3bf154563d4b15378ee234e5d0b81c'); -INSERT INTO messages VALUES(1730,310699,'insert','blocks','{"block_hash":"3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d","block_index":310699,"block_time":310699000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da5d21b26031e07555f018ee12f55a00bc0ff7912c814888fa02a1a6cfe0474d'); -INSERT INTO messages VALUES(1731,310699,'parse','blocks','{"block_index":310699,"ledger_hash":"d3ea9e3e4912d71dde006b1f1b2d412d213bee18c8c7606982a08f405c932a12","messages_hash":"b84e80bcae7f2d7d19a8a6deee33b8836bd6bd62b53f9a8d38995bf458c39b06","transaction_count":0,"txlist_hash":"d91fc03fd15e2ca4fc59b7be29586b0c8f2942abca45ccb49f2fc84e3eff8f94"}',0,'BLOCK_PARSED',NULL,'1ef107b44a96b4da09a1bd0c746b05abcd3095919a3adf950797c05145fd101d'); -INSERT INTO messages VALUES(1732,310700,'insert','blocks','{"block_hash":"4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5","block_index":310700,"block_time":310700000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'885a5c06e961cdffb2f6659e43745d166410d2c64262c8b42664b349895fa798'); -INSERT INTO messages VALUES(1733,310700,'parse','blocks','{"block_index":310700,"ledger_hash":"9cac238e8006f150dbd1f09f1743cb50e1870775d67a256ae5c06e0b72fd0b6e","messages_hash":"ab881a7cc3381dbeb809e622050540b87c404a8a723334e4d6b46482d54f325c","transaction_count":0,"txlist_hash":"1977d48057c66abe87f0bdffbcf4d501bd4b9fe138c0bc381409bc44bd503084"}',0,'BLOCK_PARSED',NULL,'e25e6807e3c88cc62a293d3d30bef6a8041d6b6a316699194f78f74fee7f444d'); -INSERT INTO messages VALUES(1734,310701,'insert','blocks','{"block_hash":"9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1","block_index":310701,"block_time":310701000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'be84acb0cfa8f7483b39a50efb780ae9b71f6bef9db97f988a1b1ee92e48182a'); -INSERT INTO messages VALUES(1735,310701,'parse','blocks','{"block_index":310701,"ledger_hash":"562a0f298a796b936c21bf552e6945ed2263b62d4022f7a072dc6a4790173e8d","messages_hash":"965d20b7bbd4c014879731b7ab95f5b38335d80f74c8dc8ccc49e9222144d2c4","transaction_count":0,"txlist_hash":"6b6c62d0facf03efea19bf2e8fa69ecd3c433d45a0ca6b3ed57ed0e5d69b1e2f"}',0,'BLOCK_PARSED',NULL,'cb8bd18c467af6adfee4311dd38aa69469fb5a7a8be88c5a34469dfb79f99752'); -INSERT INTO messages VALUES(1736,310702,'insert','blocks','{"block_hash":"69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8","block_index":310702,"block_time":310702000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'892c3ae138200dfcaf7735bf1ecb087fb3ec5c01c2df6d050470ae89261001c6'); -INSERT INTO messages VALUES(1737,310702,'parse','blocks','{"block_index":310702,"ledger_hash":"7cb406b1ee19e1ecfc41009f312d918ac0574b92809d99dbfd99bac88992a4fe","messages_hash":"2a4a14311bfbe235c7a867c69eeadf9d336667ec2abd8ecd3e9468897b0064c9","transaction_count":0,"txlist_hash":"0b912b59131e6aef7fb3313ef75bc138dc1f612d76e77cf583074564ddb6d35c"}',0,'BLOCK_PARSED',NULL,'65853c91b7f0484a7fce79c8b397ce69137670a7d734e1d85d43af1e6821c2c1'); -INSERT INTO messages VALUES(1738,310703,'insert','blocks','{"block_hash":"b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218","block_index":310703,"block_time":310703000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'73b8b643c738bc1d058359e7ca66e1854193ce6d7d467cc6429f95757896ab9f'); -INSERT INTO messages VALUES(1739,310703,'parse','blocks','{"block_index":310703,"ledger_hash":"cbc22749655ce8e7fb2eeb4d1737a04dec7bc096ce84b00bf83ca4c7040f448a","messages_hash":"704f5a0685b1309b5ba2a9082d9706ae7b9fe4e7b735a008b3c450eeeb2a4460","transaction_count":0,"txlist_hash":"b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786"}',0,'BLOCK_PARSED',NULL,'72f12f8d9225bfe88c43e2561d6e34ff4bb061174f0b025fd2e8f37e204dbf2c'); -INSERT INTO messages VALUES(1740,310704,'insert','blocks','{"block_hash":"53f0dd2f7343658f75508323a5b1761b7e5bc6743c04fc9ee9898ec0fbafd827","block_index":310704,"block_time":310704000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7ddad3a56e7da8a753f5f2544d5b4172e1e177ee8c331133c8e495f8128fbf24'); +INSERT INTO messages VALUES(1300,310506,'insert','issuances','{"asset":"A160361285792733729","asset_events":"fairmint","asset_longname":"","block_index":310506,"call_date":0,"call_price":0.0,"callable":false,"description":"softcap description","description_locked":false,"divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","locked":false,"msg_index":0,"quantity":20,"reset":false,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","transfer":false,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'ASSET_ISSUANCE','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','4c0057166c0cdb16290d48e49aeeaecb396dc60627c3dd13b775fa32c656fef1'); +INSERT INTO messages VALUES(1301,310506,'parse','transactions','{"supported":true,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'TRANSACTION_PARSED','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','24c8a0377a22a9c3ac9deb882492dfcecc7272d2c85fca450386c19861bd28d4'); +INSERT INTO messages VALUES(1302,310506,'parse','blocks','{"block_index":310506,"ledger_hash":"a6482917514b9d828a9981f8f83df92259e751a703f9ae164ef47ff170a19d47","messages_hash":"28e6332ddf3e6b0d879fa141af8cd252b31ee05a93ccb5688ce6ee2d690fd132","transaction_count":1,"txlist_hash":"a6cab6e8bebae804eb791b48d0a484f6526553e3cce266b54b40afb32a02c68e"}',0,'BLOCK_PARSED',NULL,'2b872d5ba7b68b9f6e6681969ec5bea45c77c419952f5acbc32550b42f578c0c'); +INSERT INTO messages VALUES(1303,310507,'insert','blocks','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f7aa4ad6a30158b00a107ef75d3f4f76124e6489995c14b9ce1517fa55370a1a'); +INSERT INTO messages VALUES(1304,310507,'insert','transactions','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"btc_amount":0,"data":"646d6e367133645332456e44557833626d795763364434737a4a4e5647746152377a637c346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383a317c5843507c313030","destination":"","fee":10850,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508,"utxos_info":"c7f048b97f07912138691b7d133baafe98a6a10ffb089e0b773f06ef945d5c36:0"}',0,'NEW_TRANSACTION',NULL,'5fe355dbe799ec8db520c97841a29075d0f611d03a8c1194ba28ca1fc1b3c0f8'); +INSERT INTO messages VALUES(1305,310507,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","quantity":10,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','4c9c59be5128e3f4924d4576485ccbff9bb8e725df4d5c5099519c04d1ed71ca'); +INSERT INTO messages VALUES(1306,310507,'insert','destructions','{"asset":"XCP","block_index":310507,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508}',0,'ASSET_DESTRUCTION','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','6513212f3c6f39e30f9a146dc496586a117f53fda9551d1c1c369d45c538cecc'); +INSERT INTO messages VALUES(1307,310507,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","quantity":100,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','f2e8715bf8c4cc2b2cc62bc042e95ba2e24d6282afd2928802572fec4621f7d7'); +INSERT INTO messages VALUES(1308,310507,'insert','credits','{"address":null,"asset":"XCP","block_index":310507,"calling_function":"attach to utxo","event":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","quantity":100,"tx_index":508,"utxo":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','eaf1d0a762c50322172871ce30579d08a76b3b0269ac903031270af744c26283'); +INSERT INTO messages VALUES(1309,310507,'insert','transaction_count','{"block_index":310507,"count":1,"transaction_id":100}',0,'INCREMENT_TRANSACTION_COUNT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','2601c615484c624fddb00df8f33f78745710a5cc2d5ae962d08461445ac815c3'); +INSERT INTO messages VALUES(1310,310507,'insert','sends','{"asset":"XCP","block_index":310507,"destination":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","fee_paid":10,"msg_index":0,"quantity":100,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508}',0,'ATTACH_TO_UTXO','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','df9fcee2826e03af7192f4c6ee6de1b1706705c8068e1d4aea2ada95da5a82b2'); +INSERT INTO messages VALUES(1311,310507,'parse','transactions','{"supported":true,"tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508}',0,'TRANSACTION_PARSED','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','3a7568756c9765dd1c6c36e9a29fd251df74b3db8246aadfc5b482ad822cff50'); +INSERT INTO messages VALUES(1312,310507,'parse','blocks','{"block_index":310507,"ledger_hash":"46023f1d6accb7aadfeafe56c17609f1d76aa2d6a1dbf123f4b0ff1c095d568d","messages_hash":"f39597e3a242178f633794a4a817394e0cbbacd7e971ef56c7590284ff052454","transaction_count":1,"txlist_hash":"6abb9b0caedb98bc7ad209096e5baba6418d80fb11ab51a8124d2e87e9a591e0"}',0,'BLOCK_PARSED',NULL,'a2b6385b04cf39977dd789726f93996f2cc7792f0a8c7bd9b86ec56a45717717'); +INSERT INTO messages VALUES(1313,310508,'insert','blocks','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2bcd5d65956b137fcd9c188b67034e44e09d49fbe34e785a23e0c307efa2026e'); +INSERT INTO messages VALUES(1314,310508,'insert','transactions','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"btc_amount":0,"data":"646d6e367133645332456e44557833626d795763364434737a4a4e5647746152377a637c346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383a317c444956495349424c457c31","destination":"","fee":10850,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509,"utxos_info":"1c6f52a3ca4d5f1698d2db3f107da787153bf686fc049f2792074916249fc27d:0"}',0,'NEW_TRANSACTION',NULL,'164c7df55299533aeeb396a7dcd6aebf1126a3b1dadf9995f9ad0644bf76d778'); +INSERT INTO messages VALUES(1315,310508,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310508,"event":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","quantity":10,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','4855b3e0c820fb13abaec2dea1866fb2012165f33d784ada485328ba94211e64'); +INSERT INTO messages VALUES(1316,310508,'insert','destructions','{"asset":"XCP","block_index":310508,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509}',0,'ASSET_DESTRUCTION','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','d214f11427dc6cebe849df235acaea007ea86a1a3b070b8c3fafa1043a24b5d4'); +INSERT INTO messages VALUES(1317,310508,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310508,"event":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","quantity":1,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','58b4e25d6870d957925452376f02d78da275b68ac72577540eb63f3c8c55df13'); +INSERT INTO messages VALUES(1318,310508,'insert','credits','{"address":null,"asset":"DIVISIBLE","block_index":310508,"calling_function":"attach to utxo","event":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","quantity":1,"tx_index":509,"utxo":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','c5de6f4bbd1ef3e48d076ed72808968ade8fa609aeb0a47f412b0ab581b89ab2'); +INSERT INTO messages VALUES(1319,310508,'insert','transaction_count','{"block_index":310508,"count":2,"transaction_id":100}',0,'INCREMENT_TRANSACTION_COUNT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','fee54e2c82f5c1d99c78ffb436e80c6067ae33d485718940d47c720d5f821d61'); +INSERT INTO messages VALUES(1320,310508,'insert','sends','{"asset":"DIVISIBLE","block_index":310508,"destination":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","fee_paid":10,"msg_index":0,"quantity":1,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509}',0,'ATTACH_TO_UTXO','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','003b318ad6f3fb817b98be5c2c1c25dcee4bb0e1fdcb13dede9ba654a37141e3'); +INSERT INTO messages VALUES(1321,310508,'parse','transactions','{"supported":true,"tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509}',0,'TRANSACTION_PARSED','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','5645ad674eabbf0f478524c856fed40616ff6f906e14522b75a1194a89a9e284'); +INSERT INTO messages VALUES(1322,310508,'parse','blocks','{"block_index":310508,"ledger_hash":"42e33693a0b51c869b4d34656ee1c86b3114f0e4f600d577ed2adfe0cefbdc61","messages_hash":"3a5e4f099980b4f437879454741f4fec540c39d3636916607d05db25c4b3f163","transaction_count":1,"txlist_hash":"55c18d8da0b5d415d82b40229995123dcf2151b91a8cf6c4e29e8a03c32a847d"}',0,'BLOCK_PARSED',NULL,'e7ccac37e572914bae84b772d9f1316423def15c058342ecbe8d4edf7cb1e612'); +INSERT INTO messages VALUES(1323,310509,'insert','blocks','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d93604ed0bd0f7710efb4f172ed7b28bd6c6add36597ac87b4709ddcdcae562a'); +INSERT INTO messages VALUES(1324,310509,'insert','transactions','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"btc_amount":0,"data":"0000001400000023ded9aaeb00000000000003e80000000000000000000015546573742064697370656e73657273206173736574","destination":"","fee":6800,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510,"utxos_info":"5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0"}',0,'NEW_TRANSACTION',NULL,'31bbedddfb6bf6dc22cd7bc5b6b1586770b6d4bda24b9de4f0aa5c59abdd6a73'); +INSERT INTO messages VALUES(1325,310509,'insert','debits','{"action":"issuance fee","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310509,"event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":50000000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'DEBIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','ff4e04a1d9bbd84efca3252f89a31a1ef4b3072400139ef5540194e4052530d6'); +INSERT INTO messages VALUES(1326,310509,'insert','assets','{"asset_id":"154062662379","asset_longname":null,"asset_name":"TESTDISP","block_index":310509}',0,'ASSET_CREATION','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','595339925744a1e36f2a1e762ccce73fca459a39183ccf73d2e3d5b54b5a720f'); +INSERT INTO messages VALUES(1327,310509,'insert','issuances','{"asset":"TESTDISP","asset_events":"creation","asset_longname":null,"block_index":310509,"call_date":0,"call_price":0.0,"callable":false,"description":"Test dispensers asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","locked":false,"quantity":1000,"reset":false,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","transfer":false,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'ASSET_ISSUANCE','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','a699663ff764af1f83b737bf5ad9caf891fb20b4b78cc075c34021e06e599711'); +INSERT INTO messages VALUES(1328,310509,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310509,"calling_function":"issuance","event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":1000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'CREDIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','97f2ea0b721a66bd252db6223a1508035cafeb2387389f9c59cfc84d7a7ed59f'); +INSERT INTO messages VALUES(1329,310509,'parse','transactions','{"supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'TRANSACTION_PARSED','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','e8a3b2ef33d5862a923bfc27c5c6c754469b5ad49a3ca7514111a2eb524c5f61'); +INSERT INTO messages VALUES(1330,310509,'parse','blocks','{"block_index":310509,"ledger_hash":"235d0dc029e4caf127d479107e93a3f46e87aa5827f0f2c0b020d56fe9ece29a","messages_hash":"679dc0bf8b5e96898069b27791cab667ca6bbf5cf070bdff7ef61902c3deb5e8","transaction_count":1,"txlist_hash":"e8a5ca9c861bda1033047cfb0896cc92d694d0d32343e54b78d861ad5daada14"}',0,'BLOCK_PARSED',NULL,'bc296161dbe1f64834a4fc15dfeb29f34f50a1619fc9cd9078432ad0b02d442e'); +INSERT INTO messages VALUES(1331,310510,'insert','blocks','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff6bff671f11cfa1e9d08270dae356829bdf3b4a7b5a7490fc40e0dd908253b4'); +INSERT INTO messages VALUES(1332,310510,'insert','transactions','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"btc_amount":0,"data":"0000000c00000023ded9aaeb00000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511,"utxos_info":"b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1"}',0,'NEW_TRANSACTION',NULL,'a5951b94da45d2ab5954de6363315469a6d262a5670eed7f61b461908931270b'); +INSERT INTO messages VALUES(1333,310510,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310510,"event":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","quantity":100,"tx_index":511,"utxo":null,"utxo_address":null}',0,'DEBIT','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','4f1c26ea4adfc7a5d036065e24a911d06ba95de8d9d83945b1e316c415ad72f6'); +INSERT INTO messages VALUES(1334,310510,'insert','dispensers','{"asset":"TESTDISP","block_index":310510,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'OPEN_DISPENSER','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','1455e883f0f5b991877872fba68ce5dd0848c912c67d3bae072fd39bf7290757'); +INSERT INTO messages VALUES(1335,310510,'parse','transactions','{"supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'TRANSACTION_PARSED','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','c9758d99b74e9a498d4be51effdf643a800fcb6c79b18b1fae731ce6c222d0e8'); +INSERT INTO messages VALUES(1336,310510,'parse','blocks','{"block_index":310510,"ledger_hash":"c7f578c09530663c28499e2ee2095e887e79ae469c2296cfb95f0c1dc3920a34","messages_hash":"4210e9160abcdb0b1590a7c151d2086c045e16ef4d28e1daf82736b4bfbcd134","transaction_count":1,"txlist_hash":"58e8efe3ac6c19011d997f77a3f38bfd99ccf17ff15615ceeaa8fd1d02f2b73b"}',0,'BLOCK_PARSED',NULL,'1bc4b92c40616d724de6cf9f544acfdf37c5cc1884cce09c448c3c69725a9844'); +INSERT INTO messages VALUES(1337,310511,'insert','blocks','{"block_hash":"e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c","block_index":310511,"block_time":310511000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e625d315bac56f9d85844bcb9b5999ed081fadb5ce6c3ca5de17b3acf3942f3f'); +INSERT INTO messages VALUES(1338,310511,'parse','blocks','{"block_index":310511,"ledger_hash":"6239525a9f6bbc01b5cbe0c5bbec47d77c179c1e03eb07f079902f4be6763124","messages_hash":"c81f12b1a5156c3ac9c4bebf828e3f99b21e05437e107ed7ced5ffac7ae55ec7","transaction_count":0,"txlist_hash":"cb29377641d10173aed43643d32f6935da6948a7fdc854f4c5f7f3bf8d6f9721"}',0,'BLOCK_PARSED',NULL,'1529197882c6cee43d99310f3897b7495d8fb557ee8f9d6b31e401b7e27a1670'); +INSERT INTO messages VALUES(1339,310512,'insert','blocks','{"block_hash":"8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5","block_index":310512,"block_time":310512000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ddaf3adb7368bfbd0842c7ec3d1ffbc536c9dfcaf28b92047b9e13cd26cdea55'); +INSERT INTO messages VALUES(1340,310512,'parse','blocks','{"block_index":310512,"ledger_hash":"d35febbe0916a862b9ee2c4f251bfd1bfda7c6a646d73baa7cc49c07a6c516c5","messages_hash":"a4130c3b9190ae20f97e4f0fb1b0192e034e16702339a28dfcec4c8d1723679b","transaction_count":0,"txlist_hash":"4f745e593c05074836d20561b50b884ffd4e1c17eb9666ace1c2eea5f51e7d50"}',0,'BLOCK_PARSED',NULL,'20e53542d8726035fe98a906c6d5a1c005c72f762bf31bdbdaea16dd949c6522'); +INSERT INTO messages VALUES(1341,310513,'insert','blocks','{"block_hash":"ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66","block_index":310513,"block_time":310513000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f4f9757ee1e943f3c5b577d47819a4f0e5c95137b2cac3c64ddc0cc6aca718e3'); +INSERT INTO messages VALUES(1342,310513,'update','order_matches','{"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","status":"expired"}',0,'ORDER_MATCH_UPDATE',NULL,'5bd380cacbf0b9e38db7dcaad2ac14261d8491a7c7da7d259ddee5654b461367'); +INSERT INTO messages VALUES(1343,310513,'update','orders','{"fee_required_remaining":900000,"get_remaining":800000,"give_remaining":100000000,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE',NULL,'68bb7f9c4d20724eff4e75f74f41b77e599c68694f5c62ed4d70a68af9d4d93f'); +INSERT INTO messages VALUES(1344,310513,'update','orders','{"fee_required_remaining":0,"get_remaining":100000000,"give_remaining":800000,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE',NULL,'6f354be6ea3f752fada2ce0cfa036374193b72daaba137dbb67cd1e9d4576aa7'); +INSERT INTO messages VALUES(1345,310513,'insert','order_match_expirations','{"block_index":310513,"order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns"}',0,'ORDER_MATCH_EXPIRATION',NULL,'415b7fe80da5ccae4b8aac18c88d46e358f22cb3aabf6ba0576389d2aa66a807'); +INSERT INTO messages VALUES(1346,310513,'parse','blocks','{"block_index":310513,"ledger_hash":"cd8114c0a364dd048cdee17ca46eae739f0cb6c627a6643c471700aa346d8acd","messages_hash":"09dc56829f629a2a085e9268064ce0c72680e16c28a3eeedeb2bc2d4612bf89f","transaction_count":0,"txlist_hash":"e82379e2bd481f39e310670c046d855855c476a4bd0dab621ea06ccd2ac136fa"}',0,'BLOCK_PARSED',NULL,'5e3c5ed9e4e7611d097d478d3ac3cb5f3fdf01464a556e6f0c57b762054e8cc4'); +INSERT INTO messages VALUES(1347,310514,'insert','blocks','{"block_hash":"39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7","block_index":310514,"block_time":310514000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'66a436e0f332a8e7412a12af1468faae8a11022eaf9b048344f4474164557dc2'); +INSERT INTO messages VALUES(1348,310514,'parse','blocks','{"block_index":310514,"ledger_hash":"365c48b6ff26da8d5bd9b4437c7aa70821c71d6e7b928010557bef02599084cc","messages_hash":"73bc3d0a3b58d7ce8895a184c23cf15ab6d81851378349e93e4ce1b55cbccb5a","transaction_count":0,"txlist_hash":"c99f21e4275501cdcadb134b8a409da50024832c8ca849deda3161d8b026f1a1"}',0,'BLOCK_PARSED',NULL,'c56359a4b4396cf50ff124d6017fc0a2c18837d89adc096ee52dd8bf5ab11e47'); +INSERT INTO messages VALUES(1349,310515,'insert','blocks','{"block_hash":"57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8","block_index":310515,"block_time":310515000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4001dd0628287bd209a1a258a278ec517f3baefc9d13f60bdb81534c85f3ef4e'); +INSERT INTO messages VALUES(1350,310515,'parse','blocks','{"block_index":310515,"ledger_hash":"8634b0d6d0bca6baff864b0f840df2b07edab19310ad30f09c377d49c4cf31e7","messages_hash":"8e74dd022fbea59b7cd8f19e411d6111f50e5c8210d1bf2d7c5454c9f0d39e3d","transaction_count":0,"txlist_hash":"ee33ce8f40db45f132b15d60daa3935ee8da4593c31f65ea269687594a2c5051"}',0,'BLOCK_PARSED',NULL,'c7669bbdf72cb23fab8b2e54969c4974ac8793b06a35a6baef64794c0b77bc4f'); +INSERT INTO messages VALUES(1351,310516,'insert','blocks','{"block_hash":"ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7","block_index":310516,"block_time":310516000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'947461d1a1098e144ce284860ade500a346032901cfcb061a70b55fdc69a6c85'); +INSERT INTO messages VALUES(1352,310516,'parse','blocks','{"block_index":310516,"ledger_hash":"51192dd22fcd1d3e93abb964beebcde830dc1c6f6090f765455367df8c3d3236","messages_hash":"6efa1bb98927a933710b1723a8614d581c29aae3e49c1642efa3ddf66e772f51","transaction_count":0,"txlist_hash":"a461fb607e3e3480b92d679204388b0aa2d2785cf5860e3539be8b41e1702341"}',0,'BLOCK_PARSED',NULL,'171afa1146909cf9518f7d43052a51ae59534afbf3d732c06ebdc219540b4601'); +INSERT INTO messages VALUES(1353,310517,'insert','blocks','{"block_hash":"defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407","block_index":310517,"block_time":310517000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fa3b754d9d44124c4ad6ccbcfb89b65644cb9d63a7570de4548c245d3109eeed'); +INSERT INTO messages VALUES(1354,310517,'parse','blocks','{"block_index":310517,"ledger_hash":"1143898cf831bd8371c3c892d8c8d7606199849ff7a9a1f031f9232d7c411ad4","messages_hash":"0a11cb375044ea73668a1e0c52be2963d368356b31ae5fc99005f17f54075689","transaction_count":0,"txlist_hash":"9bacdf0026c8297570a7d50e6c372bd5a04ed7f748f820b33e7e93340ecb69fd"}',0,'BLOCK_PARSED',NULL,'b7d33b7ffea5b23e8dcf599baadc840c39fb706162c62223728189037327ed06'); +INSERT INTO messages VALUES(1355,310518,'insert','blocks','{"block_hash":"41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5","block_index":310518,"block_time":310518000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'386e7fd3b4bd4582dbafaea6cce970da8f83ccd8acdf5958d3383c38945fae17'); +INSERT INTO messages VALUES(1356,310518,'parse','blocks','{"block_index":310518,"ledger_hash":"dd1f5326fc49b284dacb6d6738599a6b4592e5250c5bbde45b88482a13f74373","messages_hash":"e5b8f337585825b72253026901d1a2ecf732d23c11d236bbc98a5bbfdc7727ad","transaction_count":0,"txlist_hash":"66af0cdab6c52ca6b8ce731143739553d62e1986de0478e346dbc42e570f1503"}',0,'BLOCK_PARSED',NULL,'98eacd907de1f462ec2294bcb5e8c8cf9a3aa7b3cae7fe53e98d4ae6e57d4d41'); +INSERT INTO messages VALUES(1357,310519,'insert','blocks','{"block_hash":"9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a","block_index":310519,"block_time":310519000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'39b02b81b1831217317c6c83ba2707fb2dda0dca0b76d5ced5d9f4ee3a822b72'); +INSERT INTO messages VALUES(1358,310519,'parse','blocks','{"block_index":310519,"ledger_hash":"19f3569d9b1512c42118014c8f6fd1562e61336d7707a0838a35d0e8513f5b5d","messages_hash":"7c8c064400f1fa49c5ecd3f21071a71ba69ed09bf4a616b5a86a8e3ccfb54237","transaction_count":0,"txlist_hash":"67662c882b46c7a5ac62a01e7ca43e1290e1fee20a68ebbd1011b93b9f8d00d8"}',0,'BLOCK_PARSED',NULL,'197fd9b45a0f86aafe80fec3e27fad316f69227fc42f5ae5a332275b092a3b63'); +INSERT INTO messages VALUES(1359,310520,'insert','blocks','{"block_hash":"ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680","block_index":310520,"block_time":310520000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8cace5c772c3a54e04c9d7ce8c07e76f881cd9faf3218c4ace531393b64afe5b'); +INSERT INTO messages VALUES(1360,310520,'insert','debits','{"action":"unescrowed fairmint","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310520,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":50,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT',NULL,'178ed3d8fba9b9cdf66f1014102e827f91d7b485181ce14ae47bc967b57eb7a9'); +INSERT INTO messages VALUES(1361,310520,'insert','debits','{"action":"unescrowed fairmint payment","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310520,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":300,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT',NULL,'efead171a53302d4208eaad19cd2b85e274ab6fbc0bb1e80fe1f26552cead4f6'); +INSERT INTO messages VALUES(1362,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310520,"calling_function":"fairmint payment","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'67494ea21e679181ec7c27dede3ad0aad431073be62070b660bd99a42f3e7baa'); +INSERT INTO messages VALUES(1363,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"unescrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":7,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'8b3d615ea7d3f1524aa4298404a06958c5ec96b593272077ff1c9a9060123719'); +INSERT INTO messages VALUES(1364,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"fairmint commission","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":3,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'6dde9e5229c84d263a108fc017f6543e9a2ef140de375986d610ce89468e908f'); +INSERT INTO messages VALUES(1365,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310520,"calling_function":"fairmint payment","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'a88fa915990ec3da3ea63df7068c9ef80fc4fc9abcac1cb53985527a862254b7'); +INSERT INTO messages VALUES(1366,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"unescrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":14,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'421aa14bdbc545cb71cd6de256dc4304a73195ef56ae5354eb6c8811d165e419'); +INSERT INTO messages VALUES(1367,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"fairmint commission","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":6,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'4b6fafbb329231577f8042cf90ec953d7f07be40b215fcc0c489f632d5fbd5d2'); +INSERT INTO messages VALUES(1368,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"premint","event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":20,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'42dfc5d21af17c4f23493ecc049c08a79831900cc3eb99e02bb8ff605e8c84be'); +INSERT INTO messages VALUES(1369,310520,'parse','blocks','{"block_index":310520,"ledger_hash":"4dc209a7fcabd4ed54f9702acabeb0369cb9872342e101407241c71bf5f5023b","messages_hash":"c0f245b00cc0c997187432e32912d4e72cdbae89a15c62df0763f4d552125a87","transaction_count":0,"txlist_hash":"4ae19f415141f11f6c3b72d24512114ff7c06d201e2ee94aefb58e9f1921964b"}',0,'BLOCK_PARSED',NULL,'a6b6a328219f5db213f3b38622fb198501c727b2362809d7ff9d645bc0be7f95'); +INSERT INTO messages VALUES(1370,310521,'insert','blocks','{"block_hash":"df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598","block_index":310521,"block_time":310521000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9d7513ccc6daa39401ba798f2bb000d160a2a9ab722a928ff16804972f6956d5'); +INSERT INTO messages VALUES(1371,310521,'parse','blocks','{"block_index":310521,"ledger_hash":"d237ef834b20f71ef49c9f35e1700bcdc59bcea9d340dd1b83b2046fba5c4a49","messages_hash":"9dbc54408689848146690f88c67f212938670b02bc4105b5375dc04e17802e25","transaction_count":0,"txlist_hash":"243a864c8243f71fa9cfbbbb25e23547337dc04b074d1aae2408a82b11ad3c15"}',0,'BLOCK_PARSED',NULL,'44296a650e83b9dfde852bd556f8100df3db3f2132bc0d0654e9feda0eff6ebc'); +INSERT INTO messages VALUES(1372,310522,'insert','blocks','{"block_hash":"6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21","block_index":310522,"block_time":310522000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'460260cf32220964efbd180348094e83c256e691c003702f2ac89df02bd05692'); +INSERT INTO messages VALUES(1373,310522,'parse','blocks','{"block_index":310522,"ledger_hash":"396fb8702db3ebde1fc334fdb622f37f1a020d6050850ebb424bacbb6acdf163","messages_hash":"d8f9e110a1275167c10ca56de86343c1a2cc6c444214f75566955b01303c0367","transaction_count":0,"txlist_hash":"f8d7f3eeef9c11dbb8c8ec8bf5c06e4eacfc812151526c44a4208bb8d585a973"}',0,'BLOCK_PARSED',NULL,'fbbdab7d892fad19e5542d1c5c97e1eb0bcb4a0cfc3942a9790e0440976120c0'); +INSERT INTO messages VALUES(1374,310523,'insert','blocks','{"block_hash":"0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453","block_index":310523,"block_time":310523000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d04c8e815e7b401c5be2c0526ad245b8da6617406033b6eef653bef5db619fb5'); +INSERT INTO messages VALUES(1375,310523,'parse','blocks','{"block_index":310523,"ledger_hash":"716de5998e8b20af5de5df56a9a881d392481f0b1b261d3fcdb51bf52d6f69f4","messages_hash":"4e1b02274bf01a7e2d08afe62a7f99f5ff4b107d131323bfb7c6b405089c4d6d","transaction_count":0,"txlist_hash":"065b22682abbad6d9076204a74a4be79acb71b8a8fd715ad334c3351f35f75dd"}',0,'BLOCK_PARSED',NULL,'a166be05877341cd4b1a17f0e931f7e4e2bff819f51df803bb7fb3125565a83b'); +INSERT INTO messages VALUES(1376,310524,'insert','blocks','{"block_hash":"b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655","block_index":310524,"block_time":310524000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d2bc745ffb6fc719b172d52cc58b64f2e4bd92e97e78acec222b731c9fdf855'); +INSERT INTO messages VALUES(1377,310524,'parse','blocks','{"block_index":310524,"ledger_hash":"012bb0e462fa1a4a143f13b750bed77ac06885731e04b47e951023a8e749460e","messages_hash":"d071e4d339d393a000a0bb261fe51fffb5da4ec6d8c8f23cb0d868ef45e86594","transaction_count":0,"txlist_hash":"7b1d9d04b71c2b8f7aa31cdef567336e6f1dfba44fcb4915696ab498c72364d0"}',0,'BLOCK_PARSED',NULL,'d97663974dd1eb228f6b2414222b00b3acd85ede4e27121d0ba7525ba418eeac'); +INSERT INTO messages VALUES(1378,310525,'insert','blocks','{"block_hash":"2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9","block_index":310525,"block_time":310525000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6e8a168952d7ee899dce75aeacefe21c14267044f0d04a39c87431f8996cddd'); +INSERT INTO messages VALUES(1379,310525,'parse','blocks','{"block_index":310525,"ledger_hash":"34fb519efe88b96e003c466c03520229ee428f4a9ed3209c07f6889a8b2fd9df","messages_hash":"b0293fbc9f4cc6206069cb15ff54d6f3aba5008397e191ff09200b82751ee9ff","transaction_count":0,"txlist_hash":"52694ea9983ac76659645946334a071b7b5e86e295155526e3a27cd87d81cc87"}',0,'BLOCK_PARSED',NULL,'6052a562c93c943090b280c5c7dd2ab0756dc458918c122021a998124c7d9795'); +INSERT INTO messages VALUES(1380,310526,'insert','blocks','{"block_hash":"07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d","block_index":310526,"block_time":310526000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5333a39b266e3663387c8f5d75a400ae40e6fd7aee3798f6ace3c7bd88aa3321'); +INSERT INTO messages VALUES(1381,310526,'parse','blocks','{"block_index":310526,"ledger_hash":"e07a98f8ae58676a9411517423e134d3d1fae321c2b43f51c25333e3c1ff2202","messages_hash":"d2e0aea65d2fbe62274725d05c480ba1bb66d3afaf02afabb2dec9cd170860d2","transaction_count":0,"txlist_hash":"7c47526dba085953aa0d343f0e5b51520d69f92b3046013d0fa0ed6632b74b4b"}',0,'BLOCK_PARSED',NULL,'58909f770d50dbe365b1950748d7d3735b21b1923adea5163952b190f76394a4'); +INSERT INTO messages VALUES(1382,310527,'insert','blocks','{"block_hash":"5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db","block_index":310527,"block_time":310527000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c219e51e272f104c32adf91ada0883599039c98f762a1c445d17d191471ebf6'); +INSERT INTO messages VALUES(1383,310527,'parse','blocks','{"block_index":310527,"ledger_hash":"bec0659c9057fdca682d4d6ab1064ca6ee5802462d154657a3b276fa1be1f673","messages_hash":"3c436fa842ef6ebd90e6c0794f46b0d5583341a406b7b8712af3ef7c79206aaa","transaction_count":0,"txlist_hash":"8d0d0b180ebfe5738144b9e1f8e81f74a90cd81fc7bbcd6490881b8554ba12b8"}',0,'BLOCK_PARSED',NULL,'999a883eaa71420cfdc958e95792a8a5b3d1362c54d623a103ace25f23e37b4a'); +INSERT INTO messages VALUES(1384,310528,'insert','blocks','{"block_hash":"a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5","block_index":310528,"block_time":310528000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'50363049ad1cd8a00ecf9e040164bc0fa19a480fbeb01956a5db159a9cb60966'); +INSERT INTO messages VALUES(1385,310528,'parse','blocks','{"block_index":310528,"ledger_hash":"abe61beda3ee6914cc347edfd2ce26a0ab1c5628bddae3327f88043603f29f2f","messages_hash":"6c5e06f8428a1f1d7cb00c06b7b16d53663c6381f5f09f2faa40a0931df666ff","transaction_count":0,"txlist_hash":"6f1b36c493186bfc813d2e3638d0fa2dc68c2ca7f0823bf3935a2c7d2539da9f"}',0,'BLOCK_PARSED',NULL,'68a35a74e1ae82fa8ba63f25b8792df0cc03294a93197761c978b49a61d6a41f'); +INSERT INTO messages VALUES(1386,310529,'insert','blocks','{"block_hash":"7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b","block_index":310529,"block_time":310529000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c6334b0adb6811790818da49b49b8de4bb1b2fb90e9ffac73db2a6e8b160286'); +INSERT INTO messages VALUES(1387,310529,'parse','blocks','{"block_index":310529,"ledger_hash":"088fc3809dd410e8a239e2da6f1938683c437c46f95975a440dcced41f0c73ce","messages_hash":"64d3e101b025913dfeaeb36d526e52f52a16fc846bc1bc85078ab5d5841d6fa6","transaction_count":0,"txlist_hash":"7e4232af9977eb670466868d83e6df5ddcb39d899f33ef653b87d58b422ab64d"}',0,'BLOCK_PARSED',NULL,'1293a66bb99ca96cdaf7d9b325011110860e41af5169a917ec2500d595f1df0f'); +INSERT INTO messages VALUES(1388,310530,'insert','blocks','{"block_hash":"f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110","block_index":310530,"block_time":310530000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e8ba68cab63d9c150a278c81448947c03dc52bf20ac912feacb79537ccb0cd33'); +INSERT INTO messages VALUES(1389,310530,'parse','blocks','{"block_index":310530,"ledger_hash":"fcbe1d8b65bb77008da77ba5010c8ea58b23bd7789c734961e287e59b4408816","messages_hash":"36b7fd1c927d3b134e688322f0120f5ca7187d3fa7100829bd452f796399817a","transaction_count":0,"txlist_hash":"7e4077941dd95a2b0e51b0ad680935a7232fa5cf31f664150510172e4c2e6da1"}',0,'BLOCK_PARSED',NULL,'6baa76ffc962a3d995c6519b7b11268f4e13b17ecc1d149d668cd3e4e7c2b6e0'); +INSERT INTO messages VALUES(1390,310531,'insert','blocks','{"block_hash":"764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15","block_index":310531,"block_time":310531000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5e73f843c3c9e23dde2f7e84086e07bbbec6edee5d8980cffe462a230fbf1640'); +INSERT INTO messages VALUES(1391,310531,'parse','blocks','{"block_index":310531,"ledger_hash":"d8e06cd95b4938a8f555867d4a71852bcae6f10c0fa90ae73cc3479ed4930024","messages_hash":"d41b8fcb01d237cc1a742c86825c22547f8e71a0c48df975e3adb13db69efd08","transaction_count":0,"txlist_hash":"1245439b0d3fff0822ebed6e6ca34f99f24194cfb36fb2649ed61b0ac26ed7a8"}',0,'BLOCK_PARSED',NULL,'45ba3b88c4c05fe02f693612eaafe404acbf7c3949866cf17da8e3940da73526'); +INSERT INTO messages VALUES(1392,310532,'insert','blocks','{"block_hash":"4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836","block_index":310532,"block_time":310532000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'95dd6aa199f429368a7aa3039606a00ea812ae24076c97d15a5de4270ba6614c'); +INSERT INTO messages VALUES(1393,310532,'parse','blocks','{"block_index":310532,"ledger_hash":"3b6b5430613573b986db19a9d39001eaa83c7f894da2c533e4bb507e09790fa5","messages_hash":"e5163e57a82f167d43ea006137dab0ffa9639d988a97bcabcf351525bfabf47a","transaction_count":0,"txlist_hash":"6004fe4cc5ce025759106802ff56bddaf546e7a9d71510e49a4098766a794726"}',0,'BLOCK_PARSED',NULL,'4c6a24b7d833853bff2d4ae825cf8db28085172ca4673e533663dd93b9c36725'); +INSERT INTO messages VALUES(1394,310533,'insert','blocks','{"block_hash":"4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912","block_index":310533,"block_time":310533000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d9f5517cd4e6a02239ccbb8ecf2a4a3e44c9455bacedcb6b8c065834a339d49'); +INSERT INTO messages VALUES(1395,310533,'parse','blocks','{"block_index":310533,"ledger_hash":"16c00e17f045fde4640b38688a680467ce55b8e5da29ae04a1d60f46791c0f5e","messages_hash":"6f857fc829e68f39bd141a2048c736511e6a0a1ee6eb9b2f3e5de5345b0cb5a0","transaction_count":0,"txlist_hash":"b9a73939683499b11ce35245014153232ddde14a49fbcc8cdcac3f02c9265a72"}',0,'BLOCK_PARSED',NULL,'1aedb07231b579180aee797b4b83c383445bd7ab02ac0619c3e945fc38aa5290'); +INSERT INTO messages VALUES(1396,310534,'insert','blocks','{"block_hash":"2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad","block_index":310534,"block_time":310534000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'83af295c62e68fba70083078e5d3f301a441d6aa99b613bd85cb8cac4e3fd4a2'); +INSERT INTO messages VALUES(1397,310534,'parse','blocks','{"block_index":310534,"ledger_hash":"559ab2ee9e5f74830636547b35497f32e54b79a2836a15abcad6d1f7219b134c","messages_hash":"f540e77c6be63630a5ac6037eaa21044fb95b707d9e71d8b1bf60f2f2ca196cd","transaction_count":0,"txlist_hash":"36dfe8e8614a4f5046330df939031d7618e0c5ec9a5e9a23adfb5abf81b17832"}',0,'BLOCK_PARSED',NULL,'fab093bad528eda03d2ef9bab85e02148af6a3d24a800b398d59be1dacb92273'); +INSERT INTO messages VALUES(1398,310535,'insert','blocks','{"block_hash":"0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce","block_index":310535,"block_time":310535000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d564f3e67764690bccea40ba8e231b1e56b6410a67717c2456f6966a97425d09'); +INSERT INTO messages VALUES(1399,310535,'parse','blocks','{"block_index":310535,"ledger_hash":"6297330a254c027ea604f2866961e47eb7c1ad1d91e14017c5c271fffc124f4f","messages_hash":"487033cfbcd2094f7258e399bafaccf40dea7cc539a7c838973d6512fc001fe0","transaction_count":0,"txlist_hash":"9be9aa1d1972bdb4febf132b2003528501375ed67a70a92efdebdeb4c1b98a90"}',0,'BLOCK_PARSED',NULL,'9b48ae19957ae55e59e08901d714df39e4e1a02a7782c442aa67e8861c81556f'); +INSERT INTO messages VALUES(1400,310536,'insert','blocks','{"block_hash":"dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018","block_index":310536,"block_time":310536000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e39e455df5d7605c0cddf480edd79fc37c1ed4ea658a0907e83d5056e8ae1e4e'); +INSERT INTO messages VALUES(1401,310536,'parse','blocks','{"block_index":310536,"ledger_hash":"2fb53adbae88c7732ff5fcd0d8f1293c77bca3c724a24612518ea4eba8f8c0cd","messages_hash":"1b526baf47b208323ed9dee940b51d3ef9a7cebc65498f9a19024d5993033a8b","transaction_count":0,"txlist_hash":"f2187b1c129b489914599faed5415ba0d52a0bc44e49453df54648a30f505ce2"}',0,'BLOCK_PARSED',NULL,'878e2b94eef585388b239a8bd68cbb7e756cc65ea458b372c5e2cd4c936be266'); +INSERT INTO messages VALUES(1402,310537,'insert','blocks','{"block_hash":"944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d","block_index":310537,"block_time":310537000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'86ea359f58c49992401e5afa61f828a172e93c3fbcfb02c9ad7769e782a584ee'); +INSERT INTO messages VALUES(1403,310537,'parse','blocks','{"block_index":310537,"ledger_hash":"3f00c364eca726cd27673c7800bbc826acd15a2b89856b4761d87afc541da98a","messages_hash":"1e7d95c74d6cf6beb3010a52f78348c609381680e4d485261a35953f202705eb","transaction_count":0,"txlist_hash":"849255d12eb06d2dbf9ebd04fe0a99602216890abe7cb6faae4b13fa3dc0b3fd"}',0,'BLOCK_PARSED',NULL,'318ff9cb17d162caa3a2bb363a3e1a4f0bda48dce81d89867933a00f8d19e994'); +INSERT INTO messages VALUES(1404,310538,'insert','blocks','{"block_hash":"75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd","block_index":310538,"block_time":310538000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'457e1c10f7348df0a5677177d6ec16b6be773a5993822b435623a61c5843dea9'); +INSERT INTO messages VALUES(1405,310538,'parse','blocks','{"block_index":310538,"ledger_hash":"3970e5757fff4155578e8887d0afd1b54341522ee330b301efbc6ddfbcccf80e","messages_hash":"792a702f3508262f0551de97be9a4a68f344fbff979a8647aa9c90aa406c7c28","transaction_count":0,"txlist_hash":"8ab5b08a8f5f57d62cc8fdaefb001fb34757bc7dfa355311af7e993338c15e80"}',0,'BLOCK_PARSED',NULL,'307a3d8b5fbed7fcceffd2033f58c8f4487ffdf5e04a004db4182343a6fab054'); +INSERT INTO messages VALUES(1406,310539,'insert','blocks','{"block_hash":"338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3","block_index":310539,"block_time":310539000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3e2cd4e914a449ee33b0a43e27490898a17d0ee1c31c67bb8edd4b6537fbc29b'); +INSERT INTO messages VALUES(1407,310539,'parse','blocks','{"block_index":310539,"ledger_hash":"7dcecf391af529114932f3501fe2d1850d8c0d0dde8484ff484a989a14f773cb","messages_hash":"febd20714599577f7b253d99cbb5166bf5d1de6df507709b5ec542ef5debe1d3","transaction_count":0,"txlist_hash":"f889de9308ec0bbca7f214cc8c81030ec5317cb72dddbb97dd3b00a002c4fa64"}',0,'BLOCK_PARSED',NULL,'2c533d0a50124e2f464b778fb10f46f2f91598d47d21d61b76e37e2c39f142db'); +INSERT INTO messages VALUES(1408,310540,'insert','blocks','{"block_hash":"0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d","block_index":310540,"block_time":310540000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ceb271d0492f204a12fd456023f5ed50ea8b68280e01005bbb218e23fa1ba9bb'); +INSERT INTO messages VALUES(1409,310540,'parse','blocks','{"block_index":310540,"ledger_hash":"cea510e4d7985dd66e635e41d5565ca3e61e722ebc49e989515f6de67ceb7de4","messages_hash":"73f773b8355f1ebfa8e603d999672a760d7d18fd625f222730f136030e64e85e","transaction_count":0,"txlist_hash":"474f6e2a51277c8f90f02aab78058b6b9c7e3327d0cec325ff6002e058148496"}',0,'BLOCK_PARSED',NULL,'ca2ac1164bfb00f6449c6f016d3dbe64cda89061ac27b6de7255e47f18776824'); +INSERT INTO messages VALUES(1410,310541,'insert','blocks','{"block_hash":"ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453","block_index":310541,"block_time":310541000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'573f8f1a17db184e1e2a01b1b516261d106f477a9bac850e4c33cffd492cd5c3'); +INSERT INTO messages VALUES(1411,310541,'parse','blocks','{"block_index":310541,"ledger_hash":"54d1e29f86b81368d41f033cc6b32357e20ac3a1deea064917e45e72eb846496","messages_hash":"65f4a7188f6120499aab2c4391a19144cb91e874a8727c17afdf9513304058b3","transaction_count":0,"txlist_hash":"0b004058cd27a1be5261693a5203d69c14f2ca5b3105d21bf28ef3f49273f885"}',0,'BLOCK_PARSED',NULL,'62b27be73fa05b519205e268cd3346b1b5f1d8ee334a642ba6d2f723bf6d14bf'); +INSERT INTO messages VALUES(1412,310542,'insert','blocks','{"block_hash":"7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2","block_index":310542,"block_time":310542000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e112f80d68823df1c1199850f93595d53c2db20eef9e7a71de08a4e2cdf46593'); +INSERT INTO messages VALUES(1413,310542,'parse','blocks','{"block_index":310542,"ledger_hash":"33b6c29332fd01db5ad754d5749cb539a0cf5d5d33bcaae36fa672b04deea305","messages_hash":"137becfd281afe3f548c28a90def5d0b48f7be648ee9d05039f59b1445a9f91f","transaction_count":0,"txlist_hash":"7553c0132cfd45b14cbab4f1e59510933069a4f3b82be8a0e2f13d08e3a06cf3"}',0,'BLOCK_PARSED',NULL,'e36af530e41af8da36000473689e2e06ea8e7be42360337d9d85c96f9d29e9eb'); +INSERT INTO messages VALUES(1414,310543,'insert','blocks','{"block_hash":"cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2","block_index":310543,"block_time":310543000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89e124b0852295b570d18011e60476981d6057aaba3816db454f29e0b046969b'); +INSERT INTO messages VALUES(1415,310543,'parse','blocks','{"block_index":310543,"ledger_hash":"f4292ee5fca358df10710105815494427470ccfee0f411a84ce53a11d8a05fb9","messages_hash":"ab7557c521506b8d0e4f19247b027764de58fc3bad90fb3ab464be043809dbeb","transaction_count":0,"txlist_hash":"f7e56981d310a7b8a06ea7ce6c4d4091ce35e4a8023ada8890e952453dae8201"}',0,'BLOCK_PARSED',NULL,'7f17d86fe650c191694d2c41d71eb9697c2f615f0c9607cb61a738c96fec540b'); +INSERT INTO messages VALUES(1416,310544,'insert','blocks','{"block_hash":"c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6","block_index":310544,"block_time":310544000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e82a123bfe849f027da2c17aa3b097597c4185cd21545f6488d114eb1f862b60'); +INSERT INTO messages VALUES(1417,310544,'parse','blocks','{"block_index":310544,"ledger_hash":"08a08208b1b3c32d6ace3f59d51a9d038f08e993dd2df5f7c88adaeea0b1ef0b","messages_hash":"d064b5c40cc92a4fb4f46da1a72a9c7b8d8fb4365c462eb486b7ccb5f6ca846a","transaction_count":0,"txlist_hash":"bdf0fae7bf5083ddc2a99a4a7efbaece20070f0145e44b67567f71c90b29ca2e"}',0,'BLOCK_PARSED',NULL,'adef9c6a655eac8a735208f52609c8230976e9e42dcb817ba26f6e6d2c69e999'); +INSERT INTO messages VALUES(1418,310545,'insert','blocks','{"block_hash":"aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a","block_index":310545,"block_time":310545000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'600bc063a6770631cafbfdc78b8a3e34e270f122f713016a40c1986ce4a3d823'); +INSERT INTO messages VALUES(1419,310545,'parse','blocks','{"block_index":310545,"ledger_hash":"2eae28fa50bead38b3be859f5b5659af380c2aa008bc4c3d19327b0786ce5241","messages_hash":"06aa09de6ff2165e6afffa8255b0dd8977d91e01d8a9bb8cd12a4bf10c3152b1","transaction_count":0,"txlist_hash":"9a25f3b3bb017cd926e1fa8b768324a147979f518208c106ffbad1b5fb8d502d"}',0,'BLOCK_PARSED',NULL,'942438eefb02a5cad1d5be739a85d6911f21e5bdbdcb4afa45ac22d06b7e524f'); +INSERT INTO messages VALUES(1420,310546,'insert','blocks','{"block_hash":"20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d","block_index":310546,"block_time":310546000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e868524ec246a4d1b6d77bbd1be3d5269f3c6558d5b5e78574e12229ea00c1a3'); +INSERT INTO messages VALUES(1421,310546,'parse','blocks','{"block_index":310546,"ledger_hash":"5d71fc815f19de02f829ef5174847c7248a56dda7440ec3d0faf20c1c0148d1c","messages_hash":"554a964c5f5d6cd19d17bd3a32935755ded976712b81e4a1ce144e95c248a9ad","transaction_count":0,"txlist_hash":"cff6edc9625c136443e036d39b1ed3cc5e76a49b919795f05cb92e508e4cead5"}',0,'BLOCK_PARSED',NULL,'6d8078736714939f880184c99e23d6ad8f7dd512f9ae7624aa302019b23cb392'); +INSERT INTO messages VALUES(1422,310547,'insert','blocks','{"block_hash":"f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7","block_index":310547,"block_time":310547000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d33f698d55c776440f75b494b394265cf4b011fde3cfbeb9190262548923cd36'); +INSERT INTO messages VALUES(1423,310547,'parse','blocks','{"block_index":310547,"ledger_hash":"7da146bee7d9b794d48330ebb9613050e063f5414fa4c5072beec6a11394dd21","messages_hash":"6a13b92806ba1bd4bcfeca83c69c0bf1fb33dfccd1c8d1bbbc6e9274777e391f","transaction_count":0,"txlist_hash":"3a305e7a9b8de2e2ec9f43206a08e257a1e17c540f0e47625b64feafc3413daa"}',0,'BLOCK_PARSED',NULL,'10c2f847ead991f5369af03dba541cac5500a310062fbbc69e934d2728b4a9d4'); +INSERT INTO messages VALUES(1424,310548,'insert','blocks','{"block_hash":"bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2","block_index":310548,"block_time":310548000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f59284a7b33e34959b23156277b4878fdc44de1143a5389251f3219f8dc32a35'); +INSERT INTO messages VALUES(1425,310548,'parse','blocks','{"block_index":310548,"ledger_hash":"6b0ada4ad9d4bc710468367b57412f2fe7a5d3b84a7088a48e1388df2ef23956","messages_hash":"17645c84ae7d23bdf7686b243a13665487fffa2b948df52747a219ce30d67577","transaction_count":0,"txlist_hash":"6a9672fcd678d39907e6c01137f2c6514ff99929cf60171c1760e72dea1b1f19"}',0,'BLOCK_PARSED',NULL,'647723c6bd98961bfd647e66bc1f630539da4b3b4b2416735077aa69edb51a12'); +INSERT INTO messages VALUES(1426,310549,'insert','blocks','{"block_hash":"8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979","block_index":310549,"block_time":310549000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'35a27aecbffa8dbed4892bf585a2945c046c90c6a0c6b99673b27cb12e2c3fc8'); +INSERT INTO messages VALUES(1427,310549,'parse','blocks','{"block_index":310549,"ledger_hash":"bed2db4b5cd892b0ec3dd1ae7b17fa183914afa953cf650714a66816b0426702","messages_hash":"64e4861d9bb959e059d64babb52078f7edb6e8e5e7e135898347ded7ef84a514","transaction_count":0,"txlist_hash":"d16823e9ed0b346917aae45cd173cbd173d229f284cb95ec7af7c9b159b2d8c8"}',0,'BLOCK_PARSED',NULL,'a462851f42ff4906922dce3d091eedf35723c4f77d45bff8c06a541b1229c53f'); +INSERT INTO messages VALUES(1428,310550,'insert','blocks','{"block_hash":"08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914","block_index":310550,"block_time":310550000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fdd5bdc48d3fdd4d31c609550c1164165e003f82e6207943af58f4fc5320aca1'); +INSERT INTO messages VALUES(1429,310550,'parse','blocks','{"block_index":310550,"ledger_hash":"b44be21bf36655ba56d872d923c2cc0d955c274330fe4172318477353451ce66","messages_hash":"781555546e8af008ddb64755b04af7c8ad597894b810bcb2b89af3498c950343","transaction_count":0,"txlist_hash":"6ce86b2a35a931348e98118c7426950ad4ee1a9fa557cd3c1eab0c4fd8d3f144"}',0,'BLOCK_PARSED',NULL,'d54b913c044160a4cd7ae4e2b256f4572a10ba2c16df671208216b7526387c0f'); +INSERT INTO messages VALUES(1430,310551,'insert','blocks','{"block_hash":"cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b","block_index":310551,"block_time":310551000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e0e67967008befd4ab4596bbec1364ade01de0809b0f511723aedb23c22fedc6'); +INSERT INTO messages VALUES(1431,310551,'parse','blocks','{"block_index":310551,"ledger_hash":"45fb127ce53800c27854f4a24ee639afac2f164c38b6abe1b521b919fca85c12","messages_hash":"96de7b13565592af3e11f500ef100984a9189b4b663620c32772ff2cdc8d343f","transaction_count":0,"txlist_hash":"49db288f7c65afd8f99a1f8e6edc85dac9c599d27be113df4b6246f9232a6056"}',0,'BLOCK_PARSED',NULL,'a744ec7001e8d86cc3bbca9ab0beb6a12759387683aca8c05393825f76f9b0b2'); +INSERT INTO messages VALUES(1432,310552,'insert','blocks','{"block_hash":"d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d","block_index":310552,"block_time":310552000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2b55083488d2a7238266fea82cce8caec75b0418be66892681ffb0d13cfaf2ea'); +INSERT INTO messages VALUES(1433,310552,'parse','blocks','{"block_index":310552,"ledger_hash":"661f0e7a6bb2808338d7a8e1186d92f3de98a4a7a8d071d7cb3defc0b7322e81","messages_hash":"409b3d49326eefa621b507a156703f6fa88298eaabadaf2d58dd52e84e732354","transaction_count":0,"txlist_hash":"f5ba7a3fdb9394f101d5187b107ad937fa5a224c290119cd76bb37710b1600a6"}',0,'BLOCK_PARSED',NULL,'889ca209f44be5d96f741398a9b3cdd3993463ef5629b5d85e1e42de1e3aa096'); +INSERT INTO messages VALUES(1434,310553,'insert','blocks','{"block_hash":"d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2","block_index":310553,"block_time":310553000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e35708cf19ce02b8758ef191e0129a6aefa6d07ca5b3f47b34a7ebafd543aadf'); +INSERT INTO messages VALUES(1435,310553,'parse','blocks','{"block_index":310553,"ledger_hash":"d1ad6dc986674f2cef38ab916fe5299fe9c91e7559e6f5c90679bb9b14be6e6e","messages_hash":"fd9489d60de15497ded952349d960cee9fde461f22e00417587ff5b1b6a78d68","transaction_count":0,"txlist_hash":"b1777df226b373535e3fff13e4379375cd601d0cbc1a90951cf288d21eb66aff"}',0,'BLOCK_PARSED',NULL,'f437595f4d4cef21835666c52da1a80d7b6324ee52a3816d2c99ddf4632a4fb9'); +INSERT INTO messages VALUES(1436,310554,'insert','blocks','{"block_hash":"7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65","block_index":310554,"block_time":310554000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'de9afc52dcab4151f9c9f448a2394dd69861bb190807bd6dc87c073a73403f71'); +INSERT INTO messages VALUES(1437,310554,'parse','blocks','{"block_index":310554,"ledger_hash":"d0ea6c81ba15b671216ddbf274af820c8740ed1352c6fa877036c4210fee234b","messages_hash":"cf9b7f176ff36c20a9b655401a5f28e9f8f6e580352246a5ef3b0a3e4ca51ab3","transaction_count":0,"txlist_hash":"870b61238a3e7c740fb52ba62719724cf95250ac22a4705dd88a1870f560fa1c"}',0,'BLOCK_PARSED',NULL,'3c2b938737c9d6e08efdca0eb90079e7079e41cefe101467af1b5a035dc011a6'); +INSERT INTO messages VALUES(1438,310555,'insert','blocks','{"block_hash":"c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa","block_index":310555,"block_time":310555000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'13bf66816135055b06ed64611b89ccaf23a059685343a2bd6f9d8b961f0850c3'); +INSERT INTO messages VALUES(1439,310555,'parse','blocks','{"block_index":310555,"ledger_hash":"b782c3fcd7ece6e246d994249391222e77b3ba89c4b0e1f8d868588562d9d069","messages_hash":"0739b7e81633938fb3a3c19a1ab2a2992c4be548fff1a8c509368b2820c2f7ec","transaction_count":0,"txlist_hash":"8b3bd64e05150c476d55dd64729b8e20e7b8c345c35c723392b194785472c6a3"}',0,'BLOCK_PARSED',NULL,'4551e20d9ff9778ab00c58a97579f0da1893406c64fb37e428a723e03cb9323a'); +INSERT INTO messages VALUES(1440,310556,'insert','blocks','{"block_hash":"4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a","block_index":310556,"block_time":310556000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a488b6e7e3856d9bb43a4a8d238ed258fb3b0f1ddeb1ed3a87f9f25b24841825'); +INSERT INTO messages VALUES(1441,310556,'parse','blocks','{"block_index":310556,"ledger_hash":"c23d1bb3810c83bf52f05a305bf2245549f850056fa42b22f533484853b51435","messages_hash":"90d1102e2270d0c4da5ea8776458b88788eae8f3f0782745e8787d9af8cad706","transaction_count":0,"txlist_hash":"a858a0bafa17a74c79b65ca07ad3418ac201e5096c87159bf789f40c3d84679b"}',0,'BLOCK_PARSED',NULL,'c0b7bd08cea89a1b491ba675fd5855eacfc45f516e62b4c4ed6dcfbdaa0351b3'); +INSERT INTO messages VALUES(1442,310557,'insert','blocks','{"block_hash":"0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382","block_index":310557,"block_time":310557000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c06bb6c0877e700c0050b39ce4d3645da8d6e161154fdd80420c1d2497232971'); +INSERT INTO messages VALUES(1443,310557,'parse','blocks','{"block_index":310557,"ledger_hash":"0eff1936c008135db443b7c7900c83e244cbe5c13ccc062255309e9e4742c95a","messages_hash":"f8a9faaac3b84d412c9f6841df8d3d9ef459dcca503ba8ee421a8a66049ef2cc","transaction_count":0,"txlist_hash":"6cc6e826d65d96cd9546e3e459934acfac6456a706ed5423da4c4ae0c71feb83"}',0,'BLOCK_PARSED',NULL,'eeaf4beb264075470906f2c631ab6ba1b593a556670fabd814e7cb9bb4e21a1e'); +INSERT INTO messages VALUES(1444,310558,'insert','blocks','{"block_hash":"75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15","block_index":310558,"block_time":310558000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f53f3158851aee38de16aa2a76b0eef5982e5993706c1ce1bcb860d9e992cd4d'); +INSERT INTO messages VALUES(1445,310558,'parse','blocks','{"block_index":310558,"ledger_hash":"732c122f1fbe6087457e195611c22bdb6a007dc96f9bcad2544472f9f83b1123","messages_hash":"ff416feaface22b7793ed465ce37823983928f7772279500e45c220745f58b5c","transaction_count":0,"txlist_hash":"56c4cf4c2b8562bd4e1721cbcfb9faa7c67e31e6f1abd95525084cc51dabf3b1"}',0,'BLOCK_PARSED',NULL,'797379ee9c14b9ccd872a5984928b1f59f419df1e0f3e15453bb56eeb1e65c3f'); +INSERT INTO messages VALUES(1446,310559,'insert','blocks','{"block_hash":"6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc","block_index":310559,"block_time":310559000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea42a06b498de965b8f88f47cbd34e6c3bc1d7a35cc146d00781c0b0d56d26e6'); +INSERT INTO messages VALUES(1447,310559,'parse','blocks','{"block_index":310559,"ledger_hash":"41f3711def550b4fa5f9606f5a0e7e9da30decd64b7d0ef7b474480844f86951","messages_hash":"755270e2de4235ca1404d1243515d313deb747f3212a8861f9ca94fe074119d2","transaction_count":0,"txlist_hash":"7d1ba0a6152887e4a66e003c7444c35fd14a9ed3c48455e6ccd8476ff232cb55"}',0,'BLOCK_PARSED',NULL,'b6da6af5df6785facdf7f3f26ea53770d16004ddf3c20fb2d960fcf62f5f1243'); +INSERT INTO messages VALUES(1448,310560,'insert','blocks','{"block_hash":"d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec","block_index":310560,"block_time":310560000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'204990311c6f830955b666b92f02d29b2f88e24d648a22febb7e42930fcfc8fe'); +INSERT INTO messages VALUES(1449,310560,'parse','blocks','{"block_index":310560,"ledger_hash":"73e9502818b90048582a9f5f1cf3fd96b78acaf7cd2289450722c3edfc875b21","messages_hash":"ed86c1d022a5daf1fcc1fa039fab1054e0b1f0b45648544d778ddf10571d7e7e","transaction_count":0,"txlist_hash":"65eb78129546514584c78b914d05644975681daa08d796aab35e3662a4a9f387"}',0,'BLOCK_PARSED',NULL,'8e5df9ab64fcdae5b0fa00be0d4d355e5b0a19e00710c99678475543ceaa8f4b'); +INSERT INTO messages VALUES(1450,310561,'insert','blocks','{"block_hash":"b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee","block_index":310561,"block_time":310561000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'51b8f394c91c4ed87649d6df685d0e3e60572636641f6aad1fb1d45dc358f98c'); +INSERT INTO messages VALUES(1451,310561,'parse','blocks','{"block_index":310561,"ledger_hash":"cf11cf2caeca0523aa3dc552fa0b9457b61b911c29a71ece2d6215d90bf3f344","messages_hash":"f4b42490cf53debc929fefa2320e99ef286fd4a97c36e02421f0f70bb7c76c5f","transaction_count":0,"txlist_hash":"3c09fa18d2fcc72e4afbca9679e46f5bb5f4d56dc2b5d4da3282c758819d5403"}',0,'BLOCK_PARSED',NULL,'af0ee91a9707b59f72d6108e32fec1dd7680f8652911dca605c05987274c0d81'); +INSERT INTO messages VALUES(1452,310562,'insert','blocks','{"block_hash":"4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405","block_index":310562,"block_time":310562000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'92d4aba3caa43cf7bbf80c47dbe5743114e557fc50bb44fda78f29f9680831d4'); +INSERT INTO messages VALUES(1453,310562,'parse','blocks','{"block_index":310562,"ledger_hash":"e483085d3466d9fc44711ce805c0b179183d24feb0c3b8cf346ea446b460e410","messages_hash":"0726b9f9df3c3f294168afa29fa73432e6f41221f6a5e6cdb9c50a12f04c58e7","transaction_count":0,"txlist_hash":"e06b6edc60212d17694503e28f4d8879a12b5c9f0d75fe281e0ffea001d78c76"}',0,'BLOCK_PARSED',NULL,'ce1d24eb4722ec16bb6a50a58b36e0981d160858d83f91e47435d836e5b3dea2'); +INSERT INTO messages VALUES(1454,310563,'insert','blocks','{"block_hash":"f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636","block_index":310563,"block_time":310563000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'06a6604b251326090b9e725a55438cfcc2969f936c5c436b3c5ab3253c161c1e'); +INSERT INTO messages VALUES(1455,310563,'parse','blocks','{"block_index":310563,"ledger_hash":"5a82935dd4999d4893a379132d8a65e8f10f5c93f74b25dff1a5b1fe1a95d8e7","messages_hash":"d5a5b596030ca91a997f8b87b3ed1f09e46e168b357a03c2d7c1259b692664c5","transaction_count":0,"txlist_hash":"4df37acbbdd1a1f9c717f58748f170d7ded7f62b686121a9f821275fbb12e25d"}',0,'BLOCK_PARSED',NULL,'62c37533f1cceea74cfe318373a194e84556c59f4dbf7557b686953bd276b3f9'); +INSERT INTO messages VALUES(1456,310564,'insert','blocks','{"block_hash":"cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea","block_index":310564,"block_time":310564000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44fa2c2124b569e367b1ac8e89facd865869649103cea11c88f31aac54ea707f'); +INSERT INTO messages VALUES(1457,310564,'parse','blocks','{"block_index":310564,"ledger_hash":"842a96b665bffbaf0545f657527415cc78b1c00db057983343449085cff8d9ee","messages_hash":"4d46ff89ff84e9c35e0bfcc7386bbf0964b402beb89a4c47ea2a6523fd0e23b6","transaction_count":0,"txlist_hash":"f145d6e47e0640e5b13185eeb88286b190884347aaaced30f2a3ccf1d934b75a"}',0,'BLOCK_PARSED',NULL,'29a788e782c9a7b3ca7e296f2654516e318c5fffe6868b81488380a39b16aa5c'); +INSERT INTO messages VALUES(1458,310565,'insert','blocks','{"block_hash":"954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305","block_index":310565,"block_time":310565000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a6a14780e075ff3ef444bd0cd4169241dfab93992fd3f1c633a5c1e4719d006c'); +INSERT INTO messages VALUES(1459,310565,'parse','blocks','{"block_index":310565,"ledger_hash":"f67167b793a276efdd68c04b2dc9c0fd0b7719f2cc02f21695d0a9491a9848f9","messages_hash":"d8ccb3698e95cbbba7b5b59b1cc6d6dd8aa432575d8c1958cbf7e8d3c53288a6","transaction_count":0,"txlist_hash":"db540061e4a8c10001274daf3bd8addd05306a07836ed6369388720544aae941"}',0,'BLOCK_PARSED',NULL,'ad5eb4e4633ca96b2c5e3e7fbebf99f3871944d00957604f499e20c2449390e3'); +INSERT INTO messages VALUES(1460,310566,'insert','blocks','{"block_hash":"3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39","block_index":310566,"block_time":310566000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'83201abca19ae547683f8c8d8ead2cc7dd807efe78c81c29db5632a1d778903b'); +INSERT INTO messages VALUES(1461,310566,'parse','blocks','{"block_index":310566,"ledger_hash":"93d64cc60754b45c9d9f3f2be85c199b4ed839b85e656bf95e3c54194029a950","messages_hash":"8903d2b08fd37027d7231bac8fc5e38db49d44f8fddf7cad2890ccce157c6a7c","transaction_count":0,"txlist_hash":"bc9927aa4bb22304a9ea2edc24e6fe5d8d6b6d6f1083cd64a5098492e811f2c9"}',0,'BLOCK_PARSED',NULL,'87d0f877c6321fbd4c2cd3a7b186a9a4143f6b665435499f3ffbc4f17cdcb0e1'); +INSERT INTO messages VALUES(1462,310567,'insert','blocks','{"block_hash":"499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431","block_index":310567,"block_time":310567000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a343c2fa4c4aec117b381bdabc89d7a5a83e7c44204735bccd593cb53f064ec4'); +INSERT INTO messages VALUES(1463,310567,'parse','blocks','{"block_index":310567,"ledger_hash":"d248eb8c0c17106c67082cf228215cb93d017bac7a894479d3cb57285686f7ad","messages_hash":"0930464aeb3f3caff5c860b2dad1c373c0dfa3de30c18c678c9da75a58bd9ca1","transaction_count":0,"txlist_hash":"98c790c8b92ac26f828848a06f10408d459b5fe2f54529f3137754d31cb103bd"}',0,'BLOCK_PARSED',NULL,'12b9494d8301ed830927553c2187bd9576774e83e1c11ad314b43816e9332385'); +INSERT INTO messages VALUES(1464,310568,'insert','blocks','{"block_hash":"ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e","block_index":310568,"block_time":310568000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b42a947034042df892bae46cf87785d6a05102c1c4c7ea90343e9c79dc17630e'); +INSERT INTO messages VALUES(1465,310568,'parse','blocks','{"block_index":310568,"ledger_hash":"e76a89178d95044d56001e30d85c1f4e1f943d0175fdfac19151227760815bf4","messages_hash":"9608f4babf7db8921d8e83dc1453bf2cdfa416968f01aaca921736b9b9e8fe15","transaction_count":0,"txlist_hash":"570347e1c43a67562eedbef0f6d1a5e9945e293058c5277ec2ae0efb8254eb63"}',0,'BLOCK_PARSED',NULL,'84a42a87dd26a9c61cb57e5db757b07d431f2119d87f4fea658223f7d70e94a2'); +INSERT INTO messages VALUES(1466,310569,'insert','blocks','{"block_hash":"c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de","block_index":310569,"block_time":310569000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'40373084505c3bfeed5baf143df0854fd2479bb7e6b3ff78ca683b855ce23a2d'); +INSERT INTO messages VALUES(1467,310569,'parse','blocks','{"block_index":310569,"ledger_hash":"2c130a13900eef57a42ba1b64b3152e9455eb5499936bf943c206f523990fe63","messages_hash":"27c23180188237755f7380c49637339149a7eb404f611a98114ae7239b0e04b9","transaction_count":0,"txlist_hash":"2efe30e2ed6a9f020f3ae70db81c701cfe07d9bd24451dd80294d0692c63685c"}',0,'BLOCK_PARSED',NULL,'14c370b4ebb65d34eb8577b6cfdb4f29a53bdb5a6405544fdff6bb4b6d413eeb'); +INSERT INTO messages VALUES(1468,310570,'insert','blocks','{"block_hash":"f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55","block_index":310570,"block_time":310570000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a365e90bd011bf44e17981808dc60092a03fcde583acb666d52061d20fb2d08b'); +INSERT INTO messages VALUES(1469,310570,'parse','blocks','{"block_index":310570,"ledger_hash":"23f037f4be56edae25410629cfa7a82245f0517020dc7f64faeeeef4f296bc0d","messages_hash":"6c26f23bc575e1191af502131e010deafa0ba8a1e244147758f6e65f8b6b6e22","transaction_count":0,"txlist_hash":"2ff0d7d5e4fb10d63fdab2561aacdc90f92f0df462bd652fe58f23c076242e82"}',0,'BLOCK_PARSED',NULL,'f4397f970994f8c314dc6ba089fc8843333b6bae03dcb931283c81e55a0d7317'); +INSERT INTO messages VALUES(1470,310571,'insert','blocks','{"block_hash":"b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73","block_index":310571,"block_time":310571000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a15a690f86408afcafed8f8f61c4b99638e989aba51e785ffdbd80960fd82412'); +INSERT INTO messages VALUES(1471,310571,'parse','blocks','{"block_index":310571,"ledger_hash":"20dd9577da0fc1506c611a941f1c4650372280677c1ecce7463e35b67c0d4b76","messages_hash":"4931e3731a84a7a81aecc0f22af05cf7ef7e25951e3793e399550e48cf7633f8","transaction_count":0,"txlist_hash":"7098b0fe2e0577a4d1ccd090b3b9ffa952b5c1fccb8fbaac6b1a43635084eef8"}',0,'BLOCK_PARSED',NULL,'2276d35544c4bc0ba71994ca9fcc3e5dbefe66e35e53f542983860c66b44a35f'); +INSERT INTO messages VALUES(1472,310572,'insert','blocks','{"block_hash":"6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9","block_index":310572,"block_time":310572000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f296aea4458ccb68b2b6d3ace936e9e746538bc3d00d34da49831b4facbf9f94'); +INSERT INTO messages VALUES(1473,310572,'parse','blocks','{"block_index":310572,"ledger_hash":"0f770f0cf5343224f6c679c4466cd015946c3d52e100c1241b4d145da02b5e57","messages_hash":"9acd5786c5b4f928817bbd1c237a035cdec75bc0207d42fadedd24e30dcaf1e1","transaction_count":0,"txlist_hash":"e7db661177bca11155df203594bdaf815bb537d525084767ac0ed6e9fe99fd5a"}',0,'BLOCK_PARSED',NULL,'ad4fd0764c911819a05c41c0726baca5a27583868c4e9eaea9a4320832badfbf'); +INSERT INTO messages VALUES(1474,310573,'insert','blocks','{"block_hash":"302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5","block_index":310573,"block_time":310573000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e8f305cd02a67ef3e42daf7536fea83400b5b2390ba86bace84fa435620a854'); +INSERT INTO messages VALUES(1475,310573,'parse','blocks','{"block_index":310573,"ledger_hash":"17c50ede93bc8d19365a29233dd2e3e9e8cbac921c5b3d9c33e58db364fa0570","messages_hash":"3ca201953835e6df7c5b90afd9caf42f47469761ec3ce6964befce768550942b","transaction_count":0,"txlist_hash":"672565a64f687b09950572bb69dc51cc874a34d8808bc861d84bb3d227da1f30"}',0,'BLOCK_PARSED',NULL,'c986426435020150355b2c688e31a46933695f202da5ae558895be5c1f7e594f'); +INSERT INTO messages VALUES(1476,310574,'insert','blocks','{"block_hash":"c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d","block_index":310574,"block_time":310574000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'45692b86d50c5dfc0f15a42506a8385785e71a25db6f1a0ebb74cf3b107f4318'); +INSERT INTO messages VALUES(1477,310574,'parse','blocks','{"block_index":310574,"ledger_hash":"9d7e12c5fef9a8fc703a70bb9a9534a6345e92b61ca7b48964e10d0ebb9d95cd","messages_hash":"987b4e247d7b971dfcc893298c3e73a3ec4fbff9538b34d39eee4260312ca7ee","transaction_count":0,"txlist_hash":"c681d31f5e8b1344188913364f2eac845db9d9a936b45f6eada955996b7073c2"}',0,'BLOCK_PARSED',NULL,'7a34a84046d890651843a8d1f68b0e9365de995c04edb65119de817065317a15'); +INSERT INTO messages VALUES(1478,310575,'insert','blocks','{"block_hash":"fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde","block_index":310575,"block_time":310575000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9bb5dc1e7bdb7ce66d71ff0fc80bacf5e9e9fb8c65770dd9e09f4d8d4b4db781'); +INSERT INTO messages VALUES(1479,310575,'parse','blocks','{"block_index":310575,"ledger_hash":"29c97edbce573c66330f01bf5793928f7dd3e176f34457a4f56bac60234bbacc","messages_hash":"3ef1e9a957078e2eef58b342e1002d04f7213820a7a1b0af690e45574e1848bb","transaction_count":0,"txlist_hash":"3ea5d34d65420a54fd0a1c8424f3afcfa5eb40707eb42088814218583ff36cbd"}',0,'BLOCK_PARSED',NULL,'dd0af465db62462637b601c8cbb708d3d33f7a64be0a45873ae12e53cbdf460a'); +INSERT INTO messages VALUES(1480,310576,'insert','blocks','{"block_hash":"b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5","block_index":310576,"block_time":310576000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'12645ba3aafd49e5e791ba1a73e62b11888269c61c04ff61cb0fcdfd51c1d7e3'); +INSERT INTO messages VALUES(1481,310576,'parse','blocks','{"block_index":310576,"ledger_hash":"f7b2ff06d67c9d0868b628aa07c78f7b17fe8a921a3c6163a4e86661cc6cbe8d","messages_hash":"b0e1a5598b60f79a4897f20ddf6a04ad3bbd4a7bfbd64090d497e13edd2156c7","transaction_count":0,"txlist_hash":"19eafc5f2e2d7ec141f9f2bd1d5c7fb0b380adead15654553498e3af5bba0ea2"}',0,'BLOCK_PARSED',NULL,'a2df3709affbebe220cdeae4689cfc785b4c5f01bca162da083b2d5f6f32bc24'); +INSERT INTO messages VALUES(1482,310577,'insert','blocks','{"block_hash":"a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3","block_index":310577,"block_time":310577000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9051e63be76807537a0e63c034d81ae13badc03ebe824e7c340a1edf4eea100a'); +INSERT INTO messages VALUES(1483,310577,'parse','blocks','{"block_index":310577,"ledger_hash":"789149426dc48cc79f009d46944ebcb31b188c2ec852de9cf6b16c1f48182aee","messages_hash":"052328d5b1381128509f7f05f0bfd68ce8a0f9ce5ff8ec18f344bfb2f47b4df5","transaction_count":0,"txlist_hash":"be512460315bb9b670cd1b9e78165df49fc17a8851dd7b66bb58a0e83bb4e487"}',0,'BLOCK_PARSED',NULL,'6f0a4f0c23b80ffa02a597e971b34566f626a470488ae5095b39cfc13eb5aa38'); +INSERT INTO messages VALUES(1484,310578,'insert','blocks','{"block_hash":"f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf","block_index":310578,"block_time":310578000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c876bf3a97c56cb147be26f81e031b5ce3131081c2adab8de2d63ebd878cb40f'); +INSERT INTO messages VALUES(1485,310578,'parse','blocks','{"block_index":310578,"ledger_hash":"f402148b83a28bcc4c11346044f474455e0af66308638f5a67ed3fef0edbe55c","messages_hash":"ed0c8d5d6febf2ee686f5be4c96ab45a58f8e4616716c0bd6b16df5e7741aecf","transaction_count":0,"txlist_hash":"56dee75f67260fc83f55a276ed430bb1c9495d91b54d323a3d0cc427686a85c4"}',0,'BLOCK_PARSED',NULL,'ffa97cec7e666b6d03f9d5bca205ad59908bf8d591c54ef0df876cc187f44dc8'); +INSERT INTO messages VALUES(1486,310579,'insert','blocks','{"block_hash":"672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38","block_index":310579,"block_time":310579000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'67e3bdacac1c332d8116b2f027dfe09f8b3beb4f043a19a928475bad69360daa'); +INSERT INTO messages VALUES(1487,310579,'parse','blocks','{"block_index":310579,"ledger_hash":"2e94dc048ee39dc75874d6221b39d2621702e0f01eb8152adbb1e3799fe95393","messages_hash":"e155d7766cd137fd85712537c0ebfdada610afc05b88c63f84dca3edd64f36c9","transaction_count":0,"txlist_hash":"c9a5cabe5916d0d169e06c7528835c5fcb00af3515e0c44e5e17c567dc52f1ee"}',0,'BLOCK_PARSED',NULL,'aa1b23e7dd2d9bf045d066add03a6578c94236598e90d085398a710e59270f2a'); +INSERT INTO messages VALUES(1488,310580,'insert','blocks','{"block_hash":"e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13","block_index":310580,"block_time":310580000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f565d71513a4d6b0b79304d415d372b1564377d4d3be31409fe2df47ea9e1eba'); +INSERT INTO messages VALUES(1489,310580,'parse','blocks','{"block_index":310580,"ledger_hash":"7ec943a775508a6b3bb37a7d9438da6c76eed1df84d715443c0b001ff5726849","messages_hash":"75bb6e2085e39e86e2a2edff6a698f3adfab3e8f3e00f21ae15d9d1dd1da8838","transaction_count":0,"txlist_hash":"b484963a876ccbf57728287a7cae8ad916cc4523219b7f2fd6c42bbdfaa5ead7"}',0,'BLOCK_PARSED',NULL,'1a001ac91c5c69d0d3773e9495512adc0d88d68240726129fee328ffdca964db'); +INSERT INTO messages VALUES(1490,310581,'insert','blocks','{"block_hash":"baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a","block_index":310581,"block_time":310581000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9c3f66c68660dcc968eae9dcd6421a77e6a7cfe69b7953c328504af55dfcc57c'); +INSERT INTO messages VALUES(1491,310581,'parse','blocks','{"block_index":310581,"ledger_hash":"6fce0f8faecc5b5438c5ad8d161c013a769483d8a4f0d0f3c5f182529a93bcef","messages_hash":"b57aab80dcd8a1f97d408a2836c0c9a1aa71d39befa8a7e2a91cf2aa39dc7aed","transaction_count":0,"txlist_hash":"301ff101dba0c28f5603b3776bd17f373f30a5e77c8e619dee30e323322e4680"}',0,'BLOCK_PARSED',NULL,'60ac9c4208634ee32a86fa1f5bde0fc88115bc137d23bf3ea52def841bcbf399'); +INSERT INTO messages VALUES(1492,310582,'insert','blocks','{"block_hash":"08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c","block_index":310582,"block_time":310582000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'145bb5e6c7131237b090cf1e9d14fb2850b95814a7a80b437cfe8b9e3a95481f'); +INSERT INTO messages VALUES(1493,310582,'parse','blocks','{"block_index":310582,"ledger_hash":"51b642d4f636ea7df05148acc2c57e16e721585d33f0fc0b33ef9e316e4d6fc8","messages_hash":"cc317aa0f9c053fc633f86c0df716b491e4088bb50662a0e9320eb5200ad27bb","transaction_count":0,"txlist_hash":"3e8a5d33e8340bc7e1c96c95f4eece8320807dd01e7f66a53f9afbcd26b19fa3"}',0,'BLOCK_PARSED',NULL,'18cfa8e4c19ff21f6a7a36996869fb8d3a121c58e7da3f63ec1d84c9373366ce'); +INSERT INTO messages VALUES(1494,310583,'insert','blocks','{"block_hash":"22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4","block_index":310583,"block_time":310583000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ad023bbf7c2cf45988a9134954b4a08e482d970f03bef160336808ba29fc78e9'); +INSERT INTO messages VALUES(1495,310583,'parse','blocks','{"block_index":310583,"ledger_hash":"780863ca857e09c578d26c270a2f4d6bf52ac35af375a485fe16ed91eb8a314b","messages_hash":"2302777ed825984d15cd84ae399f6553562a92bf6216d9361df95df95cabcb88","transaction_count":0,"txlist_hash":"60d468a45c64869425508b88e3fbe166690c3009fcf33e3292fb2da145079044"}',0,'BLOCK_PARSED',NULL,'d011f2fc21bc0ca9e843ed2294c21e102c73b569d006731ed6742a4aa1df8276'); +INSERT INTO messages VALUES(1496,310584,'insert','blocks','{"block_hash":"db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b","block_index":310584,"block_time":310584000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8aba8811fb3e87b7d818db5d9c82b3b5e11ad9c0f7db7d0977560b883c1625cd'); +INSERT INTO messages VALUES(1497,310584,'parse','blocks','{"block_index":310584,"ledger_hash":"43ac9ef4d0ecfc18505524d3aa7ff32d32897b1de8dccaff5ebad42793a087e9","messages_hash":"477704e184f85c58aa8fca58cad4430e0be8d8fce5ec7e47d6fecc88ed2a4dda","transaction_count":0,"txlist_hash":"ebebd15c29221496c6547f786ec67bfe72278cbb8e15fb96737a30094880557a"}',0,'BLOCK_PARSED',NULL,'023ac2c14c859722b5755b9d5488cce68eb500d2d1305f6fdf401a474e0fd90c'); +INSERT INTO messages VALUES(1498,310585,'insert','blocks','{"block_hash":"a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb","block_index":310585,"block_time":310585000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5cedd62f88bf15ed1ee57ebf84d5f77c3160f3c7c208582393a352b078bf9ca7'); +INSERT INTO messages VALUES(1499,310585,'parse','blocks','{"block_index":310585,"ledger_hash":"eaf8b429e88d71173b42debab7bb0ae02a8e6e36e411ad8fdb942400af3c6726","messages_hash":"fd0e263a608f618864f3bfeab5613593e755bcc5388fdb9acedb844ffeb9bdbe","transaction_count":0,"txlist_hash":"733e1df46cad658a76f3ae6bd51acb09be0932fdeb5f92e99b94bd5bec78ecb0"}',0,'BLOCK_PARSED',NULL,'fe581083f8c833bddceabb65d92706da4987e404f960690ee34bf123c13418fb'); +INSERT INTO messages VALUES(1500,310586,'insert','blocks','{"block_hash":"c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7","block_index":310586,"block_time":310586000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e359b4e6daf25511632be6849c900092dfbb1587a59566a6121c014f21285abc'); +INSERT INTO messages VALUES(1501,310586,'parse','blocks','{"block_index":310586,"ledger_hash":"a80f5b8533d49f0b56499746750033414df96442420cafb186344dee727e5f9d","messages_hash":"c1032a009c3a410ad0b8ffe6eedf2766db9f6e6b548fabfe7951e137c404825c","transaction_count":0,"txlist_hash":"3ead47e29b52236c485f6461d73c47c076f23aa5c96d2462adbf265966426f5d"}',0,'BLOCK_PARSED',NULL,'2b5068cccbf894d2656d1c570162d11b9772619cf4f6a46c7d2b8ff295d64354'); +INSERT INTO messages VALUES(1502,310587,'insert','blocks','{"block_hash":"6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa","block_index":310587,"block_time":310587000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1a656acb96ade2e91fc09d981f994916a956cbf7d9522fe3ac4b428b7effb96'); +INSERT INTO messages VALUES(1503,310587,'parse','blocks','{"block_index":310587,"ledger_hash":"b9d78fd96468b4739d9739d31ae4d5d3986928428be9e8fb976c78eba53be95c","messages_hash":"1a88a340da7120857a5cd0426c8a21a9f09aca0406c3dda7351e227c68281f84","transaction_count":0,"txlist_hash":"94d69dc7ecb628956923ed4d570fe0da3ef0c367066d76252f656f3774347938"}',0,'BLOCK_PARSED',NULL,'d1036abdc5bbb8eead5b0456d4a0ca1cc74c8e7dc860dea4aa6c3268b59b2cb3'); +INSERT INTO messages VALUES(1504,310588,'insert','blocks','{"block_hash":"d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff","block_index":310588,"block_time":310588000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8380022e9edbb2a3f3b33cc616a668d7afd6ba116c5d33a0c2662ae51a62713'); +INSERT INTO messages VALUES(1505,310588,'update','bets','{"status":"expired","tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef"}',0,'BET_UPDATE',NULL,'35f0b9696be44c3f306fd87efd0102f9d7216e0a9b61f6d9e09d8f3f328c4101'); +INSERT INTO messages VALUES(1506,310588,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310588,"calling_function":"recredit wager remaining","event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'b6f46609e9c50e2a6c95c893f30810aba0ee1a5c5b6bdf615c0577667f952d8c'); +INSERT INTO messages VALUES(1507,310588,'insert','bet_expirations','{"bet_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","bet_index":488,"block_index":310588,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM"}',0,'BET_EXPIRATION',NULL,'ef0d52247b39e6020b00f560f41d96a9ff0c25b440ac74d89bfbaa2572514470'); +INSERT INTO messages VALUES(1508,310588,'parse','blocks','{"block_index":310588,"ledger_hash":"32a53fd88a5a1ac75fbae59c2435d2675cac767dba28b5292976ba947bebc8da","messages_hash":"e603eb87468f13133af8ee8905cd79b4094edf308f03b768d686f1185b9f8fe8","transaction_count":0,"txlist_hash":"b50620604ec72308ff19abeebe034e9ca8d732d2d21e765ff2ff78940076d62a"}',0,'BLOCK_PARSED',NULL,'a5923cd7766c1ee8cea0a8f4027ad881042ecd1528d603ab128b6200375bd509'); +INSERT INTO messages VALUES(1509,310589,'insert','blocks','{"block_hash":"4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da","block_index":310589,"block_time":310589000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5285e2aaaada6e30919a9209e2d31a4fa48c86f824ac6485c90466b3bace4354'); +INSERT INTO messages VALUES(1510,310589,'parse','blocks','{"block_index":310589,"ledger_hash":"ba48010ee90045481ae3133726ecf28f339883c85d598c32280540a64963addc","messages_hash":"31982deaee21c7fba0d90d4e6807488b037f87fd397b99b48d9008db996e4d25","transaction_count":0,"txlist_hash":"78bdf68341d15bca6e325624feb58f527fd0256d044dc90dfd0c5874dae32f4c"}',0,'BLOCK_PARSED',NULL,'801ae54466eb54871bf3e93eaa1226138141becdce8a62eb4105f84499ddf406'); +INSERT INTO messages VALUES(1511,310590,'insert','blocks','{"block_hash":"7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6","block_index":310590,"block_time":310590000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'78472d4d486ed1c09d8811f86d8b90b8950e2282be768a5f61c07a6613fb54ce'); +INSERT INTO messages VALUES(1512,310590,'parse','blocks','{"block_index":310590,"ledger_hash":"793d25ea2df208571c88ddea2cfa75ab242d069dc76a63599cd5fa32ecd16054","messages_hash":"c33903bf84c1f7d868c08ea24c5b92d236374fc8b5685f21ea2b04ba4fad819f","transaction_count":0,"txlist_hash":"c4f9e894ebaaca5ba7bd4c20106b670025db1438df60700fdb4d69032277f740"}',0,'BLOCK_PARSED',NULL,'d551c392a609b467d5311d95831546af20f5358a9f05d4a14b5a8e532b6771c4'); +INSERT INTO messages VALUES(1513,310591,'insert','blocks','{"block_hash":"9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7","block_index":310591,"block_time":310591000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'03f6cea83b49d534401d97f9c8c1633ff4110325fafcdbca6ccd41b6cfa9c6b6'); +INSERT INTO messages VALUES(1514,310591,'parse','blocks','{"block_index":310591,"ledger_hash":"4341b0c328eac2af3b076dd176c2209247a5c06d91a59de1acc286728ca1305d","messages_hash":"69e60840160bafe83b7e5aacf58a1e1b52a0722d583b1df6264d4c27ca9da445","transaction_count":0,"txlist_hash":"a3af6a21611a7407ff02eab2468c377d29814f84add22f19f3fc1bfbe0d9694b"}',0,'BLOCK_PARSED',NULL,'ca60ee15e1076eb64aadf99317f0d4a7e4ab955e78933da73651014ab6145dfe'); +INSERT INTO messages VALUES(1515,310592,'insert','blocks','{"block_hash":"d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3","block_index":310592,"block_time":310592000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a6abb9db3c96a10650ba4bb86f97ff42250fda1fec7031ba436c9dc311ca1a70'); +INSERT INTO messages VALUES(1516,310592,'parse','blocks','{"block_index":310592,"ledger_hash":"8ee09223831cabf92339eb3147f3d4133a6150e2cdc890dea3ae66168ebcd0f6","messages_hash":"0c49857211980bcbd4298cadb68a2686687807f93ccb8e93a4d4ec3e5b020fe0","transaction_count":0,"txlist_hash":"daf91d91dbbe9f77915568b355565696d4da404095e6b547bd2db3587113e403"}',0,'BLOCK_PARSED',NULL,'909ad9da9ee317fa1ede3877cec185ef56158738c0d02d060d812e66df1f33cd'); +INSERT INTO messages VALUES(1517,310593,'insert','blocks','{"block_hash":"97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b","block_index":310593,"block_time":310593000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'704be20e23e38b20cb612176cbb0b7519fadb99ed348a3ce3b3405388b039678'); +INSERT INTO messages VALUES(1518,310593,'parse','blocks','{"block_index":310593,"ledger_hash":"24295e885f53005538cf54b0ddc545ff2c0e7a3e70e3a87de4b9b11178ab80d5","messages_hash":"2f39341e8cd5d2903d72da92c979d55af20b6497ca26357c79d762def34c6f4e","transaction_count":0,"txlist_hash":"b5c3b0df9648788b62ccf2fc881924438c4409b828117e2db502b42f2aa800b8"}',0,'BLOCK_PARSED',NULL,'feaaa30f4cb2526796a0d8422144c1b0ecf37a70b2443ea45d403ec74af6cbd6'); +INSERT INTO messages VALUES(1519,310594,'insert','blocks','{"block_hash":"f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015","block_index":310594,"block_time":310594000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'027c84507b48637eaead8fb127509a7904ce3721f82cc3ea5d1aaa33d9427642'); +INSERT INTO messages VALUES(1520,310594,'parse','blocks','{"block_index":310594,"ledger_hash":"0e1eddb36733f22e41d01490e31d8ad8711af485f9644478a2a8820f09793e33","messages_hash":"2eeff5a2d51d740049b0f911825572f02068b682835aae6cfb2512436cfc67ee","transaction_count":0,"txlist_hash":"05b3baac4f1a13d3b2f287b6660be568bde7646bf4d2dcbd58928f8be1b5751e"}',0,'BLOCK_PARSED',NULL,'d19495326381811c85137ec123e110d5f5fa1ddde81ca6aebbd9d2a8d1da48a7'); +INSERT INTO messages VALUES(1521,310595,'insert','blocks','{"block_hash":"0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66","block_index":310595,"block_time":310595000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f0f2013e12d2bc3690a0f65247b8c0645b604f09e64032ea130da1fa52dd0ba'); +INSERT INTO messages VALUES(1522,310595,'parse','blocks','{"block_index":310595,"ledger_hash":"8fa3c4593fe914eeb79d9b864761ee7dd5d2c799ff5d1df4f0ec6cc335e93ac1","messages_hash":"4c40ed08ec9690b96c40cea703d7fe4ede60b89e194b059442ee9a4375b80d47","transaction_count":0,"txlist_hash":"2bd0b4f8dcf78006ab0a7aa8dd4d71c6598e9162d772e84c4701bc4c8d45f6d0"}',0,'BLOCK_PARSED',NULL,'2e7d5ffe756bdf073bc2c47e3850832681eeef7388b66832817436c739dcd742'); +INSERT INTO messages VALUES(1523,310596,'insert','blocks','{"block_hash":"1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688","block_index":310596,"block_time":310596000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'00789ef95cc349d5d9b30c88308be9fd7df97637c8398cd8735b689f460ea3b7'); +INSERT INTO messages VALUES(1524,310596,'parse','blocks','{"block_index":310596,"ledger_hash":"0f02de76564828192ee58fb6f07b3939c53417f50f5df43d741a742ce8c2d8cc","messages_hash":"2a1bb66fde239c20c9d94e667f356c175888fe279addd6d99596a8cc7fabf423","transaction_count":0,"txlist_hash":"c7a197d075a2b5d5bd3267ae10eba1596cbc93bcbf77830b4d32230c27fa72fe"}',0,'BLOCK_PARSED',NULL,'82819083bfd7e80818e422bf0d933ecedf2267d16cabbed59c238f63dad07c1f'); +INSERT INTO messages VALUES(1525,310597,'insert','blocks','{"block_hash":"490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd","block_index":310597,"block_time":310597000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f21831fe0165013284f8de70e4f4fa257e6a8213af19321ed5844c99b7fbe39'); +INSERT INTO messages VALUES(1526,310597,'parse','blocks','{"block_index":310597,"ledger_hash":"dfd60db3f37108d2c636a3204e7e32cad4d3c888aeb710e24d24e08731df5097","messages_hash":"650282ef5f9baf8c2c7b9eb59c1d4cbecc202344737aa65568d7e59b4ed0bf4e","transaction_count":0,"txlist_hash":"c648adc37b10d6b7c9fc0e1f2a4b5c8ff9ec86fc035e4124c576d8f118c23503"}',0,'BLOCK_PARSED',NULL,'559084bcf036807fb153331776c84fdea9e4151e8f80ddb659bd5ba20cc58f4b'); +INSERT INTO messages VALUES(1527,310598,'insert','blocks','{"block_hash":"8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a","block_index":310598,"block_time":310598000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'febeb2e845b963a9d894a6ce2d6390abe8331ee55b6ba3bad83508f04f7cd620'); +INSERT INTO messages VALUES(1528,310598,'parse','blocks','{"block_index":310598,"ledger_hash":"870b9172895279ddf0eea7c295ac66ff499b1ad52652f763d6a3935c2dfbed8c","messages_hash":"e0c61e40e47a3fc873b62e088ca9e2801bedbfc90167beb06c941ef58921aa7a","transaction_count":0,"txlist_hash":"b23f0702a5066982b19875ee3aeacce21c97adacc44c5ae6bc1be94f3edcfc93"}',0,'BLOCK_PARSED',NULL,'d57058cdabe4f2b4293fcd03ce238a9a73c4ae6135bfad1f5605650161ccb640'); +INSERT INTO messages VALUES(1529,310599,'insert','blocks','{"block_hash":"71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8","block_index":310599,"block_time":310599000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9cb88624b94fad8dbc12ebe52f4af5b2d8fbdb53ea52c5b1852634425414cd1a'); +INSERT INTO messages VALUES(1530,310599,'parse','blocks','{"block_index":310599,"ledger_hash":"58ed63759b5f5d48819d1c924e25036764b728f9d7b83b08fd368fa3e1bdd332","messages_hash":"f119fc4c42d3c05d42aec3d0e5139ea5ab52ba917495e0cd0eb289cbfe7c487f","transaction_count":0,"txlist_hash":"cd5848644ac2a8bf3fe63736a96ce91345ecfc54c943e72e6e24b8cde5ced243"}',0,'BLOCK_PARSED',NULL,'63de3682cbf600fcf8f71ed24b3729c6ceccdc769a3057d1c6b41ef139e0155c'); +INSERT INTO messages VALUES(1531,310600,'insert','blocks','{"block_hash":"f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a","block_index":310600,"block_time":310600000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'86b61256af3179bc85cb21e4cfeaf8ee9baefb604ae0461172aa0b4392b33749'); +INSERT INTO messages VALUES(1532,310600,'parse','blocks','{"block_index":310600,"ledger_hash":"5ba20ac629f2846a58a347946342f086b1529b3d4c19a6a93cb37ce2f6c781b7","messages_hash":"2445d96b5d8a61a70128b03e2cb6fb31a5912bea043a904547964ea28f708839","transaction_count":0,"txlist_hash":"8d9bdfd600f2ab1f9df6b51b3849792e10973ce73b872ab6e8d6da2b5606af53"}',0,'BLOCK_PARSED',NULL,'cf55bd1532f3a0cf83153f4007068bcd3dc49cc9ac52eebafaf88596896443ac'); +INSERT INTO messages VALUES(1533,310601,'insert','blocks','{"block_hash":"7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd","block_index":310601,"block_time":310601000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9fb3f91200410053f1b6ce8877aa1271b2b1295a99019dd6979162856003963a'); +INSERT INTO messages VALUES(1534,310601,'parse','blocks','{"block_index":310601,"ledger_hash":"98094278d3706a99b1a5bc02498e33f8c316315a607f014e1a057a2baad922f5","messages_hash":"d19d246c74a88c90808bef18c523c5b3613fa816a895554d839b02c455cfdfb0","transaction_count":0,"txlist_hash":"2acbb771db97fb8e8f0963b813502965908a680d2fd86446a33be34e3744e81f"}',0,'BLOCK_PARSED',NULL,'5f17b9733222f6a506f0e0b90d462425797645b18e63f54ed649a2fbfca146c4'); +INSERT INTO messages VALUES(1535,310602,'insert','blocks','{"block_hash":"c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2","block_index":310602,"block_time":310602000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e3c1336baaddee92afae07f006f41b1b4e2772ab99d97f843953abb37bbb6103'); +INSERT INTO messages VALUES(1536,310602,'parse','blocks','{"block_index":310602,"ledger_hash":"e3e9805428639bd0806e24007889b60b4f5e3b399bfba6d0ff68ed0c7363140e","messages_hash":"0521d9a32de6ba28d8da96885a70c130a2359283532d29abf3d876131b2a16ee","transaction_count":0,"txlist_hash":"243a393f2fac01b0ee4e10351a0cdd703509ca63d66654bdf578f3eca689421f"}',0,'BLOCK_PARSED',NULL,'cbe7be68fb25d055ba83b78779db4c9397db5544d5194055f54cef81f8b34818'); +INSERT INTO messages VALUES(1537,310603,'insert','blocks','{"block_hash":"44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c","block_index":310603,"block_time":310603000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'49ae1080db94b9e5a287194942d95866d8c0b685af7a6ab3991c54dbe3093214'); +INSERT INTO messages VALUES(1538,310603,'parse','blocks','{"block_index":310603,"ledger_hash":"3ec5123124b50e2943741319254ebe63d5410a3af3dc56fab3b1d11002453979","messages_hash":"e80209237ba7dd831b0b5abf34da25580b054e7770cdd121938312328dc3ae93","transaction_count":0,"txlist_hash":"6bd040dedbdefeb0e3398fb4533bd2bcd99edcbcaec5319ccde5e7a5403017d7"}',0,'BLOCK_PARSED',NULL,'dd0bbed6fe1753889ef9c81dd3f6427434d8595f741e0eea789a3ceaa3deff16'); +INSERT INTO messages VALUES(1539,310604,'insert','blocks','{"block_hash":"36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f","block_index":310604,"block_time":310604000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a997ad1980da7d674743c6bca6d497e6a5354d89b1b2a908927f1e0b715b2e48'); +INSERT INTO messages VALUES(1540,310604,'parse','blocks','{"block_index":310604,"ledger_hash":"02ce31a767356b8c5c3cfa50aef88e420bc0a0026a6b5a9de323b8b6522ddf26","messages_hash":"ffbc78112dc29cf522659ee62417c9b38dce46ca9cf53540a5c2e8025e38b79f","transaction_count":0,"txlist_hash":"50dfcfb2871929ffce0a82a85a5ee11a125109a774b34a9ec127ab6bfdfa3b8c"}',0,'BLOCK_PARSED',NULL,'c43d1ce44f4fa116596544dff8b935e1531da7891292b2c2b27924780296c90c'); +INSERT INTO messages VALUES(1541,310605,'insert','blocks','{"block_hash":"ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9","block_index":310605,"block_time":310605000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b6edbaf8cd97d48bea1c1e0be52680239bcbddd3843359790e9db54d73614542'); +INSERT INTO messages VALUES(1542,310605,'parse','blocks','{"block_index":310605,"ledger_hash":"cbfc2eb6739bf2d671ac0196c78865612592f7629caad2466e303a7c14af9b46","messages_hash":"54913ed142c2dc6b0aac7b480b4c1ffdeb562702185dd44deff40f2f76117d73","transaction_count":0,"txlist_hash":"3427c9e8c0ec9016a521b4ec842bb5cf3731cd747b514a553f222e44a3d3def3"}',0,'BLOCK_PARSED',NULL,'7844595b57da168b9b2a41fe4ea5559d52ee416a8323e91a83a42280aa1f52d6'); +INSERT INTO messages VALUES(1543,310606,'insert','blocks','{"block_hash":"9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f","block_index":310606,"block_time":310606000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cf9921538a04fbbe1b8f6b5137ba42ed40f8d821cdee10f2af335b4d424c4ccb'); +INSERT INTO messages VALUES(1544,310606,'parse','blocks','{"block_index":310606,"ledger_hash":"2266c4b7443b474124516bf19dc082d2cc547ae7fcf2027bed2b1360eb04296a","messages_hash":"09392d7614905f6795ff899e05eca8e8a332488f1f68772117d36a48e606bf78","transaction_count":0,"txlist_hash":"c11cb503ed27d64acc8b2363a34617edbbf35bb701f21b87c70eb4966f7eb035"}',0,'BLOCK_PARSED',NULL,'5e765dfeaa8fbd4228ababded999d3ca9dfed1f52e6c900babdcf88dd7f217d4'); +INSERT INTO messages VALUES(1545,310607,'insert','blocks','{"block_hash":"ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d","block_index":310607,"block_time":310607000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'22bf8198fe2f31bd70881e346333dd4fb9ee642af8b94c9ad0029ace8eadc842'); +INSERT INTO messages VALUES(1546,310607,'parse','blocks','{"block_index":310607,"ledger_hash":"8111c3319cff47fec3e4aa7c007516bcc3dc68235e7fd8d192e3894f093c035a","messages_hash":"cea19b754ade705a9372f9866b0438d0c81312035cdbb9d7c778d38c27e95953","transaction_count":0,"txlist_hash":"12b12d0888cd3a82d149f4f8c136000c26a49f97f318c76dc90fcb4996bc3064"}',0,'BLOCK_PARSED',NULL,'8cda5056ea9543c3afceae03fbd63b296a87bc6178f1bdb5518b89e6a800c048'); +INSERT INTO messages VALUES(1547,310608,'insert','blocks','{"block_hash":"ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846","block_index":310608,"block_time":310608000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'99b897a39e9b627ff885ac710ae41468bfcfe6ab05f02d2609393c25130f7c71'); +INSERT INTO messages VALUES(1548,310608,'parse','blocks','{"block_index":310608,"ledger_hash":"399589784086ed7a16699c38c2d9ff69cc2e055fb069f13f073440109ae97c7f","messages_hash":"659f7e678a16e0a5518e51fdffb5b012425308c1b6e9612c7288ec3ee7bbbe3e","transaction_count":0,"txlist_hash":"9fcf0c090ae0aa70fee65fa83a35cd15311ef460f5fa501f6f842c29e2865856"}',0,'BLOCK_PARSED',NULL,'6b48f574ed8a5022163f379fa455b40d8f9da552d514cbf324af40f85fa9ed51'); +INSERT INTO messages VALUES(1549,310609,'insert','blocks','{"block_hash":"83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455","block_index":310609,"block_time":310609000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dfcdcc30d21950919baf2dd3959ef455706c388c46212dd2fc6dab9c2272a815'); +INSERT INTO messages VALUES(1550,310609,'parse','blocks','{"block_index":310609,"ledger_hash":"425f42bd35b0e93e586ba8ca0c58da2c86d8e159d444f2b14908ad44248379da","messages_hash":"2200500287fb87113cec48ac9056dfa4b8f058fa9ce528e418633ee0b2cf4c0b","transaction_count":0,"txlist_hash":"7e09b9bc2a4a6bee758dbee3801455b3c84998bccaa40ba8e1a62eed98fdf40e"}',0,'BLOCK_PARSED',NULL,'f98d20d9b43d54de282ca42d6cf47c6f742451825c355d4eb883357c0b23c620'); +INSERT INTO messages VALUES(1551,310610,'insert','blocks','{"block_hash":"f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9","block_index":310610,"block_time":310610000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'84778346e41afb1d6b479375e0960225a2b0b6beacd8e5a8a90d7998b04053c2'); +INSERT INTO messages VALUES(1552,310610,'parse','blocks','{"block_index":310610,"ledger_hash":"791867b9f8ed751e093bf724c48f7c12b387e9264d17028770bc76e6a47c1449","messages_hash":"b8d5744541768ffc79d1039803678428c7f21a5e6284c8a699ea82903e0e77f8","transaction_count":0,"txlist_hash":"b5615378baa3bd212119929c04f03e2ec798efc02eaf92232b393e1cebf21cf4"}',0,'BLOCK_PARSED',NULL,'3e1386adfc6baf4942a0a0d9d72846d2992aad2646b99598dff1e93852af475d'); +INSERT INTO messages VALUES(1553,310611,'insert','blocks','{"block_hash":"6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89","block_index":310611,"block_time":310611000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1dedea01aa4e2b00624574f803ea3db965f1b3b31fc13e1570765ca360f9d33a'); +INSERT INTO messages VALUES(1554,310611,'parse','blocks','{"block_index":310611,"ledger_hash":"c8ec71e958f8782a2c5b5fbc93750b6b8a5fe444e9bec83b0f58897891cb5b67","messages_hash":"412e5b533055e47a37d8186b21f4ede04e8d2cddb5542be7dd6983c9c6599261","transaction_count":0,"txlist_hash":"f026a93859c733bd910f0341d53802b2443e5efe0a7a7dedd3b0e3bcb7cd6f07"}',0,'BLOCK_PARSED',NULL,'1318826db86121311fac27c11a1233b440b11ca604429f031fadd11c1e8d94b1'); +INSERT INTO messages VALUES(1555,310612,'insert','blocks','{"block_hash":"08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd","block_index":310612,"block_time":310612000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c78a07736d85c2323333f4507ff1e37ba6bea2096466ada9a6e66737fc7c2c58'); +INSERT INTO messages VALUES(1556,310612,'parse','blocks','{"block_index":310612,"ledger_hash":"4594b8baa36eec188227e960a64d42a49fa2c3619cc852486ea09ffab83a8f3c","messages_hash":"d5c41c70c7a4dcaad2d290931426912ae1b18e84a43f1139c658c9bb705eb70b","transaction_count":0,"txlist_hash":"b67528c85ae55a57b1dcf3501d340c280af942e4078a1c9a39e9ea63ee9570b5"}',0,'BLOCK_PARSED',NULL,'d8ad0d725cf6276016d641ed33e639d3d1c0d438ec23360373df83a3240ba617'); +INSERT INTO messages VALUES(1557,310613,'insert','blocks','{"block_hash":"c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53","block_index":310613,"block_time":310613000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8010c0fb1584edfcc35adc8632c22805092dcbcb851702a59bfaf631d61792b3'); +INSERT INTO messages VALUES(1558,310613,'parse','blocks','{"block_index":310613,"ledger_hash":"de0e85bddeac7e267f1e2d5fbcf84f5761acaae0142db35d5c2886f386a1a5bd","messages_hash":"ea1f267b694b4e0ea94c9f43a2dfeea2b52d91351f5095213d69976c0bec4951","transaction_count":0,"txlist_hash":"d6e9204ae7b7c5f887a25fc06ffce731e1c4f3228ff039e35be1d321276f81a2"}',0,'BLOCK_PARSED',NULL,'a3416bf61ee38aaa029a1af3d0740bdd5e7853b6128910e21b726d9c86a18279'); +INSERT INTO messages VALUES(1559,310614,'insert','blocks','{"block_hash":"e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b","block_index":310614,"block_time":310614000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b9be71fba4807eb57edc3818277e994cae8157e8eec52275f6e6e0e5d0cd2a28'); +INSERT INTO messages VALUES(1560,310614,'parse','blocks','{"block_index":310614,"ledger_hash":"2e74f610c9f8a9d41e23d331f1be5dd73ec34484015a434dfaaffe26ea12d5e9","messages_hash":"d1c8eb5da18f7bb6e6f04f7a211d13c4f75551f63078b280dc48a590d2a86fac","transaction_count":0,"txlist_hash":"d1459bf2b59c0c441b8f00889669c3c6f645f66f608eeb623576ed7044bf37e4"}',0,'BLOCK_PARSED',NULL,'e06636ff3b8ca7e6bc183b4b351bfc8a79cdce1faf70bd53c4578989bd01c8ff'); +INSERT INTO messages VALUES(1561,310615,'insert','blocks','{"block_hash":"fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc","block_index":310615,"block_time":310615000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ef7ddfe2a6654256eb70060d9562896075529e14c667899576e92ee663b2d0c9'); +INSERT INTO messages VALUES(1562,310615,'parse','blocks','{"block_index":310615,"ledger_hash":"d9f45cb567f34f84c514d22301b2da86908bc253aaa629b6865c2133c206cabb","messages_hash":"a0d491660440f20e3172e31d1a07cf617ee504e64f20527452b6da75e3ff9ce5","transaction_count":0,"txlist_hash":"b35468ce63479f2f7cd17f791e8a66b3a1b42e716a7792a2213bf8742978f9df"}',0,'BLOCK_PARSED',NULL,'9899809feb32ec47d94d5458cc5eb62aa4b2f145f7444950d57501d61e5eb691'); +INSERT INTO messages VALUES(1563,310616,'insert','blocks','{"block_hash":"008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84","block_index":310616,"block_time":310616000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8dd1d8938a6e2f61dd3e4bc44885fd62ebaf9f3bfc7287e4f6b7b112261f7713'); +INSERT INTO messages VALUES(1564,310616,'parse','blocks','{"block_index":310616,"ledger_hash":"e30e9f61f505ea7f98f2e1f45f9afc9a81fd074f021d2a870dfcae2b9f1cfe9c","messages_hash":"2100a4d4e90036fe1b56a618ba65be80e19ec195c282456ebf591ec61c45ac1a","transaction_count":0,"txlist_hash":"51e2ca4af76f00e81e5f946c53f23e1ee7ba4ea7603832ef77c374bae59afe3c"}',0,'BLOCK_PARSED',NULL,'9285a75df13deea8e4cb1dedaa0421ffe1cbdb95e5bc73320800c7b88b022951'); +INSERT INTO messages VALUES(1565,310617,'insert','blocks','{"block_hash":"cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29","block_index":310617,"block_time":310617000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'08deb1a383453b52199dd2cf2084238d0eeba9d95ed1c56d3c34420f13bf03ac'); +INSERT INTO messages VALUES(1566,310617,'parse','blocks','{"block_index":310617,"ledger_hash":"d9384d42da7243395812dab1d950d95a88a0a59429c74b4d4a5176d0be033616","messages_hash":"0697ef9cb30c2a2c5f524e5ab26465988b98173c9b8d082d628e0121ceaf1392","transaction_count":0,"txlist_hash":"55776209dc06de6d494ddf7866b805d94f4371598273d4dcf23b510e72826cc3"}',0,'BLOCK_PARSED',NULL,'42651147d49b80d9fc49663e6713980de90ff0dcc7de5c66250c8ae6a1a02525'); +INSERT INTO messages VALUES(1567,310618,'insert','blocks','{"block_hash":"f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b","block_index":310618,"block_time":310618000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b852704eda5d40a25274f066f3f8246140794fee65b86d497f4120f10ae27ed0'); +INSERT INTO messages VALUES(1568,310618,'parse','blocks','{"block_index":310618,"ledger_hash":"4ca7c230a3fe6c8ee91bb4bf3152c462dc1e2974a59f2c999064288892d08ea2","messages_hash":"5e1c8f4551237738254dd66979de7472271c5411b1ad66b8d2ac417cfd9adf14","transaction_count":0,"txlist_hash":"cad5af4c24c74aad93c806ae54251b11cd7d13210d68098afb26cbe73e3e120e"}',0,'BLOCK_PARSED',NULL,'f250aee77e43d5cf774945ba11b999b92423aa5b31f0d12d47ba2df2fe9b27bd'); +INSERT INTO messages VALUES(1569,310619,'insert','blocks','{"block_hash":"4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d","block_index":310619,"block_time":310619000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c9a8a4da01690cc498da88d68b9e7b567c32eff8f17819c835e26cbd373f9ce3'); +INSERT INTO messages VALUES(1570,310619,'parse','blocks','{"block_index":310619,"ledger_hash":"61d138e6a8fa305f823286bfed3bb8ffd19459df4a4476f49a4f250d7021f7b1","messages_hash":"1b9e7f31f474711312faf01725f3ae59d78b04eb0343339195d6cd0fd3d67509","transaction_count":0,"txlist_hash":"42704ac1329f6cc2fbae3b8d6113afc679f159b44e007a4268d03cd9a9944721"}',0,'BLOCK_PARSED',NULL,'be96efe94bd27bd8a972ac2bf84ff30cfa61104e49c660cd79a996e9c259099a'); +INSERT INTO messages VALUES(1571,310620,'insert','blocks','{"block_hash":"98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519","block_index":310620,"block_time":310620000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'758edc6b802501bf099e3b0b482cabc1255fbef9033fceaf1058cdeeba543342'); +INSERT INTO messages VALUES(1572,310620,'parse','blocks','{"block_index":310620,"ledger_hash":"00e2a6449915ea1d728032c813d78b236b6042e13b1e3aa9856453a727d4a690","messages_hash":"488fc22e472a0f9b0817d4e30fd8a2fc91f1d502bb7eb67e1108235a545409c9","transaction_count":0,"txlist_hash":"e70c9193269a63eb0ade25f20d608c5ae1d9bfa8d79f7ed50c2f3e7b03945149"}',0,'BLOCK_PARSED',NULL,'aec8472eb14b5c193e16db2c13c550e59a47f0ea0bb22221be461c2292a92952'); +INSERT INTO messages VALUES(1573,310621,'insert','blocks','{"block_hash":"1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11","block_index":310621,"block_time":310621000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d3cc9a88aa9a2f6ec64b9c4e5d9eab1f4459b8e0242d1c27645c2c2dfb0ff806'); +INSERT INTO messages VALUES(1574,310621,'parse','blocks','{"block_index":310621,"ledger_hash":"b454bb9ea3b218e1c9a622016aeb5a87f2c3547b164498cf79638ce5c5b9c151","messages_hash":"25b3b0222bc6b3a9ae6e4949da06260499581b313b9fa002d566b16023d9aeb4","transaction_count":0,"txlist_hash":"0993cb53bd6e9ea2635b2ddd58c9a43c5610e9e2a0ed0fa5407616a28e3aa201"}',0,'BLOCK_PARSED',NULL,'b16ac908524cdd198ba8cffba13311e405ac2b5642d99918f4d8d964f098893f'); +INSERT INTO messages VALUES(1575,310622,'insert','blocks','{"block_hash":"3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47","block_index":310622,"block_time":310622000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7ec5096f59cdbd777466b99f027a694c71f76b866d262034610f2bb3783cee27'); +INSERT INTO messages VALUES(1576,310622,'parse','blocks','{"block_index":310622,"ledger_hash":"791b9cd494c96b091f01a0acc1a77762bf062d13eab06d9ef3e7adc4a3ccf303","messages_hash":"75f35e96fb68715336ac80ea86223ed387b574b8bb192726c6707984ddab5b04","transaction_count":0,"txlist_hash":"674ce108f53ec7902c24edac613cfc104e7d08cfde7c8dd3ce65ed9dfd72182a"}',0,'BLOCK_PARSED',NULL,'0bb12183be96eef52e7b1c9648cf9d72b16b49b663a8e71a155049a6bd2cc10f'); +INSERT INTO messages VALUES(1577,310623,'insert','blocks','{"block_hash":"817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad","block_index":310623,"block_time":310623000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9dc214c1d678394c2d9cf53c8b7b64e650245eb6b071b37ff5bddee365918b23'); +INSERT INTO messages VALUES(1578,310623,'parse','blocks','{"block_index":310623,"ledger_hash":"accd538ac94e49e181ff93568c3c1c06e3a29752d8ea17c61e485e95e77b5b6f","messages_hash":"4d006f3e4a07d9935ace0bd0b3de20e2e9a15eb44c46acecfa0baa17ec41eb91","transaction_count":0,"txlist_hash":"a56c89d0b997d5411cbcf260edcbd409e31a599fe36ac6f20a3e0c031e17e750"}',0,'BLOCK_PARSED',NULL,'d8b514e206aaa05a6bdeed691719817a73e21b4a27071322fb1b5bca7ee2c738'); +INSERT INTO messages VALUES(1579,310624,'insert','blocks','{"block_hash":"3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4","block_index":310624,"block_time":310624000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aa6e34851c6eff6109f83ed198b042483a08c93329c96e46546c0bc24a714e3b'); +INSERT INTO messages VALUES(1580,310624,'parse','blocks','{"block_index":310624,"ledger_hash":"8ca42d0789366c39d92dc830654caad48cabfdff1b739bcaf850390d1a306c91","messages_hash":"08d37c765e8b49d91f9f1146a330fa33d47ddef089eb47b9d5ef4e672feca789","transaction_count":0,"txlist_hash":"daec5678d2803f99becdecb666418513aab7cc9a37f6ab54e675e0a895a3b69a"}',0,'BLOCK_PARSED',NULL,'2a4f251a95e638ad6b4f12531577f90a30ca6603ff9f02e1f99374f52f18b306'); +INSERT INTO messages VALUES(1581,310625,'insert','blocks','{"block_hash":"bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba","block_index":310625,"block_time":310625000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ccd688ad2dcdf1331a536374b004bb957217047ee8fa0e188e2a29781eb388d'); +INSERT INTO messages VALUES(1582,310625,'parse','blocks','{"block_index":310625,"ledger_hash":"97ddfd8dfd78b745a1baf90c8fecf0fd4a9bf65682a7900f532756ec9a4345aa","messages_hash":"795c6e583990ec6196489d67ec3f1bab7d7c14430bcda2c0d22fdd148e2db2ec","transaction_count":0,"txlist_hash":"e378650c25e95773a8167e904ce8ff4d10efc57fc2b544054c6b4201f7547537"}',0,'BLOCK_PARSED',NULL,'600c84cb36e14a7f20e2f449313255ed35e2ed7e2a7e1df0740e937ae83318d9'); +INSERT INTO messages VALUES(1583,310626,'insert','blocks','{"block_hash":"b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d","block_index":310626,"block_time":310626000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11b7a67b2434ca05375e2b0a63eab52fa9f6d0099d28a419c4654daf4ab8fe59'); +INSERT INTO messages VALUES(1584,310626,'parse','blocks','{"block_index":310626,"ledger_hash":"78fecdd210b3b5cf22f7edecc5d8ce31ece4f3ee90a9d1a7e9231353d74378ff","messages_hash":"f40abca9fe7283910e120a1c09969f3445e4c8fba1f85f65fc95bd6db69a8129","transaction_count":0,"txlist_hash":"0d54a79bc7f05e33aefa5fece35ec2902b3da8461e34163b58c2fd3779483614"}',0,'BLOCK_PARSED',NULL,'3abb4b8b1a1b0d558d1047f99c115b28c8309a56e18f9016e9db1685f06aea8b'); +INSERT INTO messages VALUES(1585,310627,'insert','blocks','{"block_hash":"828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f","block_index":310627,"block_time":310627000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'473ecd7d7d48556a7b9f98eebc98f1edddc2feefe2e2f64aeba45fe85be95e5f'); +INSERT INTO messages VALUES(1586,310627,'parse','blocks','{"block_index":310627,"ledger_hash":"6a3176840ca189c93d52a64017b774dc5c8789121439d997cfe5ed3785ac2c0a","messages_hash":"6a212e03fc08edbd3207b2b0430c69dbf85d5f84a5fa1b66784c7bd7d4c9e395","transaction_count":0,"txlist_hash":"b4e762b53ffd3d9ba24a34032ba26b048f2c7524008cc3f35c0e44c1eaadf8d1"}',0,'BLOCK_PARSED',NULL,'8b6f679b5e798b6a96f952ed5df17d7e6f11649e77d4af9f05d9f49ce51fdb13'); +INSERT INTO messages VALUES(1587,310628,'insert','blocks','{"block_hash":"f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e","block_index":310628,"block_time":310628000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ca5c388317f78f1c4e0ae76a816a5309892d0d14ea36664aa5caab48a37cca6'); +INSERT INTO messages VALUES(1588,310628,'parse','blocks','{"block_index":310628,"ledger_hash":"f8271403e2bc0506b46083570d6372b1ab36ca545b7b105fee8bda6a0316d20a","messages_hash":"8606c13be3cafe4d4bddf5701a88bf6a9203bf0589eac1eb098ccbd8449ab343","transaction_count":0,"txlist_hash":"966ab2ff446abb9ad3589034fa23dbc5c467d019cb92803745c8732b05a6bfbb"}',0,'BLOCK_PARSED',NULL,'f9bae0d36b8952496787b7f3255e0dd854df854048bfd5667fd81fef2ef768b4'); +INSERT INTO messages VALUES(1589,310629,'insert','blocks','{"block_hash":"254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20","block_index":310629,"block_time":310629000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8cc19a4ea5dd4889b8c29c37f597f4abff7424b0ef65fa6475a6a6ac0890882b'); +INSERT INTO messages VALUES(1590,310629,'parse','blocks','{"block_index":310629,"ledger_hash":"89b8d07c2c7c9b9e4d7cbb24fac8b39a02518978470689916fd7109938749327","messages_hash":"d9e2fc746cc7844019a2794192467b6071e0b2a615599ed7f085cd820a94f7ee","transaction_count":0,"txlist_hash":"f739aa66c8acb9c24def7f1febed2189e6cc63361d2f798ed32cc808acf01eec"}',0,'BLOCK_PARSED',NULL,'7107a772c5ed00a55ac1f2d945b35624f941266be2d7a763823154273f1e4e48'); +INSERT INTO messages VALUES(1591,310630,'insert','blocks','{"block_hash":"09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde","block_index":310630,"block_time":310630000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'87ca0a1d983669c2151c43d38faec6ba1aa7d9c6e012f5c9d90917cc3c244978'); +INSERT INTO messages VALUES(1592,310630,'parse','blocks','{"block_index":310630,"ledger_hash":"637f978db85998e0852aa7eb022b67c9a0dd80fc8358550bfb2295dec33a27dc","messages_hash":"90af1392b478e6d84da5f26c385a0e8d8f96157df43b7ffaed5040b689d6865e","transaction_count":0,"txlist_hash":"51ee75dd962cc512bcfbdec32657f7439d60f3e613329a313f44970952abc904"}',0,'BLOCK_PARSED',NULL,'a1d2d7fdc2d331880c2848dbf7f178b7bf881ec23c6acd0f22218d802ae92ced'); +INSERT INTO messages VALUES(1593,310631,'insert','blocks','{"block_hash":"b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be","block_index":310631,"block_time":310631000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c143b5247124971dff1eee7fe8127017df448f3bf4477a0b5863d54b7bc67ff6'); +INSERT INTO messages VALUES(1594,310631,'parse','blocks','{"block_index":310631,"ledger_hash":"111964dd5de58996c79fed037fa414d3091b24f39162b8b49b1706489fb70de9","messages_hash":"46b710d8cc561e7bd3f5d70a226ad8bf6463246f0125be4e6908390383eb168f","transaction_count":0,"txlist_hash":"c513b62a3d7bd0b4fc649889deb032ffbb9efb6d209e4bf5e14ea24250f147cd"}',0,'BLOCK_PARSED',NULL,'1f6f53d4d828aa062eac1a35a67b9ad5ae92afd069cc813ea6834bbd0b526b00'); +INSERT INTO messages VALUES(1595,310632,'insert','blocks','{"block_hash":"79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1","block_index":310632,"block_time":310632000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eb8987b4f808accb2b71ad92198da5dae256f9aef7ebad3736cd2f7ff581271f'); +INSERT INTO messages VALUES(1596,310632,'parse','blocks','{"block_index":310632,"ledger_hash":"bac16748526f10796a496c934904ec1531fc346c47f76518effd0fdeab0cbf2d","messages_hash":"439997103b30d1a86cd73abe038c7ecddaea3f2f188486cc986bb9c439b7a6b7","transaction_count":0,"txlist_hash":"6f4ee24d93a37b3686c71e39cc7ce7e3f79a3a9a6397e608d74c3646b9358d62"}',0,'BLOCK_PARSED',NULL,'8880377fc08bbfff5869666e891d407b3e2aeffc74a0f083644054f8dc060d5c'); +INSERT INTO messages VALUES(1597,310633,'insert','blocks','{"block_hash":"e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1","block_index":310633,"block_time":310633000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fc9cb13827545f4f6fb03e70c7655bd86ff6a281f537c6089ae750d63d4d769d'); +INSERT INTO messages VALUES(1598,310633,'parse','blocks','{"block_index":310633,"ledger_hash":"429706df8ba85dd7af927bb7d356b608005176b33a0f25e026050467478278d5","messages_hash":"4ce3223f24596151dea3d243f4e0448ee0233d3fc765f2a90be85d684c18119f","transaction_count":0,"txlist_hash":"52825a5f663c03d9d8027057b36564cf4be997fdc15b5b503d1701019e92376e"}',0,'BLOCK_PARSED',NULL,'557af1d24afbc2017583176185a44190f45d7f95fb3d8b0e6f10e0e26223c997'); +INSERT INTO messages VALUES(1599,310634,'insert','blocks','{"block_hash":"c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af","block_index":310634,"block_time":310634000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a64930adfea6fa2f8aa0b99eee381e2ce3c2d606cfadaa9bcff7aa7ea10e601'); +INSERT INTO messages VALUES(1600,310634,'parse','blocks','{"block_index":310634,"ledger_hash":"7f0f383e79def1e3a68337c026ab2a8af69462ad3e450aa9e14e85c197878b2f","messages_hash":"8b51cdafa4e30f307a35d7b150ae2c9f90edccc8b34c73180eb6ad1856ac058c","transaction_count":0,"txlist_hash":"e9c54a989efbd6b8234ca7f0fae5d39b7f83479470c90f2d43dd11288792da1f"}',0,'BLOCK_PARSED',NULL,'95b9e21d9a3aeccd5e2594c1f93c60523afa6c30e5d1d31e30abb650dde23f95'); +INSERT INTO messages VALUES(1601,310635,'insert','blocks','{"block_hash":"8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e","block_index":310635,"block_time":310635000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d086e58b340d3d5be20c6dae15426391b7d84dd78afe16b8c336797809625e35'); +INSERT INTO messages VALUES(1602,310635,'parse','blocks','{"block_index":310635,"ledger_hash":"8f7228dc809935d3676b5564f1d66e72eb446c74cc92aa037bf62b5f145bca36","messages_hash":"cf8ce652968d079d7e736e800474590e13cab3ad6ebe1497f57cee48a254c4f3","transaction_count":0,"txlist_hash":"f93c139e303a561ea8d29de69ea04dcdea0ed5ae41ad8ac0f6fdc2fe8817d815"}',0,'BLOCK_PARSED',NULL,'c13e4e3ffd25768aaf356d5fbce5e3b77b18f4d5b81bb024d95bb71c26bf5e71'); +INSERT INTO messages VALUES(1603,310636,'insert','blocks','{"block_hash":"ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31","block_index":310636,"block_time":310636000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e19ae53f4b30d17f942d05e4423591bcc92d685a19a0157506d0f99073ec9937'); +INSERT INTO messages VALUES(1604,310636,'parse','blocks','{"block_index":310636,"ledger_hash":"de84e3867052961680b29056c07dfc27b6fb2eac814419dfd4e91b43e900c772","messages_hash":"878bc373268caab27574e672a4dee2187b28073f3ae5c86cc126147b9ab707e6","transaction_count":0,"txlist_hash":"63a31a218d2b42aa278be0ff76c71bf572114c281a90431d952010b7e75a0b14"}',0,'BLOCK_PARSED',NULL,'d2703560e37419b9cf0011a5fa7b53b1d7a56a36fcb5511eba63c284ccab1930'); +INSERT INTO messages VALUES(1605,310637,'insert','blocks','{"block_hash":"d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336","block_index":310637,"block_time":310637000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5586c9838dc4dafbfa90f09521fd5471862352bd335b5dc70b5cb1f160be7c99'); +INSERT INTO messages VALUES(1606,310637,'parse','blocks','{"block_index":310637,"ledger_hash":"8d0b67598fce1b999273f33ec1baf8250887cad0b83459b702ab59034f3086e5","messages_hash":"01e47e5c8364edaab0015cc441caa1145d09c1a1dabed0a03d8e708c644254fa","transaction_count":0,"txlist_hash":"aaf47bc37b85c127d9bedf76b0900a07b29bb2a1300a12d92200e3f006e0b930"}',0,'BLOCK_PARSED',NULL,'f95ee2c1ffb1221b94711995cd681cf312bbc0d42a2a8b52a6f7de1f97fb3e0d'); +INSERT INTO messages VALUES(1607,310638,'insert','blocks','{"block_hash":"672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b","block_index":310638,"block_time":310638000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c4798bda5230820e05bcd3cf965b07c2c1609b9aee6642cce830c9edaa44dc5a'); +INSERT INTO messages VALUES(1608,310638,'parse','blocks','{"block_index":310638,"ledger_hash":"27790f551e94594c6af449e724c10ce357b5dc66bfebee23097afefb4e9f0a12","messages_hash":"8cc0fca3ffad9015927bb212ee5da7d0218490e373e8b22be90a7cbba74f214f","transaction_count":0,"txlist_hash":"eb6e3a68506f9c0bd4c522d5537ea01140273c8b84f376cc95fda0c99c8d8c7f"}',0,'BLOCK_PARSED',NULL,'5e12519e23383f7ed600c996c3e449f849a81fa55ec31dd0672c096b30319bb4'); +INSERT INTO messages VALUES(1609,310639,'insert','blocks','{"block_hash":"d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b","block_index":310639,"block_time":310639000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bc3c3624c88a029e410228b835ee39f7f4056379c3191192af984cb7172badc7'); +INSERT INTO messages VALUES(1610,310639,'parse','blocks','{"block_index":310639,"ledger_hash":"67a6aa875f85ee2238c17799eff999fc203dd693b43650eb5fc852ca35e336cc","messages_hash":"9d14f17d509f8281c04e6fe682e9fac6481357563002e13e17e30559784a5596","transaction_count":0,"txlist_hash":"4618a0558955508e24b4e79308cfeefbdefcf4def0f3dfc389d66b335488976c"}',0,'BLOCK_PARSED',NULL,'b7925cad900c9a19442496f70b46e4ec5a3faa592801323214de2fe2f7f944cd'); +INSERT INTO messages VALUES(1611,310640,'insert','blocks','{"block_hash":"474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59","block_index":310640,"block_time":310640000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0d40c0ba533e22cb8e1c552a786ba178468338d4b290d75126b8e0730d945b9e'); +INSERT INTO messages VALUES(1612,310640,'parse','blocks','{"block_index":310640,"ledger_hash":"ecf997fef417038221dea2f885b5cf3f39a695f1c5b4301505fba48de4967aed","messages_hash":"fd283dc32d0802e113f6a54d53a8a09f99dfa125590414bddf581f9ad90e3b2e","transaction_count":0,"txlist_hash":"41342d146bb15f623738e998c667d3bf2b51966495f1bfc948bfdfef93d27bcf"}',0,'BLOCK_PARSED',NULL,'087e87a26f7dad8805a6e76fc4e7b5def5d6f9b86dcb58e458a23708fcc220e2'); +INSERT INTO messages VALUES(1613,310641,'insert','blocks','{"block_hash":"02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b","block_index":310641,"block_time":310641000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'974a250410e6defa9f885752c1b93eab2337becd3f2c0221a85d783acf273742'); +INSERT INTO messages VALUES(1614,310641,'parse','blocks','{"block_index":310641,"ledger_hash":"58459ee74e52e1f17faf04b87d863a7f325a6f3e7119e9b0125a5f524b3f9e5b","messages_hash":"216296aa64be92588f833c4c89c6daa991b4836b482afd9822aceac82c02dc82","transaction_count":0,"txlist_hash":"266cbd2f8009b1c950b4a0f5d7b1a9e7fee56a0b60feca824b5f7e4f69334435"}',0,'BLOCK_PARSED',NULL,'928c328918565de06a39112bcd03ac1aaf85b845199ea657462756317c535df3'); +INSERT INTO messages VALUES(1615,310642,'insert','blocks','{"block_hash":"cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd","block_index":310642,"block_time":310642000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'45163c8afcbcf3ed65efd91d31c9fa1cad0ad8de2f97e907549c517c7609810f'); +INSERT INTO messages VALUES(1616,310642,'parse','blocks','{"block_index":310642,"ledger_hash":"7115a073784f629dfa4e75b9332519b2f2646f73b339566891a5a49a51130549","messages_hash":"95ad7e7fdbba30428fafdf81469a915d0d367670c0e432a6b23c947631af62cf","transaction_count":0,"txlist_hash":"483e13632b7785262d09bbc9c55ec5ecfae7992d38b44d92b3b7b9dffc979be8"}',0,'BLOCK_PARSED',NULL,'2097a05b52b2e7a8030820b146d898e047603fd998d656b919da9c47c6295f48'); +INSERT INTO messages VALUES(1617,310643,'insert','blocks','{"block_hash":"b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b","block_index":310643,"block_time":310643000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b3aaeb7b93716439d61a4cd2afb9738d991e1e4b91ba422ff0721d600cce5419'); +INSERT INTO messages VALUES(1618,310643,'parse','blocks','{"block_index":310643,"ledger_hash":"f33f3b1e121dcf510c45a6ae1ebd73cc2225507147578afccb57b510e55dcf3e","messages_hash":"4d68715ad53669493c453de539eacecf0cf9b8d9556782a4e7c3e1721f535f89","transaction_count":0,"txlist_hash":"2d428ebef22ccd8e01c73c47d63ecc37614f5bd34907d6b5e821aa4b3d7a0b07"}',0,'BLOCK_PARSED',NULL,'cf6b9cfb20f6825854fe0a8c5851d8c4231c4759ca0bf1e771514abb897092c8'); +INSERT INTO messages VALUES(1619,310644,'insert','blocks','{"block_hash":"f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672","block_index":310644,"block_time":310644000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8b4ea9feeee8dd9981e832c52a4291f713e8dbabd8e552a1fd34ae6fff968b7'); +INSERT INTO messages VALUES(1620,310644,'parse','blocks','{"block_index":310644,"ledger_hash":"1fe7deadadb5e69094696d93e4a633a0994819983ad920aff9392ac6738f9fba","messages_hash":"2e5d121afe71f37fc429baf759fa485ab7a47ff490ebcd55fc79105f43c256cc","transaction_count":0,"txlist_hash":"848e6511e3651c225508e11808f494e5730bff9072e37c5961b209f6ca5eedb1"}',0,'BLOCK_PARSED',NULL,'ff5d5539d3dcfb2eaf5259c083a5a42418d131632cb989cb765c2c6590dea5bc'); +INSERT INTO messages VALUES(1621,310645,'insert','blocks','{"block_hash":"f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3","block_index":310645,"block_time":310645000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'32e817e0ccb842619c87e6d16cc8316dd2615dfbfe0a277108f1e34a1f4ffdad'); +INSERT INTO messages VALUES(1622,310645,'parse','blocks','{"block_index":310645,"ledger_hash":"e02701b1bf4f3d2b2d9fff9867ae0a7447c730827397c2f1e78a2d522139fbfb","messages_hash":"0d006ea790bba01627155684e74c6a03420c3d299571727e9eea79b57a4f8d2d","transaction_count":0,"txlist_hash":"1e1feae6d6050b88b16c5df26ce029eda5fd272e96bec74d7a6139fd4c38343a"}',0,'BLOCK_PARSED',NULL,'a216a0fdfbb0a9143abd428075ed0e166d4a6c4c9e81a0a66077b9f19445ac4c'); +INSERT INTO messages VALUES(1623,310646,'insert','blocks','{"block_hash":"839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494","block_index":310646,"block_time":310646000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c4281ea394558294f441026c2530217e5bbe03fdd875c44af26870057650e9ee'); +INSERT INTO messages VALUES(1624,310646,'parse','blocks','{"block_index":310646,"ledger_hash":"1c921997d09586776036aea36d92e3e57c3e7e148c1f6565c4dcc8b8e72406ee","messages_hash":"bb7b88a53b02a3e1a16860634ff3d02b27096acd8a894fef2ea5319c958803aa","transaction_count":0,"txlist_hash":"d3f50fda8401e46bd75e7d4abe1296363de460d45141da3075342c8bc017f8d1"}',0,'BLOCK_PARSED',NULL,'8300e43df399e62d283bb364a02a6e9e217b65603de0ef67ea06781e5be9b13e'); +INSERT INTO messages VALUES(1625,310647,'insert','blocks','{"block_hash":"8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d","block_index":310647,"block_time":310647000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1fc7adfc95765aa0f1842086edaf581ef5f9040bbcf4077648bffb00000a62e'); +INSERT INTO messages VALUES(1626,310647,'parse','blocks','{"block_index":310647,"ledger_hash":"5799deb2c7b95959d2237ddd4566fab7ead35943382921bf738ee3c140e368df","messages_hash":"cfa7db02be77590395c7e288b577f92a38239716d708c6a5d7c088ae8b532b65","transaction_count":0,"txlist_hash":"4fb604a40972ea2e2fe9dc8ffe24f8bfb8d77900c80ff8f33bb7a34b2a0be681"}',0,'BLOCK_PARSED',NULL,'2cf56b9c05d53cd3b4b3eae3eece1a2cf96d475c1cad38912c06f8c838809914'); +INSERT INTO messages VALUES(1627,310648,'insert','blocks','{"block_hash":"8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f","block_index":310648,"block_time":310648000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fcceb51b1a8dc20a63f46e16b1d4096a74b4d257c9e7d2aedfb1de42fb056335'); +INSERT INTO messages VALUES(1628,310648,'parse','blocks','{"block_index":310648,"ledger_hash":"9b0c8c0e31e70e67ee396e16ed85766f17552293d2ebbe5566896eccc65688e8","messages_hash":"c615e72bdd350f38281ed3560ec07979e3587cc0a4f5cd8053d4a118a4de6d8f","transaction_count":0,"txlist_hash":"c9ba3aeda8abee31772f8a0f7cb5643a12eeb8c9fe59045bb0c9d49d5c69c3f7"}',0,'BLOCK_PARSED',NULL,'af3f668740ec1d3f795baf6c12f394081d9d23af2b727738e117eb5ad2980374'); +INSERT INTO messages VALUES(1629,310649,'insert','blocks','{"block_hash":"6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb","block_index":310649,"block_time":310649000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'61510491528b5b0d2a970135e42f8d37aa7664e709b6b42ed16302b2c1b2ac55'); +INSERT INTO messages VALUES(1630,310649,'parse','blocks','{"block_index":310649,"ledger_hash":"606c6a44f3fe7dcd230a4fcb137a010b1ba7ce11be94efee7dab2649618fb725","messages_hash":"cd81bd5131e8b4749fc0c0da0102895980e957d7e3bf3bb103b16e0b7a93625a","transaction_count":0,"txlist_hash":"1654a3cbc3954d23e0ca92af18141e3384277e78e664ad40f2867fcbc60a2d70"}',0,'BLOCK_PARSED',NULL,'d90ced88554ac4974236288f742e4e9e7e41421a388316351e85c816b88583d3'); +INSERT INTO messages VALUES(1631,310650,'insert','blocks','{"block_hash":"630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0","block_index":310650,"block_time":310650000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c12ff6777664765114f3cf779b74e82fdb6a0bc855e54cf4c2ad9433061eb17'); +INSERT INTO messages VALUES(1632,310650,'parse','blocks','{"block_index":310650,"ledger_hash":"e374080b3f666ea38dd6fae338339e01e5b9a35d7605d0eba6760b17caeac4bd","messages_hash":"065c75442500de5e41928418daba7f3b7952a5709349f6bc547cf324089e20f2","transaction_count":0,"txlist_hash":"d10f8ee8b2a804d4610ea132e890fa11bbfcd9582d059a77ad3b59c9ac93669a"}',0,'BLOCK_PARSED',NULL,'c4cf096bddfb3bd0f3f8e4391f1943c90478b34c466a903d1d5026f26d4cada7'); +INSERT INTO messages VALUES(1633,310651,'insert','blocks','{"block_hash":"abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22","block_index":310651,"block_time":310651000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'87569bbf8121faf591b0b9e9bab1dfe33c49f19bcb8833c6b547cfe52adba478'); +INSERT INTO messages VALUES(1634,310651,'parse','blocks','{"block_index":310651,"ledger_hash":"ab3aa2e64ad8e96d4f10c7c72566e65cf8b6df1d9c59acc9f36ff367276348c5","messages_hash":"ffffce0d2503ba52ef8381e0eb4806d34eb3f2c8c6f829d6cafdbab2b3f49f58","transaction_count":0,"txlist_hash":"d4ca114a2c4e1e43d82c0502548e9f9168e55553df009f846c652477104b3fc8"}',0,'BLOCK_PARSED',NULL,'e5ad144c09b99104e13e676eb4dd2d11ccff37b605a8df727cb3a9858599359c'); +INSERT INTO messages VALUES(1635,310652,'insert','blocks','{"block_hash":"5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6","block_index":310652,"block_time":310652000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a33f9b03a9090f62b7f883612033f16a1bf1e6e0d5ea0607a44872c3d55e26a9'); +INSERT INTO messages VALUES(1636,310652,'parse','blocks','{"block_index":310652,"ledger_hash":"0041d6f69a3abdcfcd6b79d991f2815f97bd31de1253bd4f4e67f9971e1b38cb","messages_hash":"22f6a085a3c07eedc18222ecb2352f50d6c268b15a137ed318becfd6e02d026e","transaction_count":0,"txlist_hash":"6491a9bdd162cac7cfadb1930138e1714fef048d0b2b001fcbdcf24413110d42"}',0,'BLOCK_PARSED',NULL,'88e58aa9660dc85d114d69f3043bcc92fc3f352f13a75c17f3fd7f8ad6fbc314'); +INSERT INTO messages VALUES(1637,310653,'insert','blocks','{"block_hash":"149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0","block_index":310653,"block_time":310653000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c3eb982f328d766820ee4dc911d325e520f1ab8fc783eab8af99c1a64239d761'); +INSERT INTO messages VALUES(1638,310653,'parse','blocks','{"block_index":310653,"ledger_hash":"782004b38c6737fcc6c2575d7eb00f2e364440cb69a4141080ee1960828fd2ac","messages_hash":"8c8a569ce9361127fe0154f7df0828b19adb0eae1afa096bcd0ea46996e945d5","transaction_count":0,"txlist_hash":"fc791bbbf8c78847cb342bdb1273cb697c513c68ee6d280941031cc38d4d6354"}',0,'BLOCK_PARSED',NULL,'9f595d7738eec18b6723e89b72966be4a478ba953fcd1412f6ee63e7a1379c7d'); +INSERT INTO messages VALUES(1639,310654,'insert','blocks','{"block_hash":"829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569","block_index":310654,"block_time":310654000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b4a195622ff42f76b8fe9349730efdfa04a9389b02265801331306bbee117536'); +INSERT INTO messages VALUES(1640,310654,'parse','blocks','{"block_index":310654,"ledger_hash":"77145b6ff93a432aa76c3aa6491ed92b6596da48dd5cd007ec38abdf92a111f6","messages_hash":"8ae82fa7c35e107fbd3ed2f604b09f39ff1a0adfb1ccb9ddcba5d012f511bf60","transaction_count":0,"txlist_hash":"dfaac3f5a38a1b4586cfe3ea5959b3d879d50a231191fcf46f75fec0b8a3329a"}',0,'BLOCK_PARSED',NULL,'c18c56b477b17f96838fcff16af8e1ba5c599bc9dc6e2212336a3f155a8d84a5'); +INSERT INTO messages VALUES(1641,310655,'insert','blocks','{"block_hash":"c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55","block_index":310655,"block_time":310655000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'080abb16e83db84a4cc962ff9e575aba06bcdb92e0d9bc0452fe502cf53e8d01'); +INSERT INTO messages VALUES(1642,310655,'parse','blocks','{"block_index":310655,"ledger_hash":"c01c53df2b345e24e6dfa455d588ff353b9245ce6fda1f41972955162b717723","messages_hash":"832d294f7c6bd1c597cf9acf253dc505e4064e881a2f15b049566f105dcefe33","transaction_count":0,"txlist_hash":"5a9a17b6be46a48a00b986503cc922e945ed3e59a0fffeff477e6953e776ed2a"}',0,'BLOCK_PARSED',NULL,'301b3db34f00a6a64c4a77d2109f5bc141600f52401e86195a8acd385013e316'); +INSERT INTO messages VALUES(1643,310656,'insert','blocks','{"block_hash":"5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b","block_index":310656,"block_time":310656000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cfc9c0d72b18a454248d9c9347b3d51ced8985c0c22125286eaf62581a77218c'); +INSERT INTO messages VALUES(1644,310656,'parse','blocks','{"block_index":310656,"ledger_hash":"b19e67439b541ffcc7855c5c655e738de7ee0c0429dd9542fd0f871b180f46c0","messages_hash":"9042b44a4a43ad0bce6307ce80238332787e9366001de1661d09a0ee593505cd","transaction_count":0,"txlist_hash":"73e8b5247b6daa8b931b1b28610b6fee7e10949a1aa6a62d71e276929fc5ed11"}',0,'BLOCK_PARSED',NULL,'1d1df3588875ecd1c843dcbb66aaf3ea343e5aafe4f6b93903033e4c9024d523'); +INSERT INTO messages VALUES(1645,310657,'insert','blocks','{"block_hash":"e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26","block_index":310657,"block_time":310657000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'60b0bdb1b52dae1bf37ab9915e848d479600aaf33792bb2582a59e09e3daccca'); +INSERT INTO messages VALUES(1646,310657,'parse','blocks','{"block_index":310657,"ledger_hash":"ba2ab5b79057b6507739a23131ee728dabb73a90041f116903f4a88e7a1566ef","messages_hash":"27c7e86e5c33d10208aab90ba0f7cd808e42c55a1672020332289f97127be6f7","transaction_count":0,"txlist_hash":"c426afc816a4d8536d96d8ed39c75dd8145e6d93864259b017c1932bd3bf0687"}',0,'BLOCK_PARSED',NULL,'236026c1990e3c8a71b88a82c0e9e2ca41913c0d768cea858de0b68e19162be6'); +INSERT INTO messages VALUES(1647,310658,'insert','blocks','{"block_hash":"579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501","block_index":310658,"block_time":310658000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8d0201b4ca9e094d21f6d4f0ed487d89ed00adb150034595834d297243c8020f'); +INSERT INTO messages VALUES(1648,310658,'parse','blocks','{"block_index":310658,"ledger_hash":"55bdf86bedc7787e874b37ff4dfbc3c753873577059b81d91c1d98fb61ab889b","messages_hash":"9fba4351dac2413aa3f32e051cbcde31978eed04aef5eafd8decdeb91cdfee33","transaction_count":0,"txlist_hash":"a0a1dbdc2cb08b59bbc105c44ebae0f8776483f2c1dba13a519984ca70a839db"}',0,'BLOCK_PARSED',NULL,'702dac81f9f4e5142bc15eefef4dc850a751c8f23df47c3b0391c1d3122be377'); +INSERT INTO messages VALUES(1649,310659,'insert','blocks','{"block_hash":"e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f","block_index":310659,"block_time":310659000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f290621d79357ba8e4757c16e0257f63f2540981388a85d1d9fc1aad7371daaa'); +INSERT INTO messages VALUES(1650,310659,'parse','blocks','{"block_index":310659,"ledger_hash":"075b47b96483cb17c8d208e40808aa6b2c6273cb2cac1f954c40323118d319e3","messages_hash":"efe3f9ab71802b576b8327d40e26a1aa23fe6d6d560fe9afa92cb91156cc38c1","transaction_count":0,"txlist_hash":"8820d989cad56e3ec4c084d37c7d586355019ea8e5cee7371ff05f4e19972528"}',0,'BLOCK_PARSED',NULL,'b6a72daadd0489fde4dbf0c77aa1e63205b9b312c1368a44a18965e94c6838d5'); +INSERT INTO messages VALUES(1651,310660,'insert','blocks','{"block_hash":"d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d","block_index":310660,"block_time":310660000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b2b9b60bb41e786daaf14f1d0675fcb92ef8e68c4097741fa4f054da225f0f69'); +INSERT INTO messages VALUES(1652,310660,'parse','blocks','{"block_index":310660,"ledger_hash":"9b5229606ef138005d260efd23e1dea5787e54a060eb1e06a3b3f20ceb8aa1b2","messages_hash":"ac5d922cc74d59ce471070115b26c90380435bef933a790af23fcfefd7548789","transaction_count":0,"txlist_hash":"f606b03288e72a208f5d44ef49343632cded5a190acc9784e7d44c3ce89e3d6b"}',0,'BLOCK_PARSED',NULL,'c7bd3ef2513273eb7c4c1e94857a9455c1ae2c0eeb44f7a3120cc7e3458d8dc7'); +INSERT INTO messages VALUES(1653,310661,'insert','blocks','{"block_hash":"badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89","block_index":310661,"block_time":310661000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8f608f13836c32fde4dc7723d7a0df8afd979ba62a29fbe4098173483fe79d9'); +INSERT INTO messages VALUES(1654,310661,'parse','blocks','{"block_index":310661,"ledger_hash":"fcf6e1cec9e929e90e87aab898f1c6b5f4cae33272a01f8dc4c877a78897ded6","messages_hash":"64b227d576c1f2ab6871d97064988ea02f84d58544e65198e2a45ceb9a782be4","transaction_count":0,"txlist_hash":"121ea9d910cd7cd9522a4c21056464d4b5831269d55d3ee93613f9edb80abce8"}',0,'BLOCK_PARSED',NULL,'dbf56f6ddb1678f35b0975dfa08ffa2dad2cb28f174df7f172eee9bb4eb767f7'); +INSERT INTO messages VALUES(1655,310662,'insert','blocks','{"block_hash":"952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb","block_index":310662,"block_time":310662000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb1c88c2551c8c3c05fe734847a4ebec6a0f610062f53fa61330b99d69709697'); +INSERT INTO messages VALUES(1656,310662,'parse','blocks','{"block_index":310662,"ledger_hash":"09d5b89e5eb641c4e6474a2848510151fa3e2d4ea21a227b67739aeb349390f9","messages_hash":"09c3fe8eb995c190aa10ff3a1fb63ecca44e5d3af00e6ddcd2ed9b2f316cd91d","transaction_count":0,"txlist_hash":"f2793e5e7ce5de99061d249b7eacd8c31a0b59c839a6f32905aa4fe955458137"}',0,'BLOCK_PARSED',NULL,'8d727e681a11af0b5f260179544e672f08701190310e92ae78d20e6a6f827fb1'); +INSERT INTO messages VALUES(1657,310663,'insert','blocks','{"block_hash":"7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028","block_index":310663,"block_time":310663000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aeece97be2bbd356b70b3bcee402336a4940b06f610ebcae1603c271d1b5b6e4'); +INSERT INTO messages VALUES(1658,310663,'parse','blocks','{"block_index":310663,"ledger_hash":"7fba57a8ce4fe3e9ab99dae9196c9676179509a970b7441b506ea23b572b7451","messages_hash":"8c7a7287d00026bb5c9e088d7663ecde79aeb0d17da15745c1575ef825828669","transaction_count":0,"txlist_hash":"f2f60e0e823edb418f01614f56dc15887f96fec107ed52406627f035c7efdd21"}',0,'BLOCK_PARSED',NULL,'817b042f1b28b2808a994f8232358e842e702ae2f78b7dba9816b7c6e6e15774'); +INSERT INTO messages VALUES(1659,310664,'insert','blocks','{"block_hash":"ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247","block_index":310664,"block_time":310664000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4c0fa8ae144d2de322f873a788c096fa0aef18507e69e4fe8eb3531035aca20a'); +INSERT INTO messages VALUES(1660,310664,'parse','blocks','{"block_index":310664,"ledger_hash":"79b688b3fa5dd80ff80ff7ae86ae0a2113a95de65e0abfe8277557335a64f8f9","messages_hash":"57865d5417b51fccb6ac6cc387727060461274be20ab84ead3321f54a0b1923f","transaction_count":0,"txlist_hash":"229a5edda5a8c504658c57bd7e776fb286c26031658efcc68c0e0bd80566e20a"}',0,'BLOCK_PARSED',NULL,'c9cd4dd7d9556564d4dd677da8aacfd9c37915dab2dd7e726dabbbffc523b239'); +INSERT INTO messages VALUES(1661,310665,'insert','blocks','{"block_hash":"8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8","block_index":310665,"block_time":310665000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8fc394a9b1cd77143534e952f494726a1afc0439e28b523467d2a1d6d408b70d'); +INSERT INTO messages VALUES(1662,310665,'parse','blocks','{"block_index":310665,"ledger_hash":"c921ed3cbbfbd30927a531f9ed42e6b3f2982851ccafee096a9d1fbcf74fdcb1","messages_hash":"fe8751576843309c746e5728d805453da4ec617c15f9459bb3cc88f64d1b5442","transaction_count":0,"txlist_hash":"b3e7615a7e9b22882a5d63ec2c1e4944ffa550aafb856db4dcd03f659eb73d8f"}',0,'BLOCK_PARSED',NULL,'7d51f32a93a76bb4df6b6fff54de276b7c0e3545f98ac453d30cd4ccc3a3351c'); +INSERT INTO messages VALUES(1663,310666,'insert','blocks','{"block_hash":"de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52","block_index":310666,"block_time":310666000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'decede98cf8e799022a3bcf6450ff6fa0b8c6d38d2c91942f62d6c5a21042233'); +INSERT INTO messages VALUES(1664,310666,'parse','blocks','{"block_index":310666,"ledger_hash":"8812fdd368acd947add7a0eca401d0e55f9a5d1d312fd1bc21337f99344c38ec","messages_hash":"4199ce88036411d4f1382993cae587f40a12719031957286cbaaa003352de716","transaction_count":0,"txlist_hash":"9f5771d6fb484760ae44a0b7141c89e288c483d5408e26e811fa4612ca68a3ad"}',0,'BLOCK_PARSED',NULL,'4fa8eb31218eeeea636de5960799db9095871bd7c02cb1d86bcaadcd080ab689'); +INSERT INTO messages VALUES(1665,310667,'insert','blocks','{"block_hash":"c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83","block_index":310667,"block_time":310667000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5e28eb63fdf643671b5c2adc77949f27a2370341136b90f769dfc297b0b3e569'); +INSERT INTO messages VALUES(1666,310667,'parse','blocks','{"block_index":310667,"ledger_hash":"f447fdf0d4c878d528ec468aceb8c2ff833ddd656933e2ccde2dbb3b0f591756","messages_hash":"17cc943432dfa9ff0b5c8065d76f0a6a504328b34fd7661e9ba8aee853e736ca","transaction_count":0,"txlist_hash":"67d4cee1acc31181740c2f05b12144c7184111c5c12b4c0fcd43455e5b1d1e00"}',0,'BLOCK_PARSED',NULL,'2f96c0288fa0bce5c4cc9a494ac6ae425553fd7bdc098e3200731c8d1cc1c8f9'); +INSERT INTO messages VALUES(1667,310668,'insert','blocks','{"block_hash":"699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27","block_index":310668,"block_time":310668000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'113dc40a9f0fbcac361bf35f72ccc822cfdd4836b63e2da2f48493e7c2252bf4'); +INSERT INTO messages VALUES(1668,310668,'parse','blocks','{"block_index":310668,"ledger_hash":"a5c44b4e330b04bfb41210684e1c10d6c5b37fdfc60c7693d29e497604efc40d","messages_hash":"d128c60f42a5c5091c0a4983086e97d7a713ba45e77fdab3adf19937f8e3498f","transaction_count":0,"txlist_hash":"d352c080a6cd8f5ad10a897a2300f6aa87bee31d8f47ab9477a96b96935c5ef8"}',0,'BLOCK_PARSED',NULL,'7e3061d8dd5adaa21b6279e9e3d6d5971967364b9525d40367d960338ad6f14e'); +INSERT INTO messages VALUES(1669,310669,'insert','blocks','{"block_hash":"c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f","block_index":310669,"block_time":310669000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'68b61abd32b680f1546602460bd31adabcae424f60246c8f245d212043c585e9'); +INSERT INTO messages VALUES(1670,310669,'parse','blocks','{"block_index":310669,"ledger_hash":"487adf783efd74528548f13f83f6bc7dcee66428a47bc9307bfb4da2574b0455","messages_hash":"23c3dedf4c2c995507fa4aee2f67a22dbb1d3bac74ae97135d9bde57db53ae6b","transaction_count":0,"txlist_hash":"780251573f61009e4ac61ee4879e60ef6cc072785e6c57c2dacdd57fb03520c5"}',0,'BLOCK_PARSED',NULL,'7b9b7acf72558bd335ac4e790849ba725f17952d25ee9d19bd93e0d1623cea4d'); +INSERT INTO messages VALUES(1671,310670,'insert','blocks','{"block_hash":"9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944","block_index":310670,"block_time":310670000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f9dc3be9d4d23d374615fcaa93839605d533cd509078f7a8b2c53038d3d49c4d'); +INSERT INTO messages VALUES(1672,310670,'parse','blocks','{"block_index":310670,"ledger_hash":"99c788d6b71852b0c120368969b650b105fb1d26b40cdcfa0456f22645d191bb","messages_hash":"cd72d8b6123766cba5fbe61bf283005394bb86119d48a587098ebef16565b3b3","transaction_count":0,"txlist_hash":"b6a1180e0a158145ea9cad059da2c082e2ae84941d0f90fb11addae85d081964"}',0,'BLOCK_PARSED',NULL,'c0bf00bbb6ed2349cddc979ff5f72bae0d40cf3a881175f96a81825990bc4560'); +INSERT INTO messages VALUES(1673,310671,'insert','blocks','{"block_hash":"4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522","block_index":310671,"block_time":310671000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a3a4f71afe4c125652f5951c376844aadc8f466c8746bbd98e9881492ac095b6'); +INSERT INTO messages VALUES(1674,310671,'parse','blocks','{"block_index":310671,"ledger_hash":"dcfd2a27a1aa5c70719cd98c19e05722adfbf433f7cc65f61fe7ad616772107f","messages_hash":"4d25a61a62dfaa35c46d23442c8061082118697ff1f6a2f83a7e93a4c3bef17b","transaction_count":0,"txlist_hash":"bf87e973ededd051c8bd23ccefb1de6528a82b1071aa3b791eb7c9263e2d8ff7"}',0,'BLOCK_PARSED',NULL,'223b8bcb825d0e9053a42d989e673687f8d02d351acff28c6663b55609fc2859'); +INSERT INTO messages VALUES(1675,310672,'insert','blocks','{"block_hash":"491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa","block_index":310672,"block_time":310672000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a704bb75c556635b8e87902d390d4521945e88b1ae902fc25011a045bf0e780'); +INSERT INTO messages VALUES(1676,310672,'parse','blocks','{"block_index":310672,"ledger_hash":"ffb2a57e077c5bd7203dcd2983d53090c0d274550510108f21731cc5496f9596","messages_hash":"e8f714708ed313b54843d86bce11e14197008782970bda8fd32acfcf992ada3b","transaction_count":0,"txlist_hash":"faae8112e80bc60f69dbae4257809ba549b0fc2b4927357945392e3843d34192"}',0,'BLOCK_PARSED',NULL,'71fd1a125efe5a5480a99fbad561b735ff41da1affe51167730b151c432c3f27'); +INSERT INTO messages VALUES(1677,310673,'insert','blocks','{"block_hash":"03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5","block_index":310673,"block_time":310673000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'186ac25fffd6a3f18b7a91c87f075129899e484ff1935165f27f9a7ba1fc8fa5'); +INSERT INTO messages VALUES(1678,310673,'parse','blocks','{"block_index":310673,"ledger_hash":"6afe8838d8bda0874b9bc0f7d569e8571bf4c429933b7291bc0e8d911632870d","messages_hash":"c9b97bf0b419128433c5dc9ab3601a8f2f7548093657fe0139d8a4f7129ba4f1","transaction_count":0,"txlist_hash":"1614c8d076a5878f09a0755de3d774e2c3334884876b3b6d730ce1dbb910b2f0"}',0,'BLOCK_PARSED',NULL,'1c018a05eb95432dbbe5f52a94d6ba8b7d85d653a99c61153e3f81c32f46fc42'); +INSERT INTO messages VALUES(1679,310674,'insert','blocks','{"block_hash":"9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c","block_index":310674,"block_time":310674000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'57b05ddf3b853e2f4fe95a026a2296fe4ae7bff7ee08972ac6ce0594e7c6d7d2'); +INSERT INTO messages VALUES(1680,310674,'parse','blocks','{"block_index":310674,"ledger_hash":"8494a7f9f04fa6e7ca8d3ddc17df63f418a2ec5489e8a1aaa4be40b7961b0636","messages_hash":"020ae0e030f024772bf84bd68ea2fd6b2ddad3d99d41538b934e311bff0db058","transaction_count":0,"txlist_hash":"2d25ca16358d0209557c678cd2f9826d9e15f45ee9bb1211adea973da62d0116"}',0,'BLOCK_PARSED',NULL,'44f6c7ef0a18ca3bcd2177a5041d4bff3fcbfd4e965d9da8df79c9ddbc7ac5bf'); +INSERT INTO messages VALUES(1681,310675,'insert','blocks','{"block_hash":"e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21","block_index":310675,"block_time":310675000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'57bd6b8b984269415a0a1109130a7aced56b3779ac6575314d57b5968e576992'); +INSERT INTO messages VALUES(1682,310675,'parse','blocks','{"block_index":310675,"ledger_hash":"5081aed7765bad7d97520bb933cc3578604a0b3c64bc51b6e3853d2fafaa153a","messages_hash":"966422cf3481876c2a8de3c6774043660567acd7616ed0b41a5bac2ef829eb22","transaction_count":0,"txlist_hash":"bc62362dfb5ae26d529f4c5ed88f8096de03718447326cfbad2a807144c1889a"}',0,'BLOCK_PARSED',NULL,'8be43e50e50443bd1799b37afd36c10a3b7a4ba682ae36f441927e0df0eecca9'); +INSERT INTO messages VALUES(1683,310676,'insert','blocks','{"block_hash":"312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1","block_index":310676,"block_time":310676000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b8ff6590ce240e305cbd2c840ca23fc2e09bf4c2ca1eb7ad2b1df983e0e1c7d'); +INSERT INTO messages VALUES(1684,310676,'parse','blocks','{"block_index":310676,"ledger_hash":"d7907d60b2afd888983618f5b04fd05c23675d76d7b1aa8f0187733e94d86043","messages_hash":"21535ccf00468ff69ea89d28679b6d2f9fe04539eb3fe7ef1bc5b74a56c8e1f9","transaction_count":0,"txlist_hash":"d8bbf9bb6af7bf95569dcf56fb8fdefca64695b5c021bb698a0c6edee9e447c2"}',0,'BLOCK_PARSED',NULL,'7751fd491994f95e368109f2bdba96e3393945b8071262f2ed4c88ab8e63f0c7'); +INSERT INTO messages VALUES(1685,310677,'insert','blocks','{"block_hash":"4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a","block_index":310677,"block_time":310677000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e4bb5d987d85954dd93cd155740c3911b00014e5618bfa4fc26358e1c727e406'); +INSERT INTO messages VALUES(1686,310677,'parse','blocks','{"block_index":310677,"ledger_hash":"a8a6093432008f24226584a1491f49355b4be310bece623e5a6f4191790e38b8","messages_hash":"743de8d2c0c43daa862f26d9afcaec030e617679b18d599f21aa07a51f3779f5","transaction_count":0,"txlist_hash":"7c5bc34c11f251b3748c337391be8e8f74a0399b3923627ebf9117e9276af31c"}',0,'BLOCK_PARSED',NULL,'f878d9044f24403cf596a25c9866e34c949f911294b49630835d4ff4455d2bee'); +INSERT INTO messages VALUES(1687,310678,'insert','blocks','{"block_hash":"d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c","block_index":310678,"block_time":310678000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'871fb8e3828fef4f3b69b7dcf98549fa6d39937d5eafa2cd3a3d84bb908e3ef6'); +INSERT INTO messages VALUES(1688,310678,'parse','blocks','{"block_index":310678,"ledger_hash":"793feeaffddf01e00020ad32155d6ab5cb9a4fdc4d49f3ab677169d3615b04ed","messages_hash":"3ec1efc8ab70c4a92468aeccc8122a5b35ffcde62e76e2116f0d556dfa86f9e4","transaction_count":0,"txlist_hash":"41eb202a56ae084f3cc1457d3c17cb7eb2214a8cc385574f97a5d0913086f931"}',0,'BLOCK_PARSED',NULL,'1e74a01985cf2b82870850992e3ec0ccf40f02a41526737362059fcec979665b'); +INSERT INTO messages VALUES(1689,310679,'insert','blocks','{"block_hash":"be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b","block_index":310679,"block_time":310679000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a7d62255d5833b8606f7999a451136b54630ac73054cc3c964cd1f0a848968f0'); +INSERT INTO messages VALUES(1690,310679,'parse','blocks','{"block_index":310679,"ledger_hash":"3e07a5e2d4f38398b1d5f218cb8ba6393336e1e3fef63684c4076d5b856d4135","messages_hash":"bb5490deba2ed5b0284ca703457ecfe496e5e8415661f71efd376839460a6da2","transaction_count":0,"txlist_hash":"a27ecd72192938a3eda2a91456903b4bd0a1b277166e38937262a7c1a5fab580"}',0,'BLOCK_PARSED',NULL,'6a1157a582689f910bf2bdb15b8d5479f055036654bf55f2ed66f7d70e54658d'); +INSERT INTO messages VALUES(1691,310680,'insert','blocks','{"block_hash":"239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8","block_index":310680,"block_time":310680000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29414d486a5107797a2fa3e34abc5699f654afabe221bcaebd1b4c30c77f118e'); +INSERT INTO messages VALUES(1692,310680,'parse','blocks','{"block_index":310680,"ledger_hash":"fdfab5abd301a27e1e91310ea0abde8697cecfed231ce524a5607e8acc6c02d3","messages_hash":"480df2e104312f96e95ff4e4c4cbdff46e60e82c4a9957aff6f9745c3a55faf7","transaction_count":0,"txlist_hash":"19abea6cb809e0ae492acf291a5dba572a871622f4c5e675557e8d2f37102e09"}',0,'BLOCK_PARSED',NULL,'b24d5e5548f06806034606fca289b157ddf2031cdad79e4401c6c4e290a5afb6'); +INSERT INTO messages VALUES(1693,310681,'insert','blocks','{"block_hash":"0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41","block_index":310681,"block_time":310681000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9db134aab03fbc0af2f8556bfb1fe8986a8f1c1cbd1af316fd911c4a90bc669b'); +INSERT INTO messages VALUES(1694,310681,'parse','blocks','{"block_index":310681,"ledger_hash":"662517b0bb85a3742a0d81d1b4aaac6f2a8a4dbe7e8a6a20776c5514d9e14a48","messages_hash":"4c75399acf36a3d44bcff773c9697a10def80dedf2743e7e11bf43ef2a7e7b28","transaction_count":0,"txlist_hash":"7f0276b2f2d61b95e407e95777aa4895e887111b0281099b9c5a44dbcd31f22e"}',0,'BLOCK_PARSED',NULL,'9102eb296905076f8cd9762aa043c355ef860610814231af9d29d49fbe98b350'); +INSERT INTO messages VALUES(1695,310682,'insert','blocks','{"block_hash":"9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55","block_index":310682,"block_time":310682000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'82febf89223154354ffea4f987cababa921b2f61dc4e5d22c2e66c734272c0f8'); +INSERT INTO messages VALUES(1696,310682,'parse','blocks','{"block_index":310682,"ledger_hash":"f7a309b6131c802520e6577c3ed7ee05e99f0e231441801a9b1bf2a430950a4c","messages_hash":"d10d85d191a82d37b9a8d350f06a6a67b750d54856174caee570023070f39b9f","transaction_count":0,"txlist_hash":"e9cd2133c276de01869a39f4c703d2f8236b0b1b79bcfc53a4e3d8967785be9b"}',0,'BLOCK_PARSED',NULL,'7b6e38eee29ddc863f342496997d4d176c3c193316c14abd0770ea84168ebb0d'); +INSERT INTO messages VALUES(1697,310683,'insert','blocks','{"block_hash":"ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511","block_index":310683,"block_time":310683000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'86a2d651110c66e4806461aa8482b9bef5cb0e1b57f15f469e0bd31748b9beea'); +INSERT INTO messages VALUES(1698,310683,'parse','blocks','{"block_index":310683,"ledger_hash":"2cdd3fd5a05e6fff02a5e0747dc3b28e68c13c0ffc521c85e7de6dfdc22220f0","messages_hash":"49402605fec7d667e6283a02b9fb7f7f614efd582f0253ce1598d65096d22de5","transaction_count":0,"txlist_hash":"267450473f906200e5c2c6912b2ad40150573506e7344e632d338485e3f78192"}',0,'BLOCK_PARSED',NULL,'b2ba63c4bfba3c71b88a085978880954eaed88cad1a4676dd122bcea6b714a27'); +INSERT INTO messages VALUES(1699,310684,'insert','blocks','{"block_hash":"d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9","block_index":310684,"block_time":310684000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'abfa267384c935e704f746fd5f9130ee5be438418d8fdade427b133b09b49681'); +INSERT INTO messages VALUES(1700,310684,'parse','blocks','{"block_index":310684,"ledger_hash":"4b034b1352ed16420f29905e00a54a82d238d2c4bd4d1fbb17a3b09ea9886391","messages_hash":"2efac46039dd7f35bf90c8456118a18c1daf3099a5f2586d20d0f5d14438654f","transaction_count":0,"txlist_hash":"80f0ef1728184f040fa9d640aed74db77ff126c31413c88816fc0a3b01c47eb9"}',0,'BLOCK_PARSED',NULL,'ae5918247a93df0bc8f40e724a728ded533e4173e4107f576034398170c20e1c'); +INSERT INTO messages VALUES(1701,310685,'insert','blocks','{"block_hash":"f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8","block_index":310685,"block_time":310685000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8635a5d4bbc47d72f4677350712b4ebd1619d9586482f404fe9132da89dd403f'); +INSERT INTO messages VALUES(1702,310685,'parse','blocks','{"block_index":310685,"ledger_hash":"af82d0fdff4a89d3b0944673aad1328ba0827ee606d79dd7706e297fc4fc2204","messages_hash":"4a9bdc220cf3a3ccc62d0124a156c6d64be0f26e02e8fcd5ef0cf0baa95bc839","transaction_count":0,"txlist_hash":"b8b940808bcd9e0a6d5d3b0dc001b185c7be5bd862d8ccd5c1860916b7d666d3"}',0,'BLOCK_PARSED',NULL,'10815edb1fbd3bbc4a184cb1c268999a1cac6ffbade57e22dbf2316bf636225c'); +INSERT INTO messages VALUES(1703,310686,'insert','blocks','{"block_hash":"a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca","block_index":310686,"block_time":310686000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b78a858c8ef5c41550808721e7bfbefebcea058b07f4a283f93e66f79b472227'); +INSERT INTO messages VALUES(1704,310686,'parse','blocks','{"block_index":310686,"ledger_hash":"c037ade6c0c1ab3458c4d3bba7d91e0cbed94027e3728e84d9facfe5763ef6a5","messages_hash":"658a28fb1894e654ec06f9eb52f741d780b93fb31f2deea39cf06ac25c3840ee","transaction_count":0,"txlist_hash":"8fd8812c2f3696baa9f0f5714aaeba990fb7a1711c583937002babe776964c05"}',0,'BLOCK_PARSED',NULL,'6c22e013ee1c068dbac9aa741aaa1c172c1f149d0615183a4cfd6231a2e8bc59'); +INSERT INTO messages VALUES(1705,310687,'insert','blocks','{"block_hash":"c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8","block_index":310687,"block_time":310687000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d96d6c114d9aca626aaa9ecd97da2bab8700b67f4df750f033b5587f96272f3a'); +INSERT INTO messages VALUES(1706,310687,'parse','blocks','{"block_index":310687,"ledger_hash":"630096dcc99d532acf6415bf4504525aa85f460fd177c4bc82fd408efe59415e","messages_hash":"019870609adba0019c90f7dd9f8b17614d261c3cf7a61ae160b86bfa1b25fb37","transaction_count":0,"txlist_hash":"2215a8448764b62467df6b53cd807cc9410850d73d728a81c753eb70de99e486"}',0,'BLOCK_PARSED',NULL,'2fd72834877b83e65375b09836083fe1e39807501ed9a879f4ff8e0c6bf637dc'); +INSERT INTO messages VALUES(1707,310688,'insert','blocks','{"block_hash":"3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822","block_index":310688,"block_time":310688000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'21fdbe2a2156d026e5e0b08bbf808e1a23cd77eb47b10e2fe05c96cd9c5039ea'); +INSERT INTO messages VALUES(1708,310688,'parse','blocks','{"block_index":310688,"ledger_hash":"315c5a67d6b9b410a0aa70e0bd8efebe6f78757a09f91863c7f5e1efe47e9a9b","messages_hash":"7396798913c2aa1b4bcd2bbbfe65cdd71e7696a73381ffda432cc15edb0d3dff","transaction_count":0,"txlist_hash":"9312287eb460a866f6c18b0b28dd23fff23d408a84422a87d69a561447c9ffaf"}',0,'BLOCK_PARSED',NULL,'f92d913e16ff4a336d2ef20d99cff94267be95f9adc07ce221f624416212ad73'); +INSERT INTO messages VALUES(1709,310689,'insert','blocks','{"block_hash":"d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df","block_index":310689,"block_time":310689000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'41afcdabb35ba4fcf29cf0ddd4f41d76f15ad20b46129c04599888001bb96cf8'); +INSERT INTO messages VALUES(1710,310689,'parse','blocks','{"block_index":310689,"ledger_hash":"5c6ee4e9df30959f31d2232cdae7b13557e373982a03556ed1fb65aa5e3895c7","messages_hash":"5df7700c6470a74217bd1149ab2f74d95c72a2199afa414e0004ed291a05d26b","transaction_count":0,"txlist_hash":"a7c5b3bc4269d9a63804bdc4e2693fd03e4e529b183510685df746092e94aa5d"}',0,'BLOCK_PARSED',NULL,'cdc7c7af4423e30570f1c16d56cc45965eaf7e9ccea5bac01c7d54084f761429'); +INSERT INTO messages VALUES(1711,310690,'insert','blocks','{"block_hash":"0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462","block_index":310690,"block_time":310690000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da489bc528d5b94c41b938361e325fad26ccbfcea66512ab93d3e360f2e4543c'); +INSERT INTO messages VALUES(1712,310690,'parse','blocks','{"block_index":310690,"ledger_hash":"1295c134cbb5678c7a4f70013dfe3eb624bb814ec039303fc10f2c7789e41a03","messages_hash":"4ea45cd902e2b0822366150c090fe0fe6318c45be9863619512eb5931499bf9e","transaction_count":0,"txlist_hash":"6310ce87234c11efea223c58d571cdbb3f04b51a3056236cd0f22cec7bf1e5c1"}',0,'BLOCK_PARSED',NULL,'faa7c534a2f269c47ed521125f0f0d3193bafb20be2a5bab589b376e0529a87e'); +INSERT INTO messages VALUES(1713,310691,'insert','blocks','{"block_hash":"07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e","block_index":310691,"block_time":310691000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a2479b718d60fc7c1d8e3cb6cc0cae812d5842dcb2496bfea56aaf281de1825'); +INSERT INTO messages VALUES(1714,310691,'parse','blocks','{"block_index":310691,"ledger_hash":"76f74700787e68ae14b3812f53c32417f57de06ed6188b1992ca412570bc1ffb","messages_hash":"f4de1c5339512dcf2b1287e09d8877be2d2ef017f10fade68472c7371cfbf790","transaction_count":0,"txlist_hash":"774242c764edd3560409137905de9c9d818364aa94f62c47a621afe1087136ac"}',0,'BLOCK_PARSED',NULL,'653637369c7eee89df85bbe940bd7dcf9e1b22db79760b20972f63243cb921c2'); +INSERT INTO messages VALUES(1715,310692,'insert','blocks','{"block_hash":"29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932","block_index":310692,"block_time":310692000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e16a43199c94515468346e9a23dcbf9187952e77cb2984f165a5f34e37721fbe'); +INSERT INTO messages VALUES(1716,310692,'parse','blocks','{"block_index":310692,"ledger_hash":"7c0891d494e5abd9a44a4f7c70e67a547160856119c3ef06113f517e1ab9d390","messages_hash":"508125f63c3de10d645e22ee4cc4f61950c86ad23474ccf5ac2b5e8910df7572","transaction_count":0,"txlist_hash":"df166db54b869212308c6a48d3ddb80bc0a84be52434c46d5e6e2d6499167bb0"}',0,'BLOCK_PARSED',NULL,'ecda8e1a989b6963a4b53e8e21039f7867b38dfe6020fb776bf73afaea64921a'); +INSERT INTO messages VALUES(1717,310693,'insert','blocks','{"block_hash":"c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1","block_index":310693,"block_time":310693000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ac5978bca25a97c9fffe1bfad81dfc47eb251b9008e0970c8b3b656b8b66ae38'); +INSERT INTO messages VALUES(1718,310693,'parse','blocks','{"block_index":310693,"ledger_hash":"0d30c6bb764b32d0ec856145453de6d0e15ec0b8a94f978f2d96c3c5d134912f","messages_hash":"cac03fdc5399fe770bc905b3ec76aa9a46a8808b520426f319aa7faf455146c1","transaction_count":0,"txlist_hash":"992af64c887f105b985137b441ef4a3af3ff902f5dbac355b91bf0ebaa234063"}',0,'BLOCK_PARSED',NULL,'fa9b7e385cb1c6ac2f0f30f36a5dfafb2c197f387fde183d0de09e62a23e3de1'); +INSERT INTO messages VALUES(1719,310694,'insert','blocks','{"block_hash":"586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0","block_index":310694,"block_time":310694000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'27faba44fcf336ca3a4dc43d11e4a2e20bcfbdaa7edf20fb2f47020a60343f51'); +INSERT INTO messages VALUES(1720,310694,'parse','blocks','{"block_index":310694,"ledger_hash":"582bf82bf4bf07a0d20259ae9026e726afcfff035ce715d13a473313dacaa5f1","messages_hash":"44f8b452d9ac57fee090eb5d5626b32a388955bb30c5bca995ec3175e87bb4d0","transaction_count":0,"txlist_hash":"52939845593123714b4bd665600642d14b61a384befa3498c7582806448150a1"}',0,'BLOCK_PARSED',NULL,'78563ecd61311a0d3c58f73b10b8315531500f90e574c7762169c253273ee57f'); +INSERT INTO messages VALUES(1721,310695,'insert','blocks','{"block_hash":"a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538","block_index":310695,"block_time":310695000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59e7a8cf2bce9b04109835d493e03d79e612139ec5373356646fe4ac4acead2c'); +INSERT INTO messages VALUES(1722,310695,'parse','blocks','{"block_index":310695,"ledger_hash":"d5ca4a21b2fbe8121c241c097d9f76156106b345296426b5b55bc4885fba4b80","messages_hash":"cdb61ca3479bf5ad207d85590e721983539e58188ddf7f8b539e0e7a02b6463d","transaction_count":0,"txlist_hash":"9b08253a46b87ab3df60af60b519dd0c689c0acaca38bcc33f01000bf6b871d3"}',0,'BLOCK_PARSED',NULL,'ab9cbddeef0ec6238b801110a241a4ea54391952bbdd68c98fa1022ff425ac8b'); +INSERT INTO messages VALUES(1723,310696,'insert','blocks','{"block_hash":"7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7","block_index":310696,"block_time":310696000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'13c5c3fa4603789ec0589d734dbb0588d3af2d56bc3c6febb8fc865fd5187836'); +INSERT INTO messages VALUES(1724,310696,'parse','blocks','{"block_index":310696,"ledger_hash":"75b37c234c5951fb06761175db6d2a9584aa779f35f2f1516ec828230b6b1383","messages_hash":"ffd24c9a2503318daab14dd046c526ed11ed3bfd5bb8207cf0048bc689ed4366","transaction_count":0,"txlist_hash":"deb12f7c45ab5944a6e08fb2933d3a435860f9e1d8a758486b5e5995258ca973"}',0,'BLOCK_PARSED',NULL,'ecf5ded13674a94bc13e9246076025047de75ea1653f8496b42d92546856fbd2'); +INSERT INTO messages VALUES(1725,310697,'insert','blocks','{"block_hash":"4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304","block_index":310697,"block_time":310697000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f042e22c5995602cf5dc7d29dda74a27c5265f921c45e1974dcb8d10e11a6fc9'); +INSERT INTO messages VALUES(1726,310697,'parse','blocks','{"block_index":310697,"ledger_hash":"ae9aa7c4e06059f148a8ed8bf2a4f69c492fac7109a778afbf6cc4d96d36dc55","messages_hash":"b6a66a5e44254ed9459a2fa8a198d060e218db5dce05a6e3904336be3ec5d0f3","transaction_count":0,"txlist_hash":"663e67da5996a4c9877a6c6cb61730798695aee9d89674823917dee2d1ab9708"}',0,'BLOCK_PARSED',NULL,'06db022189b7650549c4400f6f776283435fabb1572e79f4f979cc91b41c91a4'); +INSERT INTO messages VALUES(1727,310698,'insert','blocks','{"block_hash":"ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53","block_index":310698,"block_time":310698000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'77ae646c3924ee2722490da742435e08c45920b8ffe89b5cd77bd8031bd2ac8f'); +INSERT INTO messages VALUES(1728,310698,'parse','blocks','{"block_index":310698,"ledger_hash":"aa8b6ca04c8551bacd6f964f2521c07b30d3c07978c992dc59633894ad1baedc","messages_hash":"6b61c09bd220de51ea7ce3730d0fb6562e321e30c180ed71088da4b2cc1bd71f","transaction_count":0,"txlist_hash":"9b6c282c7fb96cbca27fe6b73253cfc31b93ff71dc0d116ebd0d661c33adde58"}',0,'BLOCK_PARSED',NULL,'6c9c94e1f5eb797422a18ef5a68f71acec1b221a57926b1164d08abd08c71e9a'); +INSERT INTO messages VALUES(1729,310699,'insert','blocks','{"block_hash":"3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d","block_index":310699,"block_time":310699000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'41153eac52c3c57bd96d507a516796b797d6e7b23f1a3364fa9dad2e2636c859'); +INSERT INTO messages VALUES(1730,310699,'parse','blocks','{"block_index":310699,"ledger_hash":"66cf0537b2abf572ae579fdb3512d125c181e2a1835b38f89cfee64113922cd7","messages_hash":"f9a65859e75811f5fff2ece7af021acfbe3f359717c438b682fbfee5c178a0ea","transaction_count":0,"txlist_hash":"d91fc03fd15e2ca4fc59b7be29586b0c8f2942abca45ccb49f2fc84e3eff8f94"}',0,'BLOCK_PARSED',NULL,'03baebc0ec312e935fece52fded073b92e15903e84cfa007600d2d53620124b7'); +INSERT INTO messages VALUES(1731,310700,'insert','blocks','{"block_hash":"4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5","block_index":310700,"block_time":310700000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bc2f39fbdaa05e839c98f107cc6f590ec32827f00ae787e85aeeb9cf5870f188'); +INSERT INTO messages VALUES(1732,310700,'parse','blocks','{"block_index":310700,"ledger_hash":"43196ba8bf43fd138dd117cb0a9c1738d3a2c8917c2ea73893647a2ac0fbe0b8","messages_hash":"a6aed16c4649d912789340a2a6a297058790efbf230facad044428560dc5836f","transaction_count":0,"txlist_hash":"1977d48057c66abe87f0bdffbcf4d501bd4b9fe138c0bc381409bc44bd503084"}',0,'BLOCK_PARSED',NULL,'a67f474d4b232e389a8c8bfbf36419aca577081deaa2f6bf1d1e1d21c6461677'); +INSERT INTO messages VALUES(1733,310701,'insert','blocks','{"block_hash":"9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1","block_index":310701,"block_time":310701000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'652219318a210bb6b5f50a5d9e8aeeae1ee414367f65bd016a759872289de508'); +INSERT INTO messages VALUES(1734,310701,'parse','blocks','{"block_index":310701,"ledger_hash":"f235ba99322c9bf8dc115d7fe2b5e51db41b06026ac193718e47e89398c621f5","messages_hash":"b7a4328312125afc3fb1ea33e0d2bb7b8fae879670b170208355a4a27dc48150","transaction_count":0,"txlist_hash":"6b6c62d0facf03efea19bf2e8fa69ecd3c433d45a0ca6b3ed57ed0e5d69b1e2f"}',0,'BLOCK_PARSED',NULL,'4403c489ecab18b429700a3bea1c71f720c0c149f1030dd50e3e58790d335846'); +INSERT INTO messages VALUES(1735,310702,'insert','blocks','{"block_hash":"69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8","block_index":310702,"block_time":310702000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'82e90a84cea8c462f787d8b7a2c5f46e156ad0c94340671feb41d16c2db6461a'); +INSERT INTO messages VALUES(1736,310702,'parse','blocks','{"block_index":310702,"ledger_hash":"059893c8ed0250380ad8102a8a17d60a92f1abf09000ff41766cbd846aa1efa2","messages_hash":"5a3dfae16547617feeeaed1657c4375f36a5cd2dbbbd2fa22e4faf759f3c15b4","transaction_count":0,"txlist_hash":"0b912b59131e6aef7fb3313ef75bc138dc1f612d76e77cf583074564ddb6d35c"}',0,'BLOCK_PARSED',NULL,'b186094d3b4f3532ab157fced1068f83722bed6babcf00e698d4da98a0b4c918'); +INSERT INTO messages VALUES(1737,310703,'insert','blocks','{"block_hash":"b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218","block_index":310703,"block_time":310703000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b3d6eee2ea836efb2e6712f661762cdc36f877bfa1531572d1fe6f98c58f5e4c'); +INSERT INTO messages VALUES(1738,310703,'parse','blocks','{"block_index":310703,"ledger_hash":"1734f9eb30868d2383fdb38bbda66b1b937209c143632aabc05bf1de167eda66","messages_hash":"afb721e64a36bca838751fa2eca929a4fe485fbe69f8fc944e90de74019fd629","transaction_count":0,"txlist_hash":"b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786"}',0,'BLOCK_PARSED',NULL,'fedce5d97e17f27770b0093b4c37deaa145b777afe9ffb057cc2d02664686ee6'); +INSERT INTO messages VALUES(1739,310704,'insert','blocks','{"block_hash":"53f0dd2f7343658f75508323a5b1761b7e5bc6743c04fc9ee9898ec0fbafd827","block_index":310704,"block_time":310704000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4eb79af39c619789673e36c0311753d497d3be7a7fb041af8337186d448f1df4'); -- Triggers and indices on messages CREATE TRIGGER block_update_messages BEFORE UPDATE ON messages BEGIN @@ -3682,7 +3681,7 @@ INSERT INTO issuances VALUES(503,'9830e28496bb94f7e9f829abd26fd2cdce24ccb637e554 INSERT INTO issuances VALUES(504,'c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7',0,310503,'QAIDFAIRMIN',20,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'',50000000,0,'valid','',0,NULL,1); INSERT INTO issuances VALUES(505,'0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,310504,'A160361285792733729',20,1,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',0,0,0,0.0,'softcap description',0,0,'valid','',0,NULL,1); INSERT INTO issuances VALUES(506,'6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',0,310505,'A160361285792733729',10,1,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',0,0,0,0.0,'softcap description',0,0,'valid','',0,0,1); -INSERT INTO issuances VALUES(507,'ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',0,310506,'A160361285792733729',20,1,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',0,0,0,0.0,'softcap description',0,1,'valid','',0,1,0); +INSERT INTO issuances VALUES(507,'ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',0,310506,'A160361285792733729',20,1,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',0,0,0,0.0,'softcap description',0,0,'valid','',0,0,1); INSERT INTO issuances VALUES(510,'01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',0,310509,'TESTDISP',1000,0,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b',0,0,0,0.0,'Test dispensers asset',50000000,0,'valid',NULL,0,0,0); -- Triggers and indices on issuances CREATE TRIGGER block_update_issuances @@ -4243,7 +4242,6 @@ INSERT INTO fairminters VALUES('13e642d78db80af715cdce12a9fca81965752bbfb5954934 INSERT INTO fairminters VALUES('9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1',503,310502,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','RAIDFAIRMIN','','','',10,1,30,0,10,20,0,0,0,0,0,0,0,1,1,'open'); INSERT INTO fairminters VALUES('c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7',504,310503,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','QAIDFAIRMIN','','','',10,1,50,0,0,20,0,0,50000000,20,400000,0,0,1,0,'open'); INSERT INTO fairminters VALUES('0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',505,310504,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729','','','softcap description',10,1,50,0,0,20,0,0,30000000,20,310520,1,1,1,0,'open'); -INSERT INTO fairminters VALUES('0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',505,310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729','','','softcap description',10,1,50,0,0,20,0,0,30000000,20,310520,1,1,1,0,'closed'); -- Triggers and indices on fairminters CREATE TRIGGER block_update_fairminters BEFORE UPDATE ON fairminters BEGIN diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql index 823f3ffd06..2242b6de6b 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.sql @@ -525,204 +525,204 @@ INSERT INTO blocks VALUES(310502,'b5a4cd1270bc437e909d9569079ad17437a65822ee9e4c INSERT INTO blocks VALUES(310503,'219e9a113a7c66443183171e389bfd5eaf957f5b8ab825358d72fa8e0cc8c16c',310503000,'e794e603a52f3e8966d35771dc3698466a31e493cd1d513b434f44a8d2b437db','a246803a64e949d7501376b8333ec169ab0c76441b6743343e2028ef495e41e2','05a163f372a97a8c10957d92f6e481c1616b834414a092c00dc4dd57ed65e60b',NULL,NULL,1); INSERT INTO blocks VALUES(310504,'0b123f4e535bb92fed07632e107813b9a399cb6f6d9ef629d303e9df3d71ad25',310504000,'3bef7ac206538a4723ed1049a793c079b942675f3100feabb221595f54f284d1','4dc497bb6f509c52def91393cb8192f576794d95c846ac37a921f50b864589b9','f37d5b6ee083c057b630cce366ca8a8fed968a155cf6d8ebcce2e2935ee84347',NULL,NULL,1); INSERT INTO blocks VALUES(310505,'dabd8046821297bd7071117defef365b4384c3ad338a8fa206bae85593958a6a',310505000,'55fbc2aedec24b51392b85e9bb8d0637a117c5c71347234ab0754e63963a8662','bbc020c792a5a6837aad69d9794344fe13497234bd5ec74d1fb0bf064b7ab50c','9a8a9f1a3e0dff018a80746bbe97d20a068f1e1d1e6f8896b4e2c3315a3d0c9c',NULL,NULL,1); -INSERT INTO blocks VALUES(310506,'9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c',310506000,'d2e34b3aa45be0dd5a211b9748bc71049f42e08be27ed9e08ac65e1f1b5db6b1','a6cab6e8bebae804eb791b48d0a484f6526553e3cce266b54b40afb32a02c68e','f19edd9de332ac85a37d441a7561c48f3d0ca8118c656a300733fbe36853a53b',NULL,NULL,1); -INSERT INTO blocks VALUES(310507,'015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93',310507000,'d494616b8ebe6083310da3b18bd59a01e03747e0290109b2985a0dacdf8d7e67','6abb9b0caedb98bc7ad209096e5baba6418d80fb11ab51a8124d2e87e9a591e0','a2d1455b2938eaa024da6bdbaf7a3a663391a983b6c02688e87156338cb1fb87',NULL,NULL,1); -INSERT INTO blocks VALUES(310508,'40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf',310508000,'1b96f53ad5dbac5355384c4d23cb9b3b3ebf0b66ea33cfb6d3064cb8f4ea3ec8','55c18d8da0b5d415d82b40229995123dcf2151b91a8cf6c4e29e8a03c32a847d','34e947783dccbd14ae84a017a050b567ec11e8dc801e4dd3a990930a303892e5',NULL,NULL,1); -INSERT INTO blocks VALUES(310509,'4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee',310509000,'8842d3d22bd2fa0d1e3ae5e34245085192c6c5b565e92a644058a31cc34f9a08','e8a5ca9c861bda1033047cfb0896cc92d694d0d32343e54b78d861ad5daada14','f1bdbf8b2ab589653e9e24ed47fd277c9429bc6f770f0af980f2ab2a4a096104',NULL,NULL,1); -INSERT INTO blocks VALUES(310510,'b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2',310510000,'99da5c9487749dda0fc8b0557a982108b7abce0972a944ea0f08c15b0c2e1b4e','58e8efe3ac6c19011d997f77a3f38bfd99ccf17ff15615ceeaa8fd1d02f2b73b','1227c5ff4c580ae4ce01f8279216acb5628d6a156b7d34156117e2f050408b3c',NULL,NULL,1); -INSERT INTO blocks VALUES(310511,'e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c',310511000,'75e2822f39decd668b61334c4e6d6ba0cabee8ceae54a5dfa09212d9e6158334','cb29377641d10173aed43643d32f6935da6948a7fdc854f4c5f7f3bf8d6f9721','9d4bc725f81077e675ad2b559f4d5fc2c7e8147faf8d144d08c04876a432d44b',NULL,NULL,0); -INSERT INTO blocks VALUES(310512,'8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5',310512000,'3f94facdb277489e761513f5e36de38331888c7604e9de480423a219894c7103','4f745e593c05074836d20561b50b884ffd4e1c17eb9666ace1c2eea5f51e7d50','426031d0bd0a2691d43534a0c50d069919277679f9bcc3352e1a9139dc01dc0c',NULL,NULL,0); -INSERT INTO blocks VALUES(310513,'ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66',310513000,'95fa563ac99c86ef29c53271bde2a025b3b1b9d50d61f84cea7da5d65ae56f91','e82379e2bd481f39e310670c046d855855c476a4bd0dab621ea06ccd2ac136fa','83ab7d2500a6bd0c7b0de67284ca9566b0df7cdc0db5ea61f62d7c215d5cc91d',NULL,NULL,0); -INSERT INTO blocks VALUES(310514,'39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7',310514000,'1e6610a2d2c2f692b83f48da7b235926c87e72981da5abbf8b27ba383215bde0','c99f21e4275501cdcadb134b8a409da50024832c8ca849deda3161d8b026f1a1','c6354a302be18f6360ce94327224846ecbc2916172fbc797aff8a34cc2975e26',NULL,NULL,0); -INSERT INTO blocks VALUES(310515,'57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8',310515000,'4f09e2e6412ed7f1c152e86987439ce1d3e162163830d26fb5229d6825891948','ee33ce8f40db45f132b15d60daa3935ee8da4593c31f65ea269687594a2c5051','b475dc4626bfd8d25bde2c9bf05357da3f9b10a573deb1c2d898af906382ee9c',NULL,NULL,0); -INSERT INTO blocks VALUES(310516,'ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7',310516000,'b878bef5654a7517edd013f609fe27f8f6681f806b8d43fa4569e96dac33a32a','a461fb607e3e3480b92d679204388b0aa2d2785cf5860e3539be8b41e1702341','02f832da8d21c4943c0c86db06ba98cba64862ca49eb5bf64a06e6e1a38ad2a4',NULL,NULL,0); -INSERT INTO blocks VALUES(310517,'defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407',310517000,'652e89be97ac3684609a4b6a10dce6eb5f74e1ce9fafbaa2cd02320fc322d85f','9bacdf0026c8297570a7d50e6c372bd5a04ed7f748f820b33e7e93340ecb69fd','24f7fa89093e93ec1a75d73f39c5c0171ef4f8cfc102a51d1afba9d260634a78',NULL,NULL,0); -INSERT INTO blocks VALUES(310518,'41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5',310518000,'2511ff65a406e7748f529a19968884ac8c3c140a203319dde46566b8d9c21340','66af0cdab6c52ca6b8ce731143739553d62e1986de0478e346dbc42e570f1503','cec7e18d5b91ef1f2bdd8e2842bae7271062218385e8c6d38a40d6f2cac36248',NULL,NULL,0); -INSERT INTO blocks VALUES(310519,'9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a',310519000,'f0e32de8b078d3ae8cee89841ad40462c7bd9657a5f5bacf45dafb4c41db871c','67662c882b46c7a5ac62a01e7ca43e1290e1fee20a68ebbd1011b93b9f8d00d8','e862fa475e9515aee6897475c7b2fadfdd3df8f0e753b6b4bae272af10b51845',NULL,NULL,0); -INSERT INTO blocks VALUES(310520,'ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680',310520000,'21f8e8433f145298a88f1e3e96b93b3f56a78bbe1228bb989e32ee4a77ef9dfd','4ae19f415141f11f6c3b72d24512114ff7c06d201e2ee94aefb58e9f1921964b','1225035375b39c594596e4ae27ea04676f660484537f9f16690da48922925f06',NULL,NULL,0); -INSERT INTO blocks VALUES(310521,'df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598',310521000,'2db78e0e6098bddcf2d9b736717dc7a847beb8a2caead23526a7295349bc5fd8','243a864c8243f71fa9cfbbbb25e23547337dc04b074d1aae2408a82b11ad3c15','835bd3153c94167b0d109456e09d41544e94123b0c46124930c46ed42cf0ec6a',NULL,NULL,0); -INSERT INTO blocks VALUES(310522,'6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21',310522000,'5c8add5c7f541c3dc9c801eadb506037cd0cebd84e3be0a37b3dadf60a46a3a0','f8d7f3eeef9c11dbb8c8ec8bf5c06e4eacfc812151526c44a4208bb8d585a973','17aaaa53a67562934b83a804b8c36e00b79bbe3c914f79623ca8a6450ad95fc7',NULL,NULL,0); -INSERT INTO blocks VALUES(310523,'0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453',310523000,'06a394efdb543d37060d931b5279f84e03704ddc706f7d5de6314f172d741a0e','065b22682abbad6d9076204a74a4be79acb71b8a8fd715ad334c3351f35f75dd','36412ed56ca125b6f4e6beab02684c7aa9dc68bf62871046afa063fb91008706',NULL,NULL,0); -INSERT INTO blocks VALUES(310524,'b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655',310524000,'7d41fedc94049016674c859bbf11e47f1e29218b7bf0037068052ef3fe3355dc','7b1d9d04b71c2b8f7aa31cdef567336e6f1dfba44fcb4915696ab498c72364d0','14b05fa8e0ab9565bd5d9bddd85fbd7030f15472b4dadeb0cb3f5c8496d6a9a2',NULL,NULL,0); -INSERT INTO blocks VALUES(310525,'2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9',310525000,'8fe5e326806e282f22c556ab8d726c562a9bd7372f090751a8b7136611bf1ee7','52694ea9983ac76659645946334a071b7b5e86e295155526e3a27cd87d81cc87','f315e1e9b3e71d83df3c7021f5e673456b33f39d63737cc51ecfebeb5f779e52',NULL,NULL,0); -INSERT INTO blocks VALUES(310526,'07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d',310526000,'6e0ef4f0f7097d90ddeabc3c00106113d91f9def26c8bd052e2b48093a57dc6e','7c47526dba085953aa0d343f0e5b51520d69f92b3046013d0fa0ed6632b74b4b','504e542e909d0ce8495a313aa9221fbcd02c7367eb55834bbf009b8b56c9233a',NULL,NULL,0); -INSERT INTO blocks VALUES(310527,'5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db',310527000,'a730bfdba793e146cc3f80c875c33a390bbd3200fb8fbcea65dc5f307a15c31c','8d0d0b180ebfe5738144b9e1f8e81f74a90cd81fc7bbcd6490881b8554ba12b8','9c3924d13454430eb4548ffb09964c5fe48c9be11b580bf09f13aef9bedf909b',NULL,NULL,0); -INSERT INTO blocks VALUES(310528,'a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5',310528000,'cf9f4b5a41ed1bc8e054e1702b5c9879f36f1430fe665ed04f161e505404501d','6f1b36c493186bfc813d2e3638d0fa2dc68c2ca7f0823bf3935a2c7d2539da9f','05220c6bdfec2f5cc1469737ab8402c7f70820b5687ff771cba4be8a1f02e0d7',NULL,NULL,0); -INSERT INTO blocks VALUES(310529,'7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b',310529000,'bbac0b9c99cc7e8df7b27295999d4b52ffd603b52a90fc2ee18f4fc51ab1471b','7e4232af9977eb670466868d83e6df5ddcb39d899f33ef653b87d58b422ab64d','919635e8583a6110f8497d5716d532d6cb832801649389f92ae1952c23652151',NULL,NULL,0); -INSERT INTO blocks VALUES(310530,'f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110',310530000,'80db4f033b0adfc86ef43309e703ae2862c143dfd927194576af420ac2d17d1c','7e4077941dd95a2b0e51b0ad680935a7232fa5cf31f664150510172e4c2e6da1','c69df884ca4d6e5c7e1fef3c1f5249a8e532f312458e8bf87079742bea523705',NULL,NULL,0); -INSERT INTO blocks VALUES(310531,'764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15',310531000,'3fe09cfd91c8284a31e545f63a2a8462a5c9d8c851c065272d36ae4618e4d849','1245439b0d3fff0822ebed6e6ca34f99f24194cfb36fb2649ed61b0ac26ed7a8','666625d2555c2db293b3b11ea1fd91473da269918fc82c0d3fecf2a2ce02ab44',NULL,NULL,0); -INSERT INTO blocks VALUES(310532,'4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836',310532000,'9871ebbbda65fb698a50235df2c22fd2283dab1a083f9ba2d31febecc2669852','6004fe4cc5ce025759106802ff56bddaf546e7a9d71510e49a4098766a794726','3f257c8f58cee62ce4164c0131b3575cecd627be50680b1f890b46765a646c5d',NULL,NULL,0); -INSERT INTO blocks VALUES(310533,'4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912',310533000,'5eb75c91baf2549f7905a51ce3dd926721cb7fe2052584eb393c3af649414403','b9a73939683499b11ce35245014153232ddde14a49fbcc8cdcac3f02c9265a72','a7aeb1dd865847604745f1a573fd54b46802b15710a4e8ec7016b0f374be41f5',NULL,NULL,0); -INSERT INTO blocks VALUES(310534,'2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad',310534000,'a291950484aec7e60f0fc17ed29d3908a5343ee24b3a8b926adcc2016c436aba','36dfe8e8614a4f5046330df939031d7618e0c5ec9a5e9a23adfb5abf81b17832','92f4c332c7d4e7ee6fc1f1d79b6dbef85bacb4eb52074b09bd276c076708d06a',NULL,NULL,0); -INSERT INTO blocks VALUES(310535,'0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce',310535000,'fdc4940a776dd241bf5caaa5875fac2d1d869ec438ccb6ea96b67c1942bf9c7d','9be9aa1d1972bdb4febf132b2003528501375ed67a70a92efdebdeb4c1b98a90','bc583defc3c0928f1201a8733b340b17d66854021a38484570758907c08fffb2',NULL,NULL,0); -INSERT INTO blocks VALUES(310536,'dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018',310536000,'a18b4922df0afa7c7ee49756eaf808c7cc4d9d05cfb9c9077a165b2f592d95eb','f2187b1c129b489914599faed5415ba0d52a0bc44e49453df54648a30f505ce2','c1e8b7741a7724641ffa1a82dd951186f09c1647f8ce7ce1e6ab525c16338533',NULL,NULL,0); -INSERT INTO blocks VALUES(310537,'944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d',310537000,'a0761e85b4872b162dbfe429f4fecac2e73e6e03a0a1ae6488327003d8630b25','849255d12eb06d2dbf9ebd04fe0a99602216890abe7cb6faae4b13fa3dc0b3fd','b55901750fc8eae849b2436fcb86ad92e67c65782dff7caa014be480f1c36210',NULL,NULL,0); -INSERT INTO blocks VALUES(310538,'75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd',310538000,'44822634a5906e095afbf44d44daeaa36199d6af3d6c8c00e731e88fe953e36d','8ab5b08a8f5f57d62cc8fdaefb001fb34757bc7dfa355311af7e993338c15e80','7d2250ac3d3a16cadd09c362cfb75f37ab216ec09efd5c88156fb1b82d2dad45',NULL,NULL,0); -INSERT INTO blocks VALUES(310539,'338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3',310539000,'4f5a26997d376667b7c37e6d95e207fe429c09c05e5367b3db0b6a8fb74d23af','f889de9308ec0bbca7f214cc8c81030ec5317cb72dddbb97dd3b00a002c4fa64','bc46707dbc59f1e220e0b495f1f0efc12a9917f9bd9147d446c8b87a93d029be',NULL,NULL,0); -INSERT INTO blocks VALUES(310540,'0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d',310540000,'8a87004e3a64106806696f71d7efb9bcae3135c322f297ad7de379c29ec8313f','474f6e2a51277c8f90f02aab78058b6b9c7e3327d0cec325ff6002e058148496','ea1e0e430289a1643f5cb0bd3d6d9163a039909fe3665760a961d18073095fd4',NULL,NULL,0); -INSERT INTO blocks VALUES(310541,'ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453',310541000,'6d998264dfe16f8058aaa5858cb79e79ad69fc2d329c02251b00b1e0167a7c4e','0b004058cd27a1be5261693a5203d69c14f2ca5b3105d21bf28ef3f49273f885','6c40c21a73ede375b284285d1a92654f59703a39f6a86da1ffadf749a4716049',NULL,NULL,0); -INSERT INTO blocks VALUES(310542,'7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2',310542000,'62a19834e7fbf406a9aa79eadb62777fcca224a7989db7de1067b2e6caa63369','7553c0132cfd45b14cbab4f1e59510933069a4f3b82be8a0e2f13d08e3a06cf3','010fc2e1fe45d582619ecae7a17c4c61a109ef7546065e8e114c1ee3150b8a5c',NULL,NULL,0); -INSERT INTO blocks VALUES(310543,'cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2',310543000,'33219794788b90ec54583a14b734f678f557e0bdd8b34f7bce2ac42ea3a6c0f6','f7e56981d310a7b8a06ea7ce6c4d4091ce35e4a8023ada8890e952453dae8201','9352986391e5180e06cad855006335fb840493e528785721e9c33a22bf5ea10d',NULL,NULL,0); -INSERT INTO blocks VALUES(310544,'c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6',310544000,'b59bad9fcba90d7f5bfced7e90f5c9672b2ffe33d79bb9cb20c2baadcb964e50','bdf0fae7bf5083ddc2a99a4a7efbaece20070f0145e44b67567f71c90b29ca2e','72a45c4d8f834e61b65e0252c77cb8e57a5113d5244c96e4ba931340f0d829fd',NULL,NULL,0); -INSERT INTO blocks VALUES(310545,'aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a',310545000,'cbf12a5107ecad81944e4f881bfe77b2d78564160f266d8e71667645932956e1','9a25f3b3bb017cd926e1fa8b768324a147979f518208c106ffbad1b5fb8d502d','9c8c5a5d9e0e40ca08179ed61ae3ae32b05133c6743c2bbcef94e96229ddf7e8',NULL,NULL,0); -INSERT INTO blocks VALUES(310546,'20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d',310546000,'f25847e305f7db225949a80d76e9e1bdada01021099c5c0fb08ddfdcb78ab480','cff6edc9625c136443e036d39b1ed3cc5e76a49b919795f05cb92e508e4cead5','b96accbcc891a2256e584d14dd3d339355aefc1c1109f0fe42e562797c342e85',NULL,NULL,0); -INSERT INTO blocks VALUES(310547,'f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7',310547000,'d39a0f8a9ff6b86cc72abc351e8391e0df2ab52d195035f009d18d11d5d5e9cf','3a305e7a9b8de2e2ec9f43206a08e257a1e17c540f0e47625b64feafc3413daa','7b9d3c1636efdfd8a82b4c46507b704e936e6e8258589e16d9a820176eb787b0',NULL,NULL,0); -INSERT INTO blocks VALUES(310548,'bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2',310548000,'1f54b81e87e72ae3f76c8fb8f348a3dd24f2918be8e2914267c93d58c810efcd','6a9672fcd678d39907e6c01137f2c6514ff99929cf60171c1760e72dea1b1f19','7af4c43009cf4dd3a831d1a5c8c0bb68888b8e6d72a9cdf4775409852b65087d',NULL,NULL,0); -INSERT INTO blocks VALUES(310549,'8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979',310549000,'697b6c693e7cdb7fe22a9b1d9d7b9332c9ca9197adb351245b543e24fef49c2e','d16823e9ed0b346917aae45cd173cbd173d229f284cb95ec7af7c9b159b2d8c8','836a9ceec89f9ae37667a2adb677f1714060f398530eb4a7b6c5c3b95b1be986',NULL,NULL,0); -INSERT INTO blocks VALUES(310550,'08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914',310550000,'353f9dd7d173823446e7a4d536b2a136a0005dec0306ec18541d1c95b06e2986','6ce86b2a35a931348e98118c7426950ad4ee1a9fa557cd3c1eab0c4fd8d3f144','7ff391cbc597eebea8fb24e1923b93be79fb044f40ef612b27221dedb6b1fee2',NULL,NULL,0); -INSERT INTO blocks VALUES(310551,'cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b',310551000,'cbaf72ce2e4047e48974e4839f6e033fbc0cee5d3599cee2ce43af879900b5d5','49db288f7c65afd8f99a1f8e6edc85dac9c599d27be113df4b6246f9232a6056','2094bd531d4c5bfaa19bbd0021a74b200880f5402449db0c6a8f9fdf4b9ad7dc',NULL,NULL,0); -INSERT INTO blocks VALUES(310552,'d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d',310552000,'056d1a4bec68b036c52ed73a5086a3bdca8649dfe364480326ae170534da62c2','f5ba7a3fdb9394f101d5187b107ad937fa5a224c290119cd76bb37710b1600a6','819300e47b634f4895bb8df78cb17f8a4e74ab04b4410d6fd00090957e64cf41',NULL,NULL,0); -INSERT INTO blocks VALUES(310553,'d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2',310553000,'5bcdeddae792fe5322b07b5edf563f1de05f7ecf2f54a0d9c88b76ec2be96617','b1777df226b373535e3fff13e4379375cd601d0cbc1a90951cf288d21eb66aff','1cb3860758eee8411742b13c8f69b255bb02de353b3e99bb9cd5c7542eab40e0',NULL,NULL,0); -INSERT INTO blocks VALUES(310554,'7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65',310554000,'8f28d0859871fd1513213cbb15d5825419c12bc23b2affd954b35cdc63d28536','870b61238a3e7c740fb52ba62719724cf95250ac22a4705dd88a1870f560fa1c','5fd6ed58ddb4ca4ff4f67850d8037bd9fd9197446576d43bdc9a647f02e99bc6',NULL,NULL,0); -INSERT INTO blocks VALUES(310555,'c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa',310555000,'8d9f3a940b5094e7e59de402cfa9c2b07b9d95fb9afde5400e9884c15712df31','8b3bd64e05150c476d55dd64729b8e20e7b8c345c35c723392b194785472c6a3','8c61e56049534b413b5f5d30feca4ccaafc492dab7af43f3f3a33706f74b0fd5',NULL,NULL,0); -INSERT INTO blocks VALUES(310556,'4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a',310556000,'6855961c09b3b8b8ef2e8b9aee33b7da1d36228e2af0792932c3f7419d6da242','a858a0bafa17a74c79b65ca07ad3418ac201e5096c87159bf789f40c3d84679b','c7cb6b173e457394f5d2408520f95584489146dd500d102e2d3d5768819d0522',NULL,NULL,0); -INSERT INTO blocks VALUES(310557,'0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382',310557000,'3b3c17afde8ac19daec1f9e6ac4ddfb80ef6e0638be51e1753f0a23baf378fb5','6cc6e826d65d96cd9546e3e459934acfac6456a706ed5423da4c4ae0c71feb83','5b3203ca1a8e30ecff1d98090949ee36fb90af1cac932e0b72a0cda843da69c2',NULL,NULL,0); -INSERT INTO blocks VALUES(310558,'75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15',310558000,'4d503551c20c5d235f77879f85d947f00c5041567ddd19d307042b4662036bdf','56c4cf4c2b8562bd4e1721cbcfb9faa7c67e31e6f1abd95525084cc51dabf3b1','d4c9396893f2b11c371f235e13725b68384e13b0e8d2f368125d45e64e7ee0de',NULL,NULL,0); -INSERT INTO blocks VALUES(310559,'6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc',310559000,'31fec5359649d8c4a59223216b4f190c3c8639a7b2b4d6c91a8ea26929f5247f','7d1ba0a6152887e4a66e003c7444c35fd14a9ed3c48455e6ccd8476ff232cb55','09e26f07054048a2af8ac5c8cc2ea347dedc992e9fe1b6c12b2ad7bf27de8ed8',NULL,NULL,0); -INSERT INTO blocks VALUES(310560,'d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec',310560000,'298bb7532a1c40a663cad5fabdb1cab1b85c0e876b9fd350fee91983688ec701','65eb78129546514584c78b914d05644975681daa08d796aab35e3662a4a9f387','42a8cb47d6874c78b2061560207b4670bddaf27148bd04de0daa4e13ac5fca08',NULL,NULL,0); -INSERT INTO blocks VALUES(310561,'b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee',310561000,'918f0648deb5255921569d3938fd05d438dfc62a14b5f87335642c86507739bf','3c09fa18d2fcc72e4afbca9679e46f5bb5f4d56dc2b5d4da3282c758819d5403','30331c707eb0a4ba121e095687168967d3c8c567395d098fff7aaa96fdca7859',NULL,NULL,0); -INSERT INTO blocks VALUES(310562,'4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405',310562000,'794af8befc03cfba539c0521496a4b0c9989e30a3caa5b61fee6593daaf3aed9','e06b6edc60212d17694503e28f4d8879a12b5c9f0d75fe281e0ffea001d78c76','00cb38c4cd96fb13a8db283bedd5f8daf98d3a777fce4915f6ebd42c9fe7f40a',NULL,NULL,0); -INSERT INTO blocks VALUES(310563,'f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636',310563000,'33acceb8a2020c1c3076a85888772b4e5a1226be90e169aea7a79f1dcae0c77e','4df37acbbdd1a1f9c717f58748f170d7ded7f62b686121a9f821275fbb12e25d','d34331ac044b779e3531087c7fb7d9f5d0a7a171a14a479babc00e5c0d326239',NULL,NULL,0); -INSERT INTO blocks VALUES(310564,'cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea',310564000,'229e114ecd638e974aaa61f1d54673df550e5c6180fa316389642c967d702bb7','f145d6e47e0640e5b13185eeb88286b190884347aaaced30f2a3ccf1d934b75a','f22a1d0575a8f148aba74f1b1fff2e0ca51d0732b780ebb9a45bee8e0f41c921',NULL,NULL,0); -INSERT INTO blocks VALUES(310565,'954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305',310565000,'5c53d7ad75f3555e7f7eef51c5feae9d95f0b721f2f8c297ebe185a2e74d3053','db540061e4a8c10001274daf3bd8addd05306a07836ed6369388720544aae941','038a28d7e697da93577a7abcfac353d7409b0f6ce26772281a9bdd41102c5239',NULL,NULL,0); -INSERT INTO blocks VALUES(310566,'3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39',310566000,'df9192301e714c00210833532326501b47fc993a006acecb9871826c53dfa60c','bc9927aa4bb22304a9ea2edc24e6fe5d8d6b6d6f1083cd64a5098492e811f2c9','367b03a65f437966835c093f267676163ec0c5991c2f6f0a080be548d483f0cf',NULL,NULL,0); -INSERT INTO blocks VALUES(310567,'499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431',310567000,'ebffee7f4b8ffd4a2e29837e2f65f9c485f85bdd08504dae239a7efa29fa4d59','98c790c8b92ac26f828848a06f10408d459b5fe2f54529f3137754d31cb103bd','5c7c2ebb9de95b8e27a5c367ad4b7915161cc2f953510c6709edf65a23296e6b',NULL,NULL,0); -INSERT INTO blocks VALUES(310568,'ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e',310568000,'97c8786092e3685c8916143bbd2a059791b6e2ba46218c0e4debba4448b5d0b3','570347e1c43a67562eedbef0f6d1a5e9945e293058c5277ec2ae0efb8254eb63','6e4246f6142ea3858f1dd7b03ae80c544e053ef04d71e773184b9bde490a86e7',NULL,NULL,0); -INSERT INTO blocks VALUES(310569,'c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de',310569000,'a28ba712a296e1d7b16bc870c661754529f9dcc88bf8cccced55d872d3541bcc','2efe30e2ed6a9f020f3ae70db81c701cfe07d9bd24451dd80294d0692c63685c','bac17b6f0ad8186129cde3d4af94d4060b72db532c3e1f16cdc8d5a7f4c7d98d',NULL,NULL,0); -INSERT INTO blocks VALUES(310570,'f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55',310570000,'2f8006f26a6de634588bbf77a34c9738306b6241a65ea0b69b6ed49a52186c90','2ff0d7d5e4fb10d63fdab2561aacdc90f92f0df462bd652fe58f23c076242e82','7d2794a3076987332851c0eeec05e51f6413b71601cd007ca07a1e3c8b4b5e35',NULL,NULL,0); -INSERT INTO blocks VALUES(310571,'b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73',310571000,'d44dbf0231c9a0ef8ea7282ae6866df099c6b143fbea41abedd96a4303e285b8','7098b0fe2e0577a4d1ccd090b3b9ffa952b5c1fccb8fbaac6b1a43635084eef8','30c0f19d47d78b0e6a5c843a9479a712e92bfb7dfd3523939ab19a5411b475ab',NULL,NULL,0); -INSERT INTO blocks VALUES(310572,'6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9',310572000,'27a4161e0d0ad2f65ef32d4dbb1b1bbe44a08abbc98af9e20674a8779c07a59c','e7db661177bca11155df203594bdaf815bb537d525084767ac0ed6e9fe99fd5a','14e7ec83214dc2e364deed75690e2cfd70cf5116aef1cb42b8a22b55003239b3',NULL,NULL,0); -INSERT INTO blocks VALUES(310573,'302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5',310573000,'63a2b48574e98a59c8e69c26886c48bd25d2afec89f7554145c4e342c6ba18b9','672565a64f687b09950572bb69dc51cc874a34d8808bc861d84bb3d227da1f30','98833b1c69e87ecde559dc204f53285facb6751897e773829c31834fbe996599',NULL,NULL,0); -INSERT INTO blocks VALUES(310574,'c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d',310574000,'1a27efbd3b088f35dcac8186f7eb795bbdd96273cc2359b368b6a64498ca1876','c681d31f5e8b1344188913364f2eac845db9d9a936b45f6eada955996b7073c2','0311ec09263c91fcc861f8e8204259d50751c332567e7855a5971209e6324e1b',NULL,NULL,0); -INSERT INTO blocks VALUES(310575,'fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde',310575000,'d76913a45582bc5e55943c8944f8a1320eeb3631b32f5d8470c44b8d62655966','3ea5d34d65420a54fd0a1c8424f3afcfa5eb40707eb42088814218583ff36cbd','fbbdb09df06575e75d67b47de5436ebe471a9c5c33cdafcb1aa00ee45dbed7c1',NULL,NULL,0); -INSERT INTO blocks VALUES(310576,'b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5',310576000,'f7fca8d1a77ceface6731d23bfea3ec36f63d4cb201e44c36f57d01f9107d045','19eafc5f2e2d7ec141f9f2bd1d5c7fb0b380adead15654553498e3af5bba0ea2','0d4771b4cac31dbc2f51e12117a73f5223fe6993d8a7e6c3ac9fcc87de7bb230',NULL,NULL,0); -INSERT INTO blocks VALUES(310577,'a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3',310577000,'1cdb07845fec337dcde9404762ddf77a14355e5b78817964f378a830427fd197','be512460315bb9b670cd1b9e78165df49fc17a8851dd7b66bb58a0e83bb4e487','8e42b3affbcf5935286117e73440608272964f3ed3ccfd244a7bc4e598767e0a',NULL,NULL,0); -INSERT INTO blocks VALUES(310578,'f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf',310578000,'19640d7fbf5a9a85606c6b6971b3039bd870e8e11602c98da1c83269eeee9eb5','56dee75f67260fc83f55a276ed430bb1c9495d91b54d323a3d0cc427686a85c4','f92169e487d9f1b1587939fd1398d677b9a8612b24aadeb6f6c33138bde395fc',NULL,NULL,0); -INSERT INTO blocks VALUES(310579,'672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38',310579000,'2535535df8e8250cb90972418faa698e79a766a42d0321f7bfd2d68426fe2c6c','c9a5cabe5916d0d169e06c7528835c5fcb00af3515e0c44e5e17c567dc52f1ee','91a42777b228ae160da8ef3f3f522ee6b4bbfc4fa55f0fa13ad93af6bf9ca85b',NULL,NULL,0); -INSERT INTO blocks VALUES(310580,'e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13',310580000,'48f6ae3b5d93cf4b2d6deaa8dd30fe2486cd1f98020a3121add7cfe9f64d0d1f','b484963a876ccbf57728287a7cae8ad916cc4523219b7f2fd6c42bbdfaa5ead7','0398e37743a453d86ce9dbd40180ec3b7d704f1f3818f938a73984a91057b829',NULL,NULL,0); -INSERT INTO blocks VALUES(310581,'baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a',310581000,'c97da518cca598c170a42b948fd0091798370a2d0672788619b42cdd5386a2b4','301ff101dba0c28f5603b3776bd17f373f30a5e77c8e619dee30e323322e4680','0f2f71ae9e55d958b0d725dc9f1bcee3b5a2fabfe19414e84898c7f921b081ca',NULL,NULL,0); -INSERT INTO blocks VALUES(310582,'08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c',310582000,'0663d39d2f80ed99eb3e017a9bf8626344ce6f220da4c86f3cf29b250e9a66f9','3e8a5d33e8340bc7e1c96c95f4eece8320807dd01e7f66a53f9afbcd26b19fa3','17de9b8c13566e250cafb691f8c46ba6bfe0be93848af606d502a8ae75aff56f',NULL,NULL,0); -INSERT INTO blocks VALUES(310583,'22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4',310583000,'948c8ab523cc1b2c514d2023f3ec9da1c5abd99312a52083fbcafdb3cd584d55','60d468a45c64869425508b88e3fbe166690c3009fcf33e3292fb2da145079044','41b79447a81a386694351e4e7da7eb3a7233e95a226ba6ec752414c8cf10c771',NULL,NULL,0); -INSERT INTO blocks VALUES(310584,'db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b',310584000,'756c6163f2bb1f47c57ca55ca571793115cb650efd08096e67ae5f78c26092f4','ebebd15c29221496c6547f786ec67bfe72278cbb8e15fb96737a30094880557a','ddbc40c471276db0176d1d76f57a552344267513223b1f902745e1350bd8a1d0',NULL,NULL,0); -INSERT INTO blocks VALUES(310585,'a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb',310585000,'0e5ff2b0d4c06e384768b425e4553c1c8e41dd89f0aae6c955a4b5f6cab16f34','733e1df46cad658a76f3ae6bd51acb09be0932fdeb5f92e99b94bd5bec78ecb0','401a2d467537d5293b7dfb6d7d4b7954316bdbafb1cdd87a853c6904c9f23fb3',NULL,NULL,0); -INSERT INTO blocks VALUES(310586,'c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7',310586000,'396eb8297b2b514b584d2f799b6cc8ebd613b5eb443bd01e68055ae8235bef16','3ead47e29b52236c485f6461d73c47c076f23aa5c96d2462adbf265966426f5d','447c626e05958d55f2184eb8716dc80c3feba04674fae3b1500d6a7577fee914',NULL,NULL,0); -INSERT INTO blocks VALUES(310587,'6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa',310587000,'7da56a4b5bc6939f12cc9a2b4ca24184978cad34f1a457b4041de83bf29ae15b','94d69dc7ecb628956923ed4d570fe0da3ef0c367066d76252f656f3774347938','524f8d3ec616b08760af074c959d424bd751280eb0557bcbc242dda7f55eb113',NULL,NULL,0); -INSERT INTO blocks VALUES(310588,'d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff',310588000,'4b743eb87cb4dc115c78f353e62611598cab891bc16c921d3cfb279ff12a3c50','b50620604ec72308ff19abeebe034e9ca8d732d2d21e765ff2ff78940076d62a','3bd9c63c03444c338b7072b4054e589c254a7a7dc10315cec03b210bca0e04b6',NULL,NULL,0); -INSERT INTO blocks VALUES(310589,'4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da',310589000,'046efaa061d244e1f2da8a7814f2c59fa13d10c50787ce1a33ff11ffff1a2c27','78bdf68341d15bca6e325624feb58f527fd0256d044dc90dfd0c5874dae32f4c','c228af4047b3efdd478e707b16dce13c0ec025ab44c015e70a3ee6a369ae6e27',NULL,NULL,0); -INSERT INTO blocks VALUES(310590,'7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6',310590000,'c0387ead71f6ecaeb514e6dfef129921194912295b3e317becc3d5206bafdff9','c4f9e894ebaaca5ba7bd4c20106b670025db1438df60700fdb4d69032277f740','461799c504a0e097e2bf93811b662acb956fa2477d1dfc4ace8ea09774407056',NULL,NULL,0); -INSERT INTO blocks VALUES(310591,'9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7',310591000,'292d47eda1bbd30200a44840aa067e3b581a38406fc103d6d4e21e81a6971d32','a3af6a21611a7407ff02eab2468c377d29814f84add22f19f3fc1bfbe0d9694b','29a80a2ffc13ce9eeffbbc378b147df2ce2f6fa4e966fcc28ce45acad0706ef2',NULL,NULL,0); -INSERT INTO blocks VALUES(310592,'d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3',310592000,'7558ca835974df67db436b22ae880e0519654f4d6d9bf79f44e1511d647548da','daf91d91dbbe9f77915568b355565696d4da404095e6b547bd2db3587113e403','a5aa7c92c9ee4a2718b8d6438f3e3a498cf5df316c573c9d4a22dbf1837e2564',NULL,NULL,0); -INSERT INTO blocks VALUES(310593,'97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b',310593000,'470979540b6e201a9c09b177b9f0b61251dc588df9d1078ff768461d0126e553','b5c3b0df9648788b62ccf2fc881924438c4409b828117e2db502b42f2aa800b8','be434fd8b2825800ff54fc268bb4285a96df24fa6733057ac4bf6dc3c6a5f10c',NULL,NULL,0); -INSERT INTO blocks VALUES(310594,'f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015',310594000,'cf27c790b1bf7de710bc370c74cd55b8b720867a3d016637d6d01b469d6c1bf5','05b3baac4f1a13d3b2f287b6660be568bde7646bf4d2dcbd58928f8be1b5751e','2d14f203ac54a9b0121ce13bc2cf4d0ac38352c9138c09cffecb0e730bd70a22',NULL,NULL,0); -INSERT INTO blocks VALUES(310595,'0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66',310595000,'51f45c2f8a54cc0e8d0e668f1892facada295aae3157215beac73f25cbfd6e13','2bd0b4f8dcf78006ab0a7aa8dd4d71c6598e9162d772e84c4701bc4c8d45f6d0','a4d74b3830b5904f7b812913e66dc66735829e9a12005b01b9b1ea39284029e3',NULL,NULL,0); -INSERT INTO blocks VALUES(310596,'1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688',310596000,'829638e299bf581dd5edfea61d4b051af219b50e344e6bf487b4742d2469e73f','c7a197d075a2b5d5bd3267ae10eba1596cbc93bcbf77830b4d32230c27fa72fe','12c55abea0e3bde23b8d33a4f781f5f16559ea79b6906adcd7586a587733ba15',NULL,NULL,0); -INSERT INTO blocks VALUES(310597,'490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd',310597000,'bb4a411c7aba4fc72004771f88da31ce729936ba612f2eab99c1e1a637730ca5','c648adc37b10d6b7c9fc0e1f2a4b5c8ff9ec86fc035e4124c576d8f118c23503','941fc2d522943579830d8bcf66c2fb8b5f40527478425dbaa03fe1ebaa7b4798',NULL,NULL,0); -INSERT INTO blocks VALUES(310598,'8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a',310598000,'5982c8df2e62829447ce3b2bbb0864f2d732c508aeba03fab92382ae0096bff6','b23f0702a5066982b19875ee3aeacce21c97adacc44c5ae6bc1be94f3edcfc93','6d71c4becfca063245d125dcc92d00b9129597411436c189b574b02a3169e1e6',NULL,NULL,0); -INSERT INTO blocks VALUES(310599,'71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8',310599000,'330ce22a1553aea1b050b9e14565015b3aeefc4244ee64d801591a53be9dac17','cd5848644ac2a8bf3fe63736a96ce91345ecfc54c943e72e6e24b8cde5ced243','c8f7a4129b3f0b508d65be8eaf0215da3e2fbafb5ea9d0aa3e10c9b6d3fa225f',NULL,NULL,0); -INSERT INTO blocks VALUES(310600,'f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a',310600000,'1f012bb22bf3b313141af4a62287dd888877de2b59cba7b9d04e8b78f13ab989','8d9bdfd600f2ab1f9df6b51b3849792e10973ce73b872ab6e8d6da2b5606af53','a3acf54f3ceeaf750ecf644a865e5613620b2f75eb28015149b6dbe38955a7fb',NULL,NULL,0); -INSERT INTO blocks VALUES(310601,'7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd',310601000,'a671374e89b156243374d38ec1a279dddda45a5dfb0919e4f65b9a8191ea954d','2acbb771db97fb8e8f0963b813502965908a680d2fd86446a33be34e3744e81f','b62511095287bcf37d6f450bce6ab2b3f3681ae5f09a922420d5b1a5f42d6dea',NULL,NULL,0); -INSERT INTO blocks VALUES(310602,'c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2',310602000,'829ca2a90dd76a26bf72e16fa59b324a2c904821f54ecfd9cc00755beba483d0','243a393f2fac01b0ee4e10351a0cdd703509ca63d66654bdf578f3eca689421f','3b19c242e370e5bbdb0750d190f6ceb09dc1f263db49fb718c550a82e8b9edc5',NULL,NULL,0); -INSERT INTO blocks VALUES(310603,'44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c',310603000,'58081fe32b8b77c4c807d2aa86ebef918c21242eb33d06e3ffba6701d2655d69','6bd040dedbdefeb0e3398fb4533bd2bcd99edcbcaec5319ccde5e7a5403017d7','e0db5a4e1015ca8719eec89dfa230f27341caa184eb2da25224bbc9008862d17',NULL,NULL,0); -INSERT INTO blocks VALUES(310604,'36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f',310604000,'e130a31f9ad532e80fb8a10076f1b99d230a19070959e7c0eb0f2d59bc00fe36','50dfcfb2871929ffce0a82a85a5ee11a125109a774b34a9ec127ab6bfdfa3b8c','3838f1eed88215d65561721a1be25e04f00332046005757c161729d39fe7b89f',NULL,NULL,0); -INSERT INTO blocks VALUES(310605,'ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9',310605000,'8c43535f2ea91a8a051f2ea6bd5434cfcadace5836e6e04a958a3d29ef76b54c','3427c9e8c0ec9016a521b4ec842bb5cf3731cd747b514a553f222e44a3d3def3','1789cbf52be6780c3e98c877d87ad20ee0964befea76ec1de63c93c75c68d492',NULL,NULL,0); -INSERT INTO blocks VALUES(310606,'9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f',310606000,'cb0466214b24bb1d2dd3a0eba9a62fff97742f3b00d9d5efe04293be34b247d5','c11cb503ed27d64acc8b2363a34617edbbf35bb701f21b87c70eb4966f7eb035','b1397dcbc26ac5a35c2327bea11eec27e93d01abd372c7702f8d6eb1b06779ba',NULL,NULL,0); -INSERT INTO blocks VALUES(310607,'ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d',310607000,'2f2504389bdca2a1acc0459bfa5275128a92b0d2a09d1aee771d400759fe6a26','12b12d0888cd3a82d149f4f8c136000c26a49f97f318c76dc90fcb4996bc3064','3bf52165aab0d600ac023e2b06f6b73b30a4af197606ce7d88b6fe5c652c003b',NULL,NULL,0); -INSERT INTO blocks VALUES(310608,'ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846',310608000,'4e855f5327460e76c36a2a9a4a8fa470822ed1f0aada17fcf2436c7b2586c7b4','9fcf0c090ae0aa70fee65fa83a35cd15311ef460f5fa501f6f842c29e2865856','6d616648bea1e6d01933bc3db17a671f89833a9f78c856ffad4531701522de42',NULL,NULL,0); -INSERT INTO blocks VALUES(310609,'83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455',310609000,'724bd0faffc7b39a6e88fde32041767fa5f537ed2f1eae619d52ee6e9fdde52c','7e09b9bc2a4a6bee758dbee3801455b3c84998bccaa40ba8e1a62eed98fdf40e','fd2a92876b31307ebaae154a3f5febfede1470095425900116cf3354017e5609',NULL,NULL,0); -INSERT INTO blocks VALUES(310610,'f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9',310610000,'6459bf81897bd97e8107de9600cb7004c65112388402e3c3c58543e09317a723','b5615378baa3bd212119929c04f03e2ec798efc02eaf92232b393e1cebf21cf4','f4cb0d75a0befd89ec8f672255621c4f00c54b2009cbdffc5d67691388b9df18',NULL,NULL,0); -INSERT INTO blocks VALUES(310611,'6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89',310611000,'7805ff535922d15a7faf37f4ba517e6ee61775f71e40e3e1f077afa9acaed282','f026a93859c733bd910f0341d53802b2443e5efe0a7a7dedd3b0e3bcb7cd6f07','49a6a4e246b8ce6a0877dd3e7117c2ea81584a2a33ccea851fa9c6223c75f045',NULL,NULL,0); -INSERT INTO blocks VALUES(310612,'08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd',310612000,'04f908169e879b7fdfeb29f70daa42617c5704b39b2b911b9a33ce64bbf8b92d','b67528c85ae55a57b1dcf3501d340c280af942e4078a1c9a39e9ea63ee9570b5','aaebc56b3d648e9bf2da78ca8b3d3c4ef1b8e0ac1e9da8b69519ec3d48a26174',NULL,NULL,0); -INSERT INTO blocks VALUES(310613,'c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53',310613000,'a4fcaabb9f8905ef4237580183f934a039175162518328bec2b4fbad00092a88','d6e9204ae7b7c5f887a25fc06ffce731e1c4f3228ff039e35be1d321276f81a2','37e4311b44d7d6644d8abe77406672d1d6686e70753756f3a2da8ef0307a352a',NULL,NULL,0); -INSERT INTO blocks VALUES(310614,'e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b',310614000,'656b5b57178f9682b70c9d723c08be8694ca94e6dd93f7cac61f83cf38d00ad9','d1459bf2b59c0c441b8f00889669c3c6f645f66f608eeb623576ed7044bf37e4','2c42dfefff1701eee9fa988f6074290928a67b50ba8581afdd8ae51b1d1a9152',NULL,NULL,0); -INSERT INTO blocks VALUES(310615,'fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc',310615000,'935e774a5ac52c24cfa4f6dafa08bf87de895663d349b4a80e30408ad0e78ad0','b35468ce63479f2f7cd17f791e8a66b3a1b42e716a7792a2213bf8742978f9df','1480014156b2451a43376314d78beb3b3d02a6e832d6611ae0e97937359da78a',NULL,NULL,0); -INSERT INTO blocks VALUES(310616,'008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84',310616000,'a69373473bdb2a81d17cfb98c152812804069d375b0eb6a1c08437187070c0a7','51e2ca4af76f00e81e5f946c53f23e1ee7ba4ea7603832ef77c374bae59afe3c','2e72ed8940147ea9561102e38ca3e7650947f0178be4b75ee50e52ae6fc0dc96',NULL,NULL,0); -INSERT INTO blocks VALUES(310617,'cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29',310617000,'8291e17379fd2e1214612151f8bcce3bd3b8bc409e528b4b39e3d341cceb4d66','55776209dc06de6d494ddf7866b805d94f4371598273d4dcf23b510e72826cc3','a04be794dd7cc993bafa6463eff3f493f56a572172b7ffcfb6c5e723777b8862',NULL,NULL,0); -INSERT INTO blocks VALUES(310618,'f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b',310618000,'1d84dfa4fa75b017967b275a803da6b4938348b4b5cfc4a109e0784148a186ca','cad5af4c24c74aad93c806ae54251b11cd7d13210d68098afb26cbe73e3e120e','374b9303afdc52229487fc5409024f8fb25d9b82626a86ab807f29bf689d1b75',NULL,NULL,0); -INSERT INTO blocks VALUES(310619,'4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d',310619000,'ccfc63ac8e522f8b5307b644d04ad95540fd490008f6e25017b888542f8754e9','42704ac1329f6cc2fbae3b8d6113afc679f159b44e007a4268d03cd9a9944721','90e10fb595f8339080bf8b45dc57a7b9163bfa3ba25ca309957bf9943cca0183',NULL,NULL,0); -INSERT INTO blocks VALUES(310620,'98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519',310620000,'7eaf246b47ddee30c53dbc1dd816030c9548ad7b57e6d72a3e61dc1b0f0fb542','e70c9193269a63eb0ade25f20d608c5ae1d9bfa8d79f7ed50c2f3e7b03945149','6c0ca10e0af73fd4f3a05ce3411a017abe028d2df830dc9e80e64a1f0a18cb6a',NULL,NULL,0); -INSERT INTO blocks VALUES(310621,'1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11',310621000,'8b12d5690d98419f42aeec91f62b2c0a90f65ca5ffa745051194222e45a514ed','0993cb53bd6e9ea2635b2ddd58c9a43c5610e9e2a0ed0fa5407616a28e3aa201','ce5e96a09d2013bc5d33f2b7d144be4edaeca6a7b71c05721eae9ce723cc3b3c',NULL,NULL,0); -INSERT INTO blocks VALUES(310622,'3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47',310622000,'da3a62ddb012e6176d17d3039c8f9bfec8049e13ead94ac2b95dce8049528ce2','674ce108f53ec7902c24edac613cfc104e7d08cfde7c8dd3ce65ed9dfd72182a','312b9a734093e87f37ef2625c3ba249c49790ad5c0cda9375a6b6fe70746ed4e',NULL,NULL,0); -INSERT INTO blocks VALUES(310623,'817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad',310623000,'ad481b7cea15f41cf9cd5fcce0a66edfd4e174f9630786c0169556bd0b361328','a56c89d0b997d5411cbcf260edcbd409e31a599fe36ac6f20a3e0c031e17e750','cb00a7e42616a641f7d884e74a2e1dfa7b53a0b6af10793a877ed329241052ad',NULL,NULL,0); -INSERT INTO blocks VALUES(310624,'3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4',310624000,'0489aca927ff2bfbd2da547c31f2a66c76d8732147a795a797b2645707d2115d','daec5678d2803f99becdecb666418513aab7cc9a37f6ab54e675e0a895a3b69a','71076c4b07b0e5f82a80c482801c1614f9974fd5c62e6ca9d0095e99d069d27d',NULL,NULL,0); -INSERT INTO blocks VALUES(310625,'bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba',310625000,'95e06957b32480a49eabf24b464749e6dcdfab2d64bd8f6acbfc197ef24ae01d','e378650c25e95773a8167e904ce8ff4d10efc57fc2b544054c6b4201f7547537','08e24d51ac43918e9f79d6d6a5b3c674f36aa36d77a27a6e7ead4b7ca583d277',NULL,NULL,0); -INSERT INTO blocks VALUES(310626,'b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d',310626000,'7a467fc398bbeb5d6a346df3e14a79dff81babc22577d45f8b7f52fb80cb0c96','0d54a79bc7f05e33aefa5fece35ec2902b3da8461e34163b58c2fd3779483614','b714cf8fa4e1683b37fcac2d109cd1eea547090438ffe5b6ee682421935ee4ef',NULL,NULL,0); -INSERT INTO blocks VALUES(310627,'828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f',310627000,'03f34f091bb3e16276b410f8f3bee09a53442e800a58d2487d8732660647a34d','b4e762b53ffd3d9ba24a34032ba26b048f2c7524008cc3f35c0e44c1eaadf8d1','77eaf5c31e059e0a930e9b75bdea6a5b1e68b8119b1803fb5e1446d5da0d62f3',NULL,NULL,0); -INSERT INTO blocks VALUES(310628,'f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e',310628000,'ed30807d010e320514081a63cb058b13177a2e4dd27851c028c910ab0862ac9b','966ab2ff446abb9ad3589034fa23dbc5c467d019cb92803745c8732b05a6bfbb','63f32a60725805546bc8317785565538e7e40929fb35ffc88d0d3429cec52c47',NULL,NULL,0); -INSERT INTO blocks VALUES(310629,'254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20',310629000,'ba0d1e9e0077394a67aa0af1deb288effc88234b747df7c8fbef3896a89bf50d','f739aa66c8acb9c24def7f1febed2189e6cc63361d2f798ed32cc808acf01eec','1bd94e3bd4ec922e91c777b0bf77533799f99ec602a75753a1546b59890d0bd1',NULL,NULL,0); -INSERT INTO blocks VALUES(310630,'09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde',310630000,'4f67cab0a96746d8b009f780be5831412c238c2c4b148b7db8752f1c2bfee5f8','51ee75dd962cc512bcfbdec32657f7439d60f3e613329a313f44970952abc904','aa7888db91b2b02a3d7235aeb2fc0de60399a854a04c89e7536bf51307a3d49e',NULL,NULL,0); -INSERT INTO blocks VALUES(310631,'b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be',310631000,'8faba1bed91e4c5125448b6a016751e9b1f83e6c9a6e9758b717ebaa2a738dc3','c513b62a3d7bd0b4fc649889deb032ffbb9efb6d209e4bf5e14ea24250f147cd','a5f943de51ddb9f952e92801b92e280d8355057bd888d67b84d4202708e67fbb',NULL,NULL,0); -INSERT INTO blocks VALUES(310632,'79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1',310632000,'00e1e3a4c4c9d8dc64e002a2552ba27a005ee5cd1fbc36dcc4b59e9d16a110c7','6f4ee24d93a37b3686c71e39cc7ce7e3f79a3a9a6397e608d74c3646b9358d62','594852600ac607a4b62b030a421303c9336641ad1bcf3eaf6b971892b9ca1267',NULL,NULL,0); -INSERT INTO blocks VALUES(310633,'e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1',310633000,'0ca32d925169eef800ac257a28162666842ec0f1107775ea26d5de8f6074c52f','52825a5f663c03d9d8027057b36564cf4be997fdc15b5b503d1701019e92376e','c3b986dbcd02f8c741ed822c230095e2384f85f8b84458c35dd2747cfdf47121',NULL,NULL,0); -INSERT INTO blocks VALUES(310634,'c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af',310634000,'1d6ed8dc599d0a2edec11893a1d6e502394d890cfb425b54c8e18e26c22bd9a1','e9c54a989efbd6b8234ca7f0fae5d39b7f83479470c90f2d43dd11288792da1f','f71f39f62deee0ddd3427a073057326771664934d75590809c0f0796ea0fa235',NULL,NULL,0); -INSERT INTO blocks VALUES(310635,'8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e',310635000,'f7579cffd83d518b2d123f1972a2d33c9e1e0672973d0112b485ac3895e40e97','f93c139e303a561ea8d29de69ea04dcdea0ed5ae41ad8ac0f6fdc2fe8817d815','f996f16496b47ccbf70ffc8ac27c589970ac369b42ef8c1010db46c64c8c03a2',NULL,NULL,0); -INSERT INTO blocks VALUES(310636,'ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31',310636000,'6a12a7e2aefe8bff21de544dfc773b32c667a85d7d7046aa2d3b77eb62913323','63a31a218d2b42aa278be0ff76c71bf572114c281a90431d952010b7e75a0b14','d84ef56606e5a88e804082aa6599c267fff4704642b565bd00006685ef6cfc00',NULL,NULL,0); -INSERT INTO blocks VALUES(310637,'d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336',310637000,'a9d05feb729df342319d0f9f4df1eb72c28f60c41caead0cbdb50b2de397734e','aaf47bc37b85c127d9bedf76b0900a07b29bb2a1300a12d92200e3f006e0b930','99e56dbbe5801899c6955e350bb6b80172b4b68a437f824560ff169128dd29a5',NULL,NULL,0); -INSERT INTO blocks VALUES(310638,'672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b',310638000,'a7668ddd027e8557dec79414d7f6748c357eb0d1e93a28fcae2a13d19fe14247','eb6e3a68506f9c0bd4c522d5537ea01140273c8b84f376cc95fda0c99c8d8c7f','078b3b6ce12d82148bd5bb9834f76bbcf4fca03a83116dd0e153667c2e69a7b8',NULL,NULL,0); -INSERT INTO blocks VALUES(310639,'d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b',310639000,'776581e6fef0013b9824dcebd414b27819db7a1adf285aa1358a0c46dfbde626','4618a0558955508e24b4e79308cfeefbdefcf4def0f3dfc389d66b335488976c','a39c88f3fc8641d3744b3a88af36af70fbbae2ba1f4fb767f3a1cd5f4a636624',NULL,NULL,0); -INSERT INTO blocks VALUES(310640,'474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59',310640000,'a4088753ec2b36d7dc750fa73b06d6966119c647887f7d551f0a0063de9b8f6b','41342d146bb15f623738e998c667d3bf2b51966495f1bfc948bfdfef93d27bcf','c0f045c019827d5b5cd15a26d32293bad9b32f9e40ad4b5b0f26528695743996',NULL,NULL,0); -INSERT INTO blocks VALUES(310641,'02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b',310641000,'4b9dfe1a7e0e1b4b25cf7f9f88491a116e07eba534b3493325d63bd47385b8b1','266cbd2f8009b1c950b4a0f5d7b1a9e7fee56a0b60feca824b5f7e4f69334435','1f1d6c3624f88605cab087414e4f6f254a5618b2aae45ea6134e43516a44542d',NULL,NULL,0); -INSERT INTO blocks VALUES(310642,'cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd',310642000,'2d86730c1683d1b55e0500c58baac0ccc3b7f1e7cafd4ba91ade00842f04912b','483e13632b7785262d09bbc9c55ec5ecfae7992d38b44d92b3b7b9dffc979be8','70266ac82fa8120f8415459950cba5a891f92b185d41949b1109aadc66d7dcf7',NULL,NULL,0); -INSERT INTO blocks VALUES(310643,'b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b',310643000,'aff408483481696ed082d4177a3884f24f99b01ea9d89813cda2d2e7fcd34a80','2d428ebef22ccd8e01c73c47d63ecc37614f5bd34907d6b5e821aa4b3d7a0b07','685e2c0a87db8ea0214c2191429804ff7f11145b3156a0d3425646a4dd7b13e5',NULL,NULL,0); -INSERT INTO blocks VALUES(310644,'f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672',310644000,'ad875d0db986ae2350a0cd34fc3c20e9db9db2259ab1e145ea6d896d968aa105','848e6511e3651c225508e11808f494e5730bff9072e37c5961b209f6ca5eedb1','40776d6f8094d5b1fecdf694b43142312d6f31c1b5d61e70ec19e70517a1adae',NULL,NULL,0); -INSERT INTO blocks VALUES(310645,'f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3',310645000,'a92d8611bc794c5d360cb0121223d44928ad0e6612cd6400a06965b670115adb','1e1feae6d6050b88b16c5df26ce029eda5fd272e96bec74d7a6139fd4c38343a','282d27b4c64ebbd5fbefb3920cc52ba386922099e50d1faa4e6f96bf49936a8c',NULL,NULL,0); -INSERT INTO blocks VALUES(310646,'839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494',310646000,'f41b95ef2301edbee5b23a9c11044ca8a0fb39cc4a43f277ef7e56eb1d8fa920','d3f50fda8401e46bd75e7d4abe1296363de460d45141da3075342c8bc017f8d1','b345dcb4eacd36f8f16e706ea93fcd31f52f9475b6055fd492674f2e1d21e00c',NULL,NULL,0); -INSERT INTO blocks VALUES(310647,'8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d',310647000,'1dfd0b93adf736f986ceab06a68824b9efeb97291503b05b326f028518569602','4fb604a40972ea2e2fe9dc8ffe24f8bfb8d77900c80ff8f33bb7a34b2a0be681','11bd85c511f9acabb48e97cb817dd089b886bf0e5a200014ba54fcfc9dab12b9',NULL,NULL,0); -INSERT INTO blocks VALUES(310648,'8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f',310648000,'2aa89ef15383a6417e2dfcaf0bf7504b439b0a0270942b86e962d30220f5dd6e','c9ba3aeda8abee31772f8a0f7cb5643a12eeb8c9fe59045bb0c9d49d5c69c3f7','2db1c60dfc41e2b6868b7258c7abbd1d4d9c5a492c63cafeda0802c8aa51f38f',NULL,NULL,0); -INSERT INTO blocks VALUES(310649,'6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb',310649000,'7159029d6e74c3eee2fce15ff8dae41263e1c4db016eda0e20ef63b0ba59e07d','1654a3cbc3954d23e0ca92af18141e3384277e78e664ad40f2867fcbc60a2d70','158ba0ba02bf4670c3863c8ba4f17da302454a33a343f0e5417db84e4ede7e07',NULL,NULL,0); -INSERT INTO blocks VALUES(310650,'630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0',310650000,'81fb324cdf169e35d7d233ae1f08fa00f880d5cb9e375fd20ff36658e717620c','d10f8ee8b2a804d4610ea132e890fa11bbfcd9582d059a77ad3b59c9ac93669a','bd14debb288ab6760292db9069d4536c449e5cfa1c12a5691f883f197ffe9687',NULL,NULL,0); -INSERT INTO blocks VALUES(310651,'abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22',310651000,'bfcbf8a4ba790bdf9f7d27b1a20c2acab287830f61523be9b76a4b2645eae966','d4ca114a2c4e1e43d82c0502548e9f9168e55553df009f846c652477104b3fc8','fdeccfb491199bce4f48ba5c277a60b25ff9d04c5f5e0444dbd8619812ea4b00',NULL,NULL,0); -INSERT INTO blocks VALUES(310652,'5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6',310652000,'47dcbad7a555f23477079be3a5ea3ef83913724056381f787dd7771e0a3b4ad5','6491a9bdd162cac7cfadb1930138e1714fef048d0b2b001fcbdcf24413110d42','58ed559ec63ad18957d120a82cd5f3487be62e8bfd1c7a333fe1f2ddd1c6e58f',NULL,NULL,0); -INSERT INTO blocks VALUES(310653,'149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0',310653000,'e8721460d27297ca09bf0026c78ed56b505b95d59f922d63ad8ed542a8aa8d66','fc791bbbf8c78847cb342bdb1273cb697c513c68ee6d280941031cc38d4d6354','e2966788a81db390cfa0317f23743defc5a90b02b2e862a30ce863a00aaf77dc',NULL,NULL,0); -INSERT INTO blocks VALUES(310654,'829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569',310654000,'0008b3d669bca8b3790ae93bee813f4fdc302ddc132caf32e51c6539cb316d72','dfaac3f5a38a1b4586cfe3ea5959b3d879d50a231191fcf46f75fec0b8a3329a','0b87085b00b5dd73c4a69870e34437e2183e3d55ba50eff7d34fc3f7f923be1c',NULL,NULL,0); -INSERT INTO blocks VALUES(310655,'c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55',310655000,'ecab44b42ca7a0f302ddc87392714a8b842daf98b329edfdb233ffbcb86dd658','5a9a17b6be46a48a00b986503cc922e945ed3e59a0fffeff477e6953e776ed2a','2f9a0d805c031c4ede1170600374c2bf4b5229ac71b5b27a4ab87a3e67e8231c',NULL,NULL,0); -INSERT INTO blocks VALUES(310656,'5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b',310656000,'559c96bdf5397b1fbd27e6c67c57ce9e97a95e335288f9bacb03d0b069afa67d','73e8b5247b6daa8b931b1b28610b6fee7e10949a1aa6a62d71e276929fc5ed11','f9fb148430bcbe08f21820e99843d2762bedd62477e7cbc500e44976462d964c',NULL,NULL,0); -INSERT INTO blocks VALUES(310657,'e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26',310657000,'396ea2b013e7a9bf16b5276990c4102c7385b43c964084c1f5eb6397c2d4e58b','c426afc816a4d8536d96d8ed39c75dd8145e6d93864259b017c1932bd3bf0687','c9ab3ce79c13bdf00565c06aece7fc7c5a781aafffc05c55a7153db560c3a3dd',NULL,NULL,0); -INSERT INTO blocks VALUES(310658,'579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501',310658000,'ff3c16421a8f61a3c56875f8a80cfd670f081f919fc9fc2af8b4f5f9f133f614','a0a1dbdc2cb08b59bbc105c44ebae0f8776483f2c1dba13a519984ca70a839db','9dc09bd94c9d1657bac3782e1114af0a15056ed8fadde6520d330177a740a852',NULL,NULL,0); -INSERT INTO blocks VALUES(310659,'e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f',310659000,'34b99e29c60046d9a128832e1faedd9e831a71d358cfb914400c13a837370f0d','8820d989cad56e3ec4c084d37c7d586355019ea8e5cee7371ff05f4e19972528','0aace83184349717cb211de8992d36fbc6a25a81df46c4f90c3ba6f3f668c974',NULL,NULL,0); -INSERT INTO blocks VALUES(310660,'d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d',310660000,'e891b77c195003df8d383aa2b6a292153ef421967b48d9ed7058faf2f5cd8392','f606b03288e72a208f5d44ef49343632cded5a190acc9784e7d44c3ce89e3d6b','654517d01ce79743e41470864e73d95b03c0d95491516189ecb8876ef71ae748',NULL,NULL,0); -INSERT INTO blocks VALUES(310661,'badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89',310661000,'d210c23a7243de978dd217275021a82ab92cde2193eec1ef1f7b51fcb04ee805','121ea9d910cd7cd9522a4c21056464d4b5831269d55d3ee93613f9edb80abce8','afdaf4562913f50b33e58c46ed749b3a841d1e306c3697dbffbac8631ba7f2b9',NULL,NULL,0); -INSERT INTO blocks VALUES(310662,'952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb',310662000,'3aa08456f2d542275957de7c3b11ca112a95cd6f9ef10db7d8b09f15329a5318','f2793e5e7ce5de99061d249b7eacd8c31a0b59c839a6f32905aa4fe955458137','11ceb66f10015594a7e5e5b09390c89155a3d5ba3bb51d6c39d46bd4d9d1e301',NULL,NULL,0); -INSERT INTO blocks VALUES(310663,'7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028',310663000,'65409754fbd2df007d8f88f589d655e2327f66b0a80054e3f901cfd6064afb0e','f2f60e0e823edb418f01614f56dc15887f96fec107ed52406627f035c7efdd21','85ba074ba8c0f28418326b310d16e896aefbfb5b8eb3967f167315636c6d4bc5',NULL,NULL,0); -INSERT INTO blocks VALUES(310664,'ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247',310664000,'95d04fa70f12ce0dade256651cc11fff8140a46b628966e9b6a51b38ec9e22d8','229a5edda5a8c504658c57bd7e776fb286c26031658efcc68c0e0bd80566e20a','12673c03aca38e253579dea035ad95bee24651123d197040093b39982d9e168e',NULL,NULL,0); -INSERT INTO blocks VALUES(310665,'8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8',310665000,'556990a4482613bc6e4b6a0d94969aea4a4f299031c3305aad91ffc2fb5899a0','b3e7615a7e9b22882a5d63ec2c1e4944ffa550aafb856db4dcd03f659eb73d8f','3b2be671c2390b0bff63b8f1ed97686a104ae65e2da7eb8d2486b1e6f7d3adf6',NULL,NULL,0); -INSERT INTO blocks VALUES(310666,'de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52',310666000,'f070cb9168ea3002a9facc00f056938659807077a8fe257958829e40dfd7d2d6','9f5771d6fb484760ae44a0b7141c89e288c483d5408e26e811fa4612ca68a3ad','6c65de23f4c8bcb130113144dd7f8c1c12a9ea06683ab0f08c092a25e42fa7df',NULL,NULL,0); -INSERT INTO blocks VALUES(310667,'c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83',310667000,'ec7fc439acb828fadd36de7918fd6503e978f76330e56b0434d28eeeaf5bebb8','67d4cee1acc31181740c2f05b12144c7184111c5c12b4c0fcd43455e5b1d1e00','b914fefa784e1dc61433186e78aad04cd224c3344dc3255b1c6044902fc00a94',NULL,NULL,0); -INSERT INTO blocks VALUES(310668,'699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27',310668000,'03a7ece626bd68fe45114048a0a7a528fb118ce22bbb650c9014e37312d2d75f','d352c080a6cd8f5ad10a897a2300f6aa87bee31d8f47ab9477a96b96935c5ef8','20dc9bc450deef2fd7deff6f38744ab5d1982759ba4d7240569de1d9b17d9b46',NULL,NULL,0); -INSERT INTO blocks VALUES(310669,'c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f',310669000,'ea0f0c31b8f007d93ea96539e8d922f32c98829017fa79261c5fd077ec9fdae8','780251573f61009e4ac61ee4879e60ef6cc072785e6c57c2dacdd57fb03520c5','1cd1e93e4867edf77097266bd0b5214ee4910bb461ca282a29e92116091f522d',NULL,NULL,0); -INSERT INTO blocks VALUES(310670,'9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944',310670000,'2adad32a5f4e777e309e4e245eb2479a999d3d151c9e8792ce166ea520529076','b6a1180e0a158145ea9cad059da2c082e2ae84941d0f90fb11addae85d081964','b1becce13f8df25d5d9fe5af2bad1637262f13902be2bb2397401c92ed99287c',NULL,NULL,0); -INSERT INTO blocks VALUES(310671,'4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522',310671000,'50e2196f8189b95d5ecb20aba76f9cab54ea04869c384f537c7790df812ae238','bf87e973ededd051c8bd23ccefb1de6528a82b1071aa3b791eb7c9263e2d8ff7','643ef0ebf5f419385a02b483b3709976d36a01ea7c79ebcd3b05468e2bd7913a',NULL,NULL,0); -INSERT INTO blocks VALUES(310672,'491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa',310672000,'846e3f8f36a3ae9ee67a0c4c42dd055865128928bf4985a365405922a0084c3c','faae8112e80bc60f69dbae4257809ba549b0fc2b4927357945392e3843d34192','600dcdc7484062a7487493c2b8875353d4f20d97d3f5f066384327da53f98165',NULL,NULL,0); -INSERT INTO blocks VALUES(310673,'03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5',310673000,'c428b66bf0e998d32add95f1fc2c159ca42a2d8c8e8742a8ba40ae36d56def54','1614c8d076a5878f09a0755de3d774e2c3334884876b3b6d730ce1dbb910b2f0','19df6f4a3edef5cd1b966f694707ee4bb4dd58287f6dbdc4c82782ab335d61cd',NULL,NULL,0); -INSERT INTO blocks VALUES(310674,'9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c',310674000,'05cc21de553be3fadaa55748f1fbcc5038d5cf04e68912a4af0b61cf501e5712','2d25ca16358d0209557c678cd2f9826d9e15f45ee9bb1211adea973da62d0116','b2fc94b43ba18452dea194dc4e39d4887a305c096a3bfa33100d3c0a061c6524',NULL,NULL,0); -INSERT INTO blocks VALUES(310675,'e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21',310675000,'b28e9d1b35c5fdc969d79e47f2b909f74dae565b2527d11e7490a13942c6a583','bc62362dfb5ae26d529f4c5ed88f8096de03718447326cfbad2a807144c1889a','1b89cf5af3e3242102873babbac0c7fe9ae92a01dc8ed1092dce5d30cfe4a964',NULL,NULL,0); -INSERT INTO blocks VALUES(310676,'312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1',310676000,'69a187e7ab5ec16a9cc9fd1a987619c70aeec67b38ac78ee9c0ec9fcca14ac07','d8bbf9bb6af7bf95569dcf56fb8fdefca64695b5c021bb698a0c6edee9e447c2','dd6d9b56db66c7da78e06cca8e85ca3d54c2e7a3fc75b1b18e6675668a429559',NULL,NULL,0); -INSERT INTO blocks VALUES(310677,'4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a',310677000,'b4638a8ac7c0f0adf125162897ab97e40f4a0ad293f8a28b026deef3626a5c8f','7c5bc34c11f251b3748c337391be8e8f74a0399b3923627ebf9117e9276af31c','fe3093eec8f0789886747ceb2ffce0e0c0b08f3e653076fc4e5388b4f501e469',NULL,NULL,0); -INSERT INTO blocks VALUES(310678,'d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c',310678000,'8dd6b6f83315d469df3b87d07afb074b2f0c72cd4e62b3693211d63280d25e2e','41eb202a56ae084f3cc1457d3c17cb7eb2214a8cc385574f97a5d0913086f931','6b720cb22bf2e7b8155262983938bb0c589853b845e598f3ca5fe572bf54671a',NULL,NULL,0); -INSERT INTO blocks VALUES(310679,'be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b',310679000,'28444f40446d25ba0117dc6c65b276eab758071f664f06e7c8b7a7790f7ae7e2','a27ecd72192938a3eda2a91456903b4bd0a1b277166e38937262a7c1a5fab580','57dcdf6ccf9a4718f5fec3a7858e76f1f3324089ba416d10df73039a1ddf9fe4',NULL,NULL,0); -INSERT INTO blocks VALUES(310680,'239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8',310680000,'03abd766908511876abb9514cef33bf4a6b133d7d5d872c2e6568efb383d02ec','19abea6cb809e0ae492acf291a5dba572a871622f4c5e675557e8d2f37102e09','df6e1a719dc7966e07baaf047280dbca0f4197a42c41991d33b0906e22a752e5',NULL,NULL,0); -INSERT INTO blocks VALUES(310681,'0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41',310681000,'d2945f562378c9baf4f2572006bc807e93656dfd8743c87c97d010e664318779','7f0276b2f2d61b95e407e95777aa4895e887111b0281099b9c5a44dbcd31f22e','d501616cd190087c222d2a87eb4688069f6839d68b171c482a44b41a0df73fa4',NULL,NULL,0); -INSERT INTO blocks VALUES(310682,'9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55',310682000,'80de0d2871ef1227030758dd8257f30ac754612734a6e56cd9e078678e3af0f1','e9cd2133c276de01869a39f4c703d2f8236b0b1b79bcfc53a4e3d8967785be9b','d56eece645a7a7891d0e3b3f2ef8d1cd85777c1fb7fc7795b405f5288016478a',NULL,NULL,0); -INSERT INTO blocks VALUES(310683,'ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511',310683000,'536fb911d46abe4125c8597e0a9a14d374bc83ecf17927e509cec7d3b41004e5','267450473f906200e5c2c6912b2ad40150573506e7344e632d338485e3f78192','65d2cba44ecf97dc81f8b80ff8392bac96ff42353e0fe420fb28ba5979b2c9ac',NULL,NULL,0); -INSERT INTO blocks VALUES(310684,'d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9',310684000,'87bf3091c4a6839a0e63d0a45b3a5eee0d4f5ccaa84aa9a20703bf0e11ffa914','80f0ef1728184f040fa9d640aed74db77ff126c31413c88816fc0a3b01c47eb9','8199788e0670df13796f1217e83835358253d56babc33e68a0de05ec95ab0fce',NULL,NULL,0); -INSERT INTO blocks VALUES(310685,'f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8',310685000,'ba962d58c2a54938f6c8dc1b64addbb21d13b6e462c6966362a026ddac50af52','b8b940808bcd9e0a6d5d3b0dc001b185c7be5bd862d8ccd5c1860916b7d666d3','40d834e1006461806415957d6b415a1ddafd2a0972331a237f436c6a72a90e6d',NULL,NULL,0); -INSERT INTO blocks VALUES(310686,'a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca',310686000,'ca8f687a5dc38643f240018fd6c72963792155e39ae6a7055f8cd7e3265dcb20','8fd8812c2f3696baa9f0f5714aaeba990fb7a1711c583937002babe776964c05','46439879e0eeea01548fa97d7668dbe66d8afaba9fa5dcb9e0f7039bd34951a8',NULL,NULL,0); -INSERT INTO blocks VALUES(310687,'c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8',310687000,'1f3f3f92e37c9cf9f195b70ce9a0e9d0148fd3561f55582e9666b7e69a85673f','2215a8448764b62467df6b53cd807cc9410850d73d728a81c753eb70de99e486','c434fd4daa8af4fc42a9de10183d533b86bfefc1a8c24d9b96787f39d91b163a',NULL,NULL,0); -INSERT INTO blocks VALUES(310688,'3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822',310688000,'318fb29772b5e85c71e2ce29cc40c6d3fa191b58ea2ad949c26d2f5eff6441cf','9312287eb460a866f6c18b0b28dd23fff23d408a84422a87d69a561447c9ffaf','7aaa6e20153b0aa576bd7759167105314c75f24491d5a04d62e94f81076ea237',NULL,NULL,0); -INSERT INTO blocks VALUES(310689,'d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df',310689000,'027206a2d51a290c54ee4a2c6207fbcb3452038491704fba8b02bef065596d7c','a7c5b3bc4269d9a63804bdc4e2693fd03e4e529b183510685df746092e94aa5d','5301118c9aa8696231d78808a1d9c8127c5f096cb5e0bd4f3a72d400d5db99d0',NULL,NULL,0); -INSERT INTO blocks VALUES(310690,'0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462',310690000,'0e6ce3eb82baa1aacc53cf8c19e9ba4d11c0d5297d70a1c5bce188e515936ba2','6310ce87234c11efea223c58d571cdbb3f04b51a3056236cd0f22cec7bf1e5c1','6b93c3afd6d1b2f3fede8962b6083ed99ee8f731058a5e60b7a43b2594ff65dd',NULL,NULL,0); -INSERT INTO blocks VALUES(310691,'07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e',310691000,'86d4a3256d111bbb118869227cc3a609a45d7bb8f207e7426420d38d57a96a82','774242c764edd3560409137905de9c9d818364aa94f62c47a621afe1087136ac','1ef6bb05942d114320f97145e138b48f8049648fdb7a498ed1190d7e480d9fef',NULL,NULL,0); -INSERT INTO blocks VALUES(310692,'29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932',310692000,'f9c6d31ef1c89ecbe584020acb89d16e343a06db820beb8b3471037bd7bb5a1f','df166db54b869212308c6a48d3ddb80bc0a84be52434c46d5e6e2d6499167bb0','a13952e453dd31b30c330a9e67aabdb61cc7b9eb28da51007e3a520da1117fca',NULL,NULL,0); -INSERT INTO blocks VALUES(310693,'c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1',310693000,'f3d27993aa304802c36f3deddef3baf81edb04bdf507a2a5e6e739443ea775b5','992af64c887f105b985137b441ef4a3af3ff902f5dbac355b91bf0ebaa234063','95061c25cc54a351a7a22cd4ff4ae7173864bccd1b6ea7d8ead540b8b0587781',NULL,NULL,0); -INSERT INTO blocks VALUES(310694,'586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0',310694000,'2571bbddd1991d25250bcd1789cd861bda55aeff5e70c90fd854bf7850b478e8','52939845593123714b4bd665600642d14b61a384befa3498c7582806448150a1','4fd7a64e2d1cfea79d942ac7b358740a3c066cd72c8ec30133cf420f51053212',NULL,NULL,0); -INSERT INTO blocks VALUES(310695,'a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538',310695000,'e6a29a3329dac5849c6019688653cb9179792254ea263d908ee1840812eae1e1','9b08253a46b87ab3df60af60b519dd0c689c0acaca38bcc33f01000bf6b871d3','b0a954ecb6f6b298444e634e0e35c8dc8e642d4cc766e403d18e013081e38552',NULL,NULL,0); -INSERT INTO blocks VALUES(310696,'7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7',310696000,'122e4a4d499019a24ee9fcb024541d3ad30e06cda616f82b21a5e18bcaf58728','deb12f7c45ab5944a6e08fb2933d3a435860f9e1d8a758486b5e5995258ca973','c65d6968b5674d0faa3ba0ced721c7bb0e452d06db2cd4cc0c87056b42cd81ce',NULL,NULL,0); -INSERT INTO blocks VALUES(310697,'4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304',310697000,'ef8ebcfad12ea2bdff5760d7a28fd6e0c9ff1f80c5db666df99daf73bb758584','663e67da5996a4c9877a6c6cb61730798695aee9d89674823917dee2d1ab9708','1f8c4bf719ff7da97a2ae86354d1d9453f98f772b3302afaf87143d198d2c480',NULL,NULL,0); -INSERT INTO blocks VALUES(310698,'ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53',310698000,'7a3e7800ae592d461c8d4a90597d65257e14082534f0052e862ea6665151fa65','9b6c282c7fb96cbca27fe6b73253cfc31b93ff71dc0d116ebd0d661c33adde58','124decc91575b2b3b4e5c82252f5bad4c3fbad53d82e2cb387ebdf516582ca73',NULL,NULL,0); -INSERT INTO blocks VALUES(310699,'3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d',310699000,'d3ea9e3e4912d71dde006b1f1b2d412d213bee18c8c7606982a08f405c932a12','d91fc03fd15e2ca4fc59b7be29586b0c8f2942abca45ccb49f2fc84e3eff8f94','b84e80bcae7f2d7d19a8a6deee33b8836bd6bd62b53f9a8d38995bf458c39b06',NULL,NULL,0); -INSERT INTO blocks VALUES(310700,'4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5',310700000,'9cac238e8006f150dbd1f09f1743cb50e1870775d67a256ae5c06e0b72fd0b6e','1977d48057c66abe87f0bdffbcf4d501bd4b9fe138c0bc381409bc44bd503084','ab881a7cc3381dbeb809e622050540b87c404a8a723334e4d6b46482d54f325c',NULL,NULL,0); -INSERT INTO blocks VALUES(310701,'9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1',310701000,'562a0f298a796b936c21bf552e6945ed2263b62d4022f7a072dc6a4790173e8d','6b6c62d0facf03efea19bf2e8fa69ecd3c433d45a0ca6b3ed57ed0e5d69b1e2f','965d20b7bbd4c014879731b7ab95f5b38335d80f74c8dc8ccc49e9222144d2c4',NULL,NULL,0); -INSERT INTO blocks VALUES(310702,'69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8',310702000,'7cb406b1ee19e1ecfc41009f312d918ac0574b92809d99dbfd99bac88992a4fe','0b912b59131e6aef7fb3313ef75bc138dc1f612d76e77cf583074564ddb6d35c','2a4a14311bfbe235c7a867c69eeadf9d336667ec2abd8ecd3e9468897b0064c9',NULL,NULL,0); -INSERT INTO blocks VALUES(310703,'b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218',310703000,'cbc22749655ce8e7fb2eeb4d1737a04dec7bc096ce84b00bf83ca4c7040f448a','b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786','704f5a0685b1309b5ba2a9082d9706ae7b9fe4e7b735a008b3c450eeeb2a4460',NULL,NULL,0); +INSERT INTO blocks VALUES(310506,'9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c',310506000,'a6482917514b9d828a9981f8f83df92259e751a703f9ae164ef47ff170a19d47','a6cab6e8bebae804eb791b48d0a484f6526553e3cce266b54b40afb32a02c68e','28e6332ddf3e6b0d879fa141af8cd252b31ee05a93ccb5688ce6ee2d690fd132',NULL,NULL,1); +INSERT INTO blocks VALUES(310507,'015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93',310507000,'46023f1d6accb7aadfeafe56c17609f1d76aa2d6a1dbf123f4b0ff1c095d568d','6abb9b0caedb98bc7ad209096e5baba6418d80fb11ab51a8124d2e87e9a591e0','f39597e3a242178f633794a4a817394e0cbbacd7e971ef56c7590284ff052454',NULL,NULL,1); +INSERT INTO blocks VALUES(310508,'40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf',310508000,'42e33693a0b51c869b4d34656ee1c86b3114f0e4f600d577ed2adfe0cefbdc61','55c18d8da0b5d415d82b40229995123dcf2151b91a8cf6c4e29e8a03c32a847d','3a5e4f099980b4f437879454741f4fec540c39d3636916607d05db25c4b3f163',NULL,NULL,1); +INSERT INTO blocks VALUES(310509,'4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee',310509000,'235d0dc029e4caf127d479107e93a3f46e87aa5827f0f2c0b020d56fe9ece29a','e8a5ca9c861bda1033047cfb0896cc92d694d0d32343e54b78d861ad5daada14','679dc0bf8b5e96898069b27791cab667ca6bbf5cf070bdff7ef61902c3deb5e8',NULL,NULL,1); +INSERT INTO blocks VALUES(310510,'b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2',310510000,'c7f578c09530663c28499e2ee2095e887e79ae469c2296cfb95f0c1dc3920a34','58e8efe3ac6c19011d997f77a3f38bfd99ccf17ff15615ceeaa8fd1d02f2b73b','4210e9160abcdb0b1590a7c151d2086c045e16ef4d28e1daf82736b4bfbcd134',NULL,NULL,1); +INSERT INTO blocks VALUES(310511,'e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c',310511000,'6239525a9f6bbc01b5cbe0c5bbec47d77c179c1e03eb07f079902f4be6763124','cb29377641d10173aed43643d32f6935da6948a7fdc854f4c5f7f3bf8d6f9721','c81f12b1a5156c3ac9c4bebf828e3f99b21e05437e107ed7ced5ffac7ae55ec7',NULL,NULL,0); +INSERT INTO blocks VALUES(310512,'8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5',310512000,'d35febbe0916a862b9ee2c4f251bfd1bfda7c6a646d73baa7cc49c07a6c516c5','4f745e593c05074836d20561b50b884ffd4e1c17eb9666ace1c2eea5f51e7d50','a4130c3b9190ae20f97e4f0fb1b0192e034e16702339a28dfcec4c8d1723679b',NULL,NULL,0); +INSERT INTO blocks VALUES(310513,'ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66',310513000,'cd8114c0a364dd048cdee17ca46eae739f0cb6c627a6643c471700aa346d8acd','e82379e2bd481f39e310670c046d855855c476a4bd0dab621ea06ccd2ac136fa','09dc56829f629a2a085e9268064ce0c72680e16c28a3eeedeb2bc2d4612bf89f',NULL,NULL,0); +INSERT INTO blocks VALUES(310514,'39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7',310514000,'365c48b6ff26da8d5bd9b4437c7aa70821c71d6e7b928010557bef02599084cc','c99f21e4275501cdcadb134b8a409da50024832c8ca849deda3161d8b026f1a1','73bc3d0a3b58d7ce8895a184c23cf15ab6d81851378349e93e4ce1b55cbccb5a',NULL,NULL,0); +INSERT INTO blocks VALUES(310515,'57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8',310515000,'8634b0d6d0bca6baff864b0f840df2b07edab19310ad30f09c377d49c4cf31e7','ee33ce8f40db45f132b15d60daa3935ee8da4593c31f65ea269687594a2c5051','8e74dd022fbea59b7cd8f19e411d6111f50e5c8210d1bf2d7c5454c9f0d39e3d',NULL,NULL,0); +INSERT INTO blocks VALUES(310516,'ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7',310516000,'51192dd22fcd1d3e93abb964beebcde830dc1c6f6090f765455367df8c3d3236','a461fb607e3e3480b92d679204388b0aa2d2785cf5860e3539be8b41e1702341','6efa1bb98927a933710b1723a8614d581c29aae3e49c1642efa3ddf66e772f51',NULL,NULL,0); +INSERT INTO blocks VALUES(310517,'defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407',310517000,'1143898cf831bd8371c3c892d8c8d7606199849ff7a9a1f031f9232d7c411ad4','9bacdf0026c8297570a7d50e6c372bd5a04ed7f748f820b33e7e93340ecb69fd','0a11cb375044ea73668a1e0c52be2963d368356b31ae5fc99005f17f54075689',NULL,NULL,0); +INSERT INTO blocks VALUES(310518,'41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5',310518000,'dd1f5326fc49b284dacb6d6738599a6b4592e5250c5bbde45b88482a13f74373','66af0cdab6c52ca6b8ce731143739553d62e1986de0478e346dbc42e570f1503','e5b8f337585825b72253026901d1a2ecf732d23c11d236bbc98a5bbfdc7727ad',NULL,NULL,0); +INSERT INTO blocks VALUES(310519,'9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a',310519000,'19f3569d9b1512c42118014c8f6fd1562e61336d7707a0838a35d0e8513f5b5d','67662c882b46c7a5ac62a01e7ca43e1290e1fee20a68ebbd1011b93b9f8d00d8','7c8c064400f1fa49c5ecd3f21071a71ba69ed09bf4a616b5a86a8e3ccfb54237',NULL,NULL,0); +INSERT INTO blocks VALUES(310520,'ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680',310520000,'4dc209a7fcabd4ed54f9702acabeb0369cb9872342e101407241c71bf5f5023b','4ae19f415141f11f6c3b72d24512114ff7c06d201e2ee94aefb58e9f1921964b','c0f245b00cc0c997187432e32912d4e72cdbae89a15c62df0763f4d552125a87',NULL,NULL,0); +INSERT INTO blocks VALUES(310521,'df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598',310521000,'d237ef834b20f71ef49c9f35e1700bcdc59bcea9d340dd1b83b2046fba5c4a49','243a864c8243f71fa9cfbbbb25e23547337dc04b074d1aae2408a82b11ad3c15','9dbc54408689848146690f88c67f212938670b02bc4105b5375dc04e17802e25',NULL,NULL,0); +INSERT INTO blocks VALUES(310522,'6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21',310522000,'396fb8702db3ebde1fc334fdb622f37f1a020d6050850ebb424bacbb6acdf163','f8d7f3eeef9c11dbb8c8ec8bf5c06e4eacfc812151526c44a4208bb8d585a973','d8f9e110a1275167c10ca56de86343c1a2cc6c444214f75566955b01303c0367',NULL,NULL,0); +INSERT INTO blocks VALUES(310523,'0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453',310523000,'716de5998e8b20af5de5df56a9a881d392481f0b1b261d3fcdb51bf52d6f69f4','065b22682abbad6d9076204a74a4be79acb71b8a8fd715ad334c3351f35f75dd','4e1b02274bf01a7e2d08afe62a7f99f5ff4b107d131323bfb7c6b405089c4d6d',NULL,NULL,0); +INSERT INTO blocks VALUES(310524,'b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655',310524000,'012bb0e462fa1a4a143f13b750bed77ac06885731e04b47e951023a8e749460e','7b1d9d04b71c2b8f7aa31cdef567336e6f1dfba44fcb4915696ab498c72364d0','d071e4d339d393a000a0bb261fe51fffb5da4ec6d8c8f23cb0d868ef45e86594',NULL,NULL,0); +INSERT INTO blocks VALUES(310525,'2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9',310525000,'34fb519efe88b96e003c466c03520229ee428f4a9ed3209c07f6889a8b2fd9df','52694ea9983ac76659645946334a071b7b5e86e295155526e3a27cd87d81cc87','b0293fbc9f4cc6206069cb15ff54d6f3aba5008397e191ff09200b82751ee9ff',NULL,NULL,0); +INSERT INTO blocks VALUES(310526,'07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d',310526000,'e07a98f8ae58676a9411517423e134d3d1fae321c2b43f51c25333e3c1ff2202','7c47526dba085953aa0d343f0e5b51520d69f92b3046013d0fa0ed6632b74b4b','d2e0aea65d2fbe62274725d05c480ba1bb66d3afaf02afabb2dec9cd170860d2',NULL,NULL,0); +INSERT INTO blocks VALUES(310527,'5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db',310527000,'bec0659c9057fdca682d4d6ab1064ca6ee5802462d154657a3b276fa1be1f673','8d0d0b180ebfe5738144b9e1f8e81f74a90cd81fc7bbcd6490881b8554ba12b8','3c436fa842ef6ebd90e6c0794f46b0d5583341a406b7b8712af3ef7c79206aaa',NULL,NULL,0); +INSERT INTO blocks VALUES(310528,'a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5',310528000,'abe61beda3ee6914cc347edfd2ce26a0ab1c5628bddae3327f88043603f29f2f','6f1b36c493186bfc813d2e3638d0fa2dc68c2ca7f0823bf3935a2c7d2539da9f','6c5e06f8428a1f1d7cb00c06b7b16d53663c6381f5f09f2faa40a0931df666ff',NULL,NULL,0); +INSERT INTO blocks VALUES(310529,'7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b',310529000,'088fc3809dd410e8a239e2da6f1938683c437c46f95975a440dcced41f0c73ce','7e4232af9977eb670466868d83e6df5ddcb39d899f33ef653b87d58b422ab64d','64d3e101b025913dfeaeb36d526e52f52a16fc846bc1bc85078ab5d5841d6fa6',NULL,NULL,0); +INSERT INTO blocks VALUES(310530,'f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110',310530000,'fcbe1d8b65bb77008da77ba5010c8ea58b23bd7789c734961e287e59b4408816','7e4077941dd95a2b0e51b0ad680935a7232fa5cf31f664150510172e4c2e6da1','36b7fd1c927d3b134e688322f0120f5ca7187d3fa7100829bd452f796399817a',NULL,NULL,0); +INSERT INTO blocks VALUES(310531,'764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15',310531000,'d8e06cd95b4938a8f555867d4a71852bcae6f10c0fa90ae73cc3479ed4930024','1245439b0d3fff0822ebed6e6ca34f99f24194cfb36fb2649ed61b0ac26ed7a8','d41b8fcb01d237cc1a742c86825c22547f8e71a0c48df975e3adb13db69efd08',NULL,NULL,0); +INSERT INTO blocks VALUES(310532,'4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836',310532000,'3b6b5430613573b986db19a9d39001eaa83c7f894da2c533e4bb507e09790fa5','6004fe4cc5ce025759106802ff56bddaf546e7a9d71510e49a4098766a794726','e5163e57a82f167d43ea006137dab0ffa9639d988a97bcabcf351525bfabf47a',NULL,NULL,0); +INSERT INTO blocks VALUES(310533,'4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912',310533000,'16c00e17f045fde4640b38688a680467ce55b8e5da29ae04a1d60f46791c0f5e','b9a73939683499b11ce35245014153232ddde14a49fbcc8cdcac3f02c9265a72','6f857fc829e68f39bd141a2048c736511e6a0a1ee6eb9b2f3e5de5345b0cb5a0',NULL,NULL,0); +INSERT INTO blocks VALUES(310534,'2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad',310534000,'559ab2ee9e5f74830636547b35497f32e54b79a2836a15abcad6d1f7219b134c','36dfe8e8614a4f5046330df939031d7618e0c5ec9a5e9a23adfb5abf81b17832','f540e77c6be63630a5ac6037eaa21044fb95b707d9e71d8b1bf60f2f2ca196cd',NULL,NULL,0); +INSERT INTO blocks VALUES(310535,'0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce',310535000,'6297330a254c027ea604f2866961e47eb7c1ad1d91e14017c5c271fffc124f4f','9be9aa1d1972bdb4febf132b2003528501375ed67a70a92efdebdeb4c1b98a90','487033cfbcd2094f7258e399bafaccf40dea7cc539a7c838973d6512fc001fe0',NULL,NULL,0); +INSERT INTO blocks VALUES(310536,'dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018',310536000,'2fb53adbae88c7732ff5fcd0d8f1293c77bca3c724a24612518ea4eba8f8c0cd','f2187b1c129b489914599faed5415ba0d52a0bc44e49453df54648a30f505ce2','1b526baf47b208323ed9dee940b51d3ef9a7cebc65498f9a19024d5993033a8b',NULL,NULL,0); +INSERT INTO blocks VALUES(310537,'944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d',310537000,'3f00c364eca726cd27673c7800bbc826acd15a2b89856b4761d87afc541da98a','849255d12eb06d2dbf9ebd04fe0a99602216890abe7cb6faae4b13fa3dc0b3fd','1e7d95c74d6cf6beb3010a52f78348c609381680e4d485261a35953f202705eb',NULL,NULL,0); +INSERT INTO blocks VALUES(310538,'75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd',310538000,'3970e5757fff4155578e8887d0afd1b54341522ee330b301efbc6ddfbcccf80e','8ab5b08a8f5f57d62cc8fdaefb001fb34757bc7dfa355311af7e993338c15e80','792a702f3508262f0551de97be9a4a68f344fbff979a8647aa9c90aa406c7c28',NULL,NULL,0); +INSERT INTO blocks VALUES(310539,'338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3',310539000,'7dcecf391af529114932f3501fe2d1850d8c0d0dde8484ff484a989a14f773cb','f889de9308ec0bbca7f214cc8c81030ec5317cb72dddbb97dd3b00a002c4fa64','febd20714599577f7b253d99cbb5166bf5d1de6df507709b5ec542ef5debe1d3',NULL,NULL,0); +INSERT INTO blocks VALUES(310540,'0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d',310540000,'cea510e4d7985dd66e635e41d5565ca3e61e722ebc49e989515f6de67ceb7de4','474f6e2a51277c8f90f02aab78058b6b9c7e3327d0cec325ff6002e058148496','73f773b8355f1ebfa8e603d999672a760d7d18fd625f222730f136030e64e85e',NULL,NULL,0); +INSERT INTO blocks VALUES(310541,'ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453',310541000,'54d1e29f86b81368d41f033cc6b32357e20ac3a1deea064917e45e72eb846496','0b004058cd27a1be5261693a5203d69c14f2ca5b3105d21bf28ef3f49273f885','65f4a7188f6120499aab2c4391a19144cb91e874a8727c17afdf9513304058b3',NULL,NULL,0); +INSERT INTO blocks VALUES(310542,'7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2',310542000,'33b6c29332fd01db5ad754d5749cb539a0cf5d5d33bcaae36fa672b04deea305','7553c0132cfd45b14cbab4f1e59510933069a4f3b82be8a0e2f13d08e3a06cf3','137becfd281afe3f548c28a90def5d0b48f7be648ee9d05039f59b1445a9f91f',NULL,NULL,0); +INSERT INTO blocks VALUES(310543,'cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2',310543000,'f4292ee5fca358df10710105815494427470ccfee0f411a84ce53a11d8a05fb9','f7e56981d310a7b8a06ea7ce6c4d4091ce35e4a8023ada8890e952453dae8201','ab7557c521506b8d0e4f19247b027764de58fc3bad90fb3ab464be043809dbeb',NULL,NULL,0); +INSERT INTO blocks VALUES(310544,'c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6',310544000,'08a08208b1b3c32d6ace3f59d51a9d038f08e993dd2df5f7c88adaeea0b1ef0b','bdf0fae7bf5083ddc2a99a4a7efbaece20070f0145e44b67567f71c90b29ca2e','d064b5c40cc92a4fb4f46da1a72a9c7b8d8fb4365c462eb486b7ccb5f6ca846a',NULL,NULL,0); +INSERT INTO blocks VALUES(310545,'aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a',310545000,'2eae28fa50bead38b3be859f5b5659af380c2aa008bc4c3d19327b0786ce5241','9a25f3b3bb017cd926e1fa8b768324a147979f518208c106ffbad1b5fb8d502d','06aa09de6ff2165e6afffa8255b0dd8977d91e01d8a9bb8cd12a4bf10c3152b1',NULL,NULL,0); +INSERT INTO blocks VALUES(310546,'20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d',310546000,'5d71fc815f19de02f829ef5174847c7248a56dda7440ec3d0faf20c1c0148d1c','cff6edc9625c136443e036d39b1ed3cc5e76a49b919795f05cb92e508e4cead5','554a964c5f5d6cd19d17bd3a32935755ded976712b81e4a1ce144e95c248a9ad',NULL,NULL,0); +INSERT INTO blocks VALUES(310547,'f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7',310547000,'7da146bee7d9b794d48330ebb9613050e063f5414fa4c5072beec6a11394dd21','3a305e7a9b8de2e2ec9f43206a08e257a1e17c540f0e47625b64feafc3413daa','6a13b92806ba1bd4bcfeca83c69c0bf1fb33dfccd1c8d1bbbc6e9274777e391f',NULL,NULL,0); +INSERT INTO blocks VALUES(310548,'bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2',310548000,'6b0ada4ad9d4bc710468367b57412f2fe7a5d3b84a7088a48e1388df2ef23956','6a9672fcd678d39907e6c01137f2c6514ff99929cf60171c1760e72dea1b1f19','17645c84ae7d23bdf7686b243a13665487fffa2b948df52747a219ce30d67577',NULL,NULL,0); +INSERT INTO blocks VALUES(310549,'8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979',310549000,'bed2db4b5cd892b0ec3dd1ae7b17fa183914afa953cf650714a66816b0426702','d16823e9ed0b346917aae45cd173cbd173d229f284cb95ec7af7c9b159b2d8c8','64e4861d9bb959e059d64babb52078f7edb6e8e5e7e135898347ded7ef84a514',NULL,NULL,0); +INSERT INTO blocks VALUES(310550,'08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914',310550000,'b44be21bf36655ba56d872d923c2cc0d955c274330fe4172318477353451ce66','6ce86b2a35a931348e98118c7426950ad4ee1a9fa557cd3c1eab0c4fd8d3f144','781555546e8af008ddb64755b04af7c8ad597894b810bcb2b89af3498c950343',NULL,NULL,0); +INSERT INTO blocks VALUES(310551,'cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b',310551000,'45fb127ce53800c27854f4a24ee639afac2f164c38b6abe1b521b919fca85c12','49db288f7c65afd8f99a1f8e6edc85dac9c599d27be113df4b6246f9232a6056','96de7b13565592af3e11f500ef100984a9189b4b663620c32772ff2cdc8d343f',NULL,NULL,0); +INSERT INTO blocks VALUES(310552,'d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d',310552000,'661f0e7a6bb2808338d7a8e1186d92f3de98a4a7a8d071d7cb3defc0b7322e81','f5ba7a3fdb9394f101d5187b107ad937fa5a224c290119cd76bb37710b1600a6','409b3d49326eefa621b507a156703f6fa88298eaabadaf2d58dd52e84e732354',NULL,NULL,0); +INSERT INTO blocks VALUES(310553,'d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2',310553000,'d1ad6dc986674f2cef38ab916fe5299fe9c91e7559e6f5c90679bb9b14be6e6e','b1777df226b373535e3fff13e4379375cd601d0cbc1a90951cf288d21eb66aff','fd9489d60de15497ded952349d960cee9fde461f22e00417587ff5b1b6a78d68',NULL,NULL,0); +INSERT INTO blocks VALUES(310554,'7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65',310554000,'d0ea6c81ba15b671216ddbf274af820c8740ed1352c6fa877036c4210fee234b','870b61238a3e7c740fb52ba62719724cf95250ac22a4705dd88a1870f560fa1c','cf9b7f176ff36c20a9b655401a5f28e9f8f6e580352246a5ef3b0a3e4ca51ab3',NULL,NULL,0); +INSERT INTO blocks VALUES(310555,'c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa',310555000,'b782c3fcd7ece6e246d994249391222e77b3ba89c4b0e1f8d868588562d9d069','8b3bd64e05150c476d55dd64729b8e20e7b8c345c35c723392b194785472c6a3','0739b7e81633938fb3a3c19a1ab2a2992c4be548fff1a8c509368b2820c2f7ec',NULL,NULL,0); +INSERT INTO blocks VALUES(310556,'4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a',310556000,'c23d1bb3810c83bf52f05a305bf2245549f850056fa42b22f533484853b51435','a858a0bafa17a74c79b65ca07ad3418ac201e5096c87159bf789f40c3d84679b','90d1102e2270d0c4da5ea8776458b88788eae8f3f0782745e8787d9af8cad706',NULL,NULL,0); +INSERT INTO blocks VALUES(310557,'0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382',310557000,'0eff1936c008135db443b7c7900c83e244cbe5c13ccc062255309e9e4742c95a','6cc6e826d65d96cd9546e3e459934acfac6456a706ed5423da4c4ae0c71feb83','f8a9faaac3b84d412c9f6841df8d3d9ef459dcca503ba8ee421a8a66049ef2cc',NULL,NULL,0); +INSERT INTO blocks VALUES(310558,'75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15',310558000,'732c122f1fbe6087457e195611c22bdb6a007dc96f9bcad2544472f9f83b1123','56c4cf4c2b8562bd4e1721cbcfb9faa7c67e31e6f1abd95525084cc51dabf3b1','ff416feaface22b7793ed465ce37823983928f7772279500e45c220745f58b5c',NULL,NULL,0); +INSERT INTO blocks VALUES(310559,'6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc',310559000,'41f3711def550b4fa5f9606f5a0e7e9da30decd64b7d0ef7b474480844f86951','7d1ba0a6152887e4a66e003c7444c35fd14a9ed3c48455e6ccd8476ff232cb55','755270e2de4235ca1404d1243515d313deb747f3212a8861f9ca94fe074119d2',NULL,NULL,0); +INSERT INTO blocks VALUES(310560,'d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec',310560000,'73e9502818b90048582a9f5f1cf3fd96b78acaf7cd2289450722c3edfc875b21','65eb78129546514584c78b914d05644975681daa08d796aab35e3662a4a9f387','ed86c1d022a5daf1fcc1fa039fab1054e0b1f0b45648544d778ddf10571d7e7e',NULL,NULL,0); +INSERT INTO blocks VALUES(310561,'b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee',310561000,'cf11cf2caeca0523aa3dc552fa0b9457b61b911c29a71ece2d6215d90bf3f344','3c09fa18d2fcc72e4afbca9679e46f5bb5f4d56dc2b5d4da3282c758819d5403','f4b42490cf53debc929fefa2320e99ef286fd4a97c36e02421f0f70bb7c76c5f',NULL,NULL,0); +INSERT INTO blocks VALUES(310562,'4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405',310562000,'e483085d3466d9fc44711ce805c0b179183d24feb0c3b8cf346ea446b460e410','e06b6edc60212d17694503e28f4d8879a12b5c9f0d75fe281e0ffea001d78c76','0726b9f9df3c3f294168afa29fa73432e6f41221f6a5e6cdb9c50a12f04c58e7',NULL,NULL,0); +INSERT INTO blocks VALUES(310563,'f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636',310563000,'5a82935dd4999d4893a379132d8a65e8f10f5c93f74b25dff1a5b1fe1a95d8e7','4df37acbbdd1a1f9c717f58748f170d7ded7f62b686121a9f821275fbb12e25d','d5a5b596030ca91a997f8b87b3ed1f09e46e168b357a03c2d7c1259b692664c5',NULL,NULL,0); +INSERT INTO blocks VALUES(310564,'cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea',310564000,'842a96b665bffbaf0545f657527415cc78b1c00db057983343449085cff8d9ee','f145d6e47e0640e5b13185eeb88286b190884347aaaced30f2a3ccf1d934b75a','4d46ff89ff84e9c35e0bfcc7386bbf0964b402beb89a4c47ea2a6523fd0e23b6',NULL,NULL,0); +INSERT INTO blocks VALUES(310565,'954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305',310565000,'f67167b793a276efdd68c04b2dc9c0fd0b7719f2cc02f21695d0a9491a9848f9','db540061e4a8c10001274daf3bd8addd05306a07836ed6369388720544aae941','d8ccb3698e95cbbba7b5b59b1cc6d6dd8aa432575d8c1958cbf7e8d3c53288a6',NULL,NULL,0); +INSERT INTO blocks VALUES(310566,'3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39',310566000,'93d64cc60754b45c9d9f3f2be85c199b4ed839b85e656bf95e3c54194029a950','bc9927aa4bb22304a9ea2edc24e6fe5d8d6b6d6f1083cd64a5098492e811f2c9','8903d2b08fd37027d7231bac8fc5e38db49d44f8fddf7cad2890ccce157c6a7c',NULL,NULL,0); +INSERT INTO blocks VALUES(310567,'499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431',310567000,'d248eb8c0c17106c67082cf228215cb93d017bac7a894479d3cb57285686f7ad','98c790c8b92ac26f828848a06f10408d459b5fe2f54529f3137754d31cb103bd','0930464aeb3f3caff5c860b2dad1c373c0dfa3de30c18c678c9da75a58bd9ca1',NULL,NULL,0); +INSERT INTO blocks VALUES(310568,'ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e',310568000,'e76a89178d95044d56001e30d85c1f4e1f943d0175fdfac19151227760815bf4','570347e1c43a67562eedbef0f6d1a5e9945e293058c5277ec2ae0efb8254eb63','9608f4babf7db8921d8e83dc1453bf2cdfa416968f01aaca921736b9b9e8fe15',NULL,NULL,0); +INSERT INTO blocks VALUES(310569,'c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de',310569000,'2c130a13900eef57a42ba1b64b3152e9455eb5499936bf943c206f523990fe63','2efe30e2ed6a9f020f3ae70db81c701cfe07d9bd24451dd80294d0692c63685c','27c23180188237755f7380c49637339149a7eb404f611a98114ae7239b0e04b9',NULL,NULL,0); +INSERT INTO blocks VALUES(310570,'f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55',310570000,'23f037f4be56edae25410629cfa7a82245f0517020dc7f64faeeeef4f296bc0d','2ff0d7d5e4fb10d63fdab2561aacdc90f92f0df462bd652fe58f23c076242e82','6c26f23bc575e1191af502131e010deafa0ba8a1e244147758f6e65f8b6b6e22',NULL,NULL,0); +INSERT INTO blocks VALUES(310571,'b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73',310571000,'20dd9577da0fc1506c611a941f1c4650372280677c1ecce7463e35b67c0d4b76','7098b0fe2e0577a4d1ccd090b3b9ffa952b5c1fccb8fbaac6b1a43635084eef8','4931e3731a84a7a81aecc0f22af05cf7ef7e25951e3793e399550e48cf7633f8',NULL,NULL,0); +INSERT INTO blocks VALUES(310572,'6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9',310572000,'0f770f0cf5343224f6c679c4466cd015946c3d52e100c1241b4d145da02b5e57','e7db661177bca11155df203594bdaf815bb537d525084767ac0ed6e9fe99fd5a','9acd5786c5b4f928817bbd1c237a035cdec75bc0207d42fadedd24e30dcaf1e1',NULL,NULL,0); +INSERT INTO blocks VALUES(310573,'302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5',310573000,'17c50ede93bc8d19365a29233dd2e3e9e8cbac921c5b3d9c33e58db364fa0570','672565a64f687b09950572bb69dc51cc874a34d8808bc861d84bb3d227da1f30','3ca201953835e6df7c5b90afd9caf42f47469761ec3ce6964befce768550942b',NULL,NULL,0); +INSERT INTO blocks VALUES(310574,'c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d',310574000,'9d7e12c5fef9a8fc703a70bb9a9534a6345e92b61ca7b48964e10d0ebb9d95cd','c681d31f5e8b1344188913364f2eac845db9d9a936b45f6eada955996b7073c2','987b4e247d7b971dfcc893298c3e73a3ec4fbff9538b34d39eee4260312ca7ee',NULL,NULL,0); +INSERT INTO blocks VALUES(310575,'fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde',310575000,'29c97edbce573c66330f01bf5793928f7dd3e176f34457a4f56bac60234bbacc','3ea5d34d65420a54fd0a1c8424f3afcfa5eb40707eb42088814218583ff36cbd','3ef1e9a957078e2eef58b342e1002d04f7213820a7a1b0af690e45574e1848bb',NULL,NULL,0); +INSERT INTO blocks VALUES(310576,'b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5',310576000,'f7b2ff06d67c9d0868b628aa07c78f7b17fe8a921a3c6163a4e86661cc6cbe8d','19eafc5f2e2d7ec141f9f2bd1d5c7fb0b380adead15654553498e3af5bba0ea2','b0e1a5598b60f79a4897f20ddf6a04ad3bbd4a7bfbd64090d497e13edd2156c7',NULL,NULL,0); +INSERT INTO blocks VALUES(310577,'a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3',310577000,'789149426dc48cc79f009d46944ebcb31b188c2ec852de9cf6b16c1f48182aee','be512460315bb9b670cd1b9e78165df49fc17a8851dd7b66bb58a0e83bb4e487','052328d5b1381128509f7f05f0bfd68ce8a0f9ce5ff8ec18f344bfb2f47b4df5',NULL,NULL,0); +INSERT INTO blocks VALUES(310578,'f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf',310578000,'f402148b83a28bcc4c11346044f474455e0af66308638f5a67ed3fef0edbe55c','56dee75f67260fc83f55a276ed430bb1c9495d91b54d323a3d0cc427686a85c4','ed0c8d5d6febf2ee686f5be4c96ab45a58f8e4616716c0bd6b16df5e7741aecf',NULL,NULL,0); +INSERT INTO blocks VALUES(310579,'672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38',310579000,'2e94dc048ee39dc75874d6221b39d2621702e0f01eb8152adbb1e3799fe95393','c9a5cabe5916d0d169e06c7528835c5fcb00af3515e0c44e5e17c567dc52f1ee','e155d7766cd137fd85712537c0ebfdada610afc05b88c63f84dca3edd64f36c9',NULL,NULL,0); +INSERT INTO blocks VALUES(310580,'e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13',310580000,'7ec943a775508a6b3bb37a7d9438da6c76eed1df84d715443c0b001ff5726849','b484963a876ccbf57728287a7cae8ad916cc4523219b7f2fd6c42bbdfaa5ead7','75bb6e2085e39e86e2a2edff6a698f3adfab3e8f3e00f21ae15d9d1dd1da8838',NULL,NULL,0); +INSERT INTO blocks VALUES(310581,'baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a',310581000,'6fce0f8faecc5b5438c5ad8d161c013a769483d8a4f0d0f3c5f182529a93bcef','301ff101dba0c28f5603b3776bd17f373f30a5e77c8e619dee30e323322e4680','b57aab80dcd8a1f97d408a2836c0c9a1aa71d39befa8a7e2a91cf2aa39dc7aed',NULL,NULL,0); +INSERT INTO blocks VALUES(310582,'08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c',310582000,'51b642d4f636ea7df05148acc2c57e16e721585d33f0fc0b33ef9e316e4d6fc8','3e8a5d33e8340bc7e1c96c95f4eece8320807dd01e7f66a53f9afbcd26b19fa3','cc317aa0f9c053fc633f86c0df716b491e4088bb50662a0e9320eb5200ad27bb',NULL,NULL,0); +INSERT INTO blocks VALUES(310583,'22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4',310583000,'780863ca857e09c578d26c270a2f4d6bf52ac35af375a485fe16ed91eb8a314b','60d468a45c64869425508b88e3fbe166690c3009fcf33e3292fb2da145079044','2302777ed825984d15cd84ae399f6553562a92bf6216d9361df95df95cabcb88',NULL,NULL,0); +INSERT INTO blocks VALUES(310584,'db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b',310584000,'43ac9ef4d0ecfc18505524d3aa7ff32d32897b1de8dccaff5ebad42793a087e9','ebebd15c29221496c6547f786ec67bfe72278cbb8e15fb96737a30094880557a','477704e184f85c58aa8fca58cad4430e0be8d8fce5ec7e47d6fecc88ed2a4dda',NULL,NULL,0); +INSERT INTO blocks VALUES(310585,'a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb',310585000,'eaf8b429e88d71173b42debab7bb0ae02a8e6e36e411ad8fdb942400af3c6726','733e1df46cad658a76f3ae6bd51acb09be0932fdeb5f92e99b94bd5bec78ecb0','fd0e263a608f618864f3bfeab5613593e755bcc5388fdb9acedb844ffeb9bdbe',NULL,NULL,0); +INSERT INTO blocks VALUES(310586,'c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7',310586000,'a80f5b8533d49f0b56499746750033414df96442420cafb186344dee727e5f9d','3ead47e29b52236c485f6461d73c47c076f23aa5c96d2462adbf265966426f5d','c1032a009c3a410ad0b8ffe6eedf2766db9f6e6b548fabfe7951e137c404825c',NULL,NULL,0); +INSERT INTO blocks VALUES(310587,'6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa',310587000,'b9d78fd96468b4739d9739d31ae4d5d3986928428be9e8fb976c78eba53be95c','94d69dc7ecb628956923ed4d570fe0da3ef0c367066d76252f656f3774347938','1a88a340da7120857a5cd0426c8a21a9f09aca0406c3dda7351e227c68281f84',NULL,NULL,0); +INSERT INTO blocks VALUES(310588,'d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff',310588000,'32a53fd88a5a1ac75fbae59c2435d2675cac767dba28b5292976ba947bebc8da','b50620604ec72308ff19abeebe034e9ca8d732d2d21e765ff2ff78940076d62a','e603eb87468f13133af8ee8905cd79b4094edf308f03b768d686f1185b9f8fe8',NULL,NULL,0); +INSERT INTO blocks VALUES(310589,'4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da',310589000,'ba48010ee90045481ae3133726ecf28f339883c85d598c32280540a64963addc','78bdf68341d15bca6e325624feb58f527fd0256d044dc90dfd0c5874dae32f4c','31982deaee21c7fba0d90d4e6807488b037f87fd397b99b48d9008db996e4d25',NULL,NULL,0); +INSERT INTO blocks VALUES(310590,'7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6',310590000,'793d25ea2df208571c88ddea2cfa75ab242d069dc76a63599cd5fa32ecd16054','c4f9e894ebaaca5ba7bd4c20106b670025db1438df60700fdb4d69032277f740','c33903bf84c1f7d868c08ea24c5b92d236374fc8b5685f21ea2b04ba4fad819f',NULL,NULL,0); +INSERT INTO blocks VALUES(310591,'9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7',310591000,'4341b0c328eac2af3b076dd176c2209247a5c06d91a59de1acc286728ca1305d','a3af6a21611a7407ff02eab2468c377d29814f84add22f19f3fc1bfbe0d9694b','69e60840160bafe83b7e5aacf58a1e1b52a0722d583b1df6264d4c27ca9da445',NULL,NULL,0); +INSERT INTO blocks VALUES(310592,'d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3',310592000,'8ee09223831cabf92339eb3147f3d4133a6150e2cdc890dea3ae66168ebcd0f6','daf91d91dbbe9f77915568b355565696d4da404095e6b547bd2db3587113e403','0c49857211980bcbd4298cadb68a2686687807f93ccb8e93a4d4ec3e5b020fe0',NULL,NULL,0); +INSERT INTO blocks VALUES(310593,'97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b',310593000,'24295e885f53005538cf54b0ddc545ff2c0e7a3e70e3a87de4b9b11178ab80d5','b5c3b0df9648788b62ccf2fc881924438c4409b828117e2db502b42f2aa800b8','2f39341e8cd5d2903d72da92c979d55af20b6497ca26357c79d762def34c6f4e',NULL,NULL,0); +INSERT INTO blocks VALUES(310594,'f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015',310594000,'0e1eddb36733f22e41d01490e31d8ad8711af485f9644478a2a8820f09793e33','05b3baac4f1a13d3b2f287b6660be568bde7646bf4d2dcbd58928f8be1b5751e','2eeff5a2d51d740049b0f911825572f02068b682835aae6cfb2512436cfc67ee',NULL,NULL,0); +INSERT INTO blocks VALUES(310595,'0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66',310595000,'8fa3c4593fe914eeb79d9b864761ee7dd5d2c799ff5d1df4f0ec6cc335e93ac1','2bd0b4f8dcf78006ab0a7aa8dd4d71c6598e9162d772e84c4701bc4c8d45f6d0','4c40ed08ec9690b96c40cea703d7fe4ede60b89e194b059442ee9a4375b80d47',NULL,NULL,0); +INSERT INTO blocks VALUES(310596,'1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688',310596000,'0f02de76564828192ee58fb6f07b3939c53417f50f5df43d741a742ce8c2d8cc','c7a197d075a2b5d5bd3267ae10eba1596cbc93bcbf77830b4d32230c27fa72fe','2a1bb66fde239c20c9d94e667f356c175888fe279addd6d99596a8cc7fabf423',NULL,NULL,0); +INSERT INTO blocks VALUES(310597,'490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd',310597000,'dfd60db3f37108d2c636a3204e7e32cad4d3c888aeb710e24d24e08731df5097','c648adc37b10d6b7c9fc0e1f2a4b5c8ff9ec86fc035e4124c576d8f118c23503','650282ef5f9baf8c2c7b9eb59c1d4cbecc202344737aa65568d7e59b4ed0bf4e',NULL,NULL,0); +INSERT INTO blocks VALUES(310598,'8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a',310598000,'870b9172895279ddf0eea7c295ac66ff499b1ad52652f763d6a3935c2dfbed8c','b23f0702a5066982b19875ee3aeacce21c97adacc44c5ae6bc1be94f3edcfc93','e0c61e40e47a3fc873b62e088ca9e2801bedbfc90167beb06c941ef58921aa7a',NULL,NULL,0); +INSERT INTO blocks VALUES(310599,'71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8',310599000,'58ed63759b5f5d48819d1c924e25036764b728f9d7b83b08fd368fa3e1bdd332','cd5848644ac2a8bf3fe63736a96ce91345ecfc54c943e72e6e24b8cde5ced243','f119fc4c42d3c05d42aec3d0e5139ea5ab52ba917495e0cd0eb289cbfe7c487f',NULL,NULL,0); +INSERT INTO blocks VALUES(310600,'f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a',310600000,'5ba20ac629f2846a58a347946342f086b1529b3d4c19a6a93cb37ce2f6c781b7','8d9bdfd600f2ab1f9df6b51b3849792e10973ce73b872ab6e8d6da2b5606af53','2445d96b5d8a61a70128b03e2cb6fb31a5912bea043a904547964ea28f708839',NULL,NULL,0); +INSERT INTO blocks VALUES(310601,'7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd',310601000,'98094278d3706a99b1a5bc02498e33f8c316315a607f014e1a057a2baad922f5','2acbb771db97fb8e8f0963b813502965908a680d2fd86446a33be34e3744e81f','d19d246c74a88c90808bef18c523c5b3613fa816a895554d839b02c455cfdfb0',NULL,NULL,0); +INSERT INTO blocks VALUES(310602,'c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2',310602000,'e3e9805428639bd0806e24007889b60b4f5e3b399bfba6d0ff68ed0c7363140e','243a393f2fac01b0ee4e10351a0cdd703509ca63d66654bdf578f3eca689421f','0521d9a32de6ba28d8da96885a70c130a2359283532d29abf3d876131b2a16ee',NULL,NULL,0); +INSERT INTO blocks VALUES(310603,'44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c',310603000,'3ec5123124b50e2943741319254ebe63d5410a3af3dc56fab3b1d11002453979','6bd040dedbdefeb0e3398fb4533bd2bcd99edcbcaec5319ccde5e7a5403017d7','e80209237ba7dd831b0b5abf34da25580b054e7770cdd121938312328dc3ae93',NULL,NULL,0); +INSERT INTO blocks VALUES(310604,'36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f',310604000,'02ce31a767356b8c5c3cfa50aef88e420bc0a0026a6b5a9de323b8b6522ddf26','50dfcfb2871929ffce0a82a85a5ee11a125109a774b34a9ec127ab6bfdfa3b8c','ffbc78112dc29cf522659ee62417c9b38dce46ca9cf53540a5c2e8025e38b79f',NULL,NULL,0); +INSERT INTO blocks VALUES(310605,'ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9',310605000,'cbfc2eb6739bf2d671ac0196c78865612592f7629caad2466e303a7c14af9b46','3427c9e8c0ec9016a521b4ec842bb5cf3731cd747b514a553f222e44a3d3def3','54913ed142c2dc6b0aac7b480b4c1ffdeb562702185dd44deff40f2f76117d73',NULL,NULL,0); +INSERT INTO blocks VALUES(310606,'9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f',310606000,'2266c4b7443b474124516bf19dc082d2cc547ae7fcf2027bed2b1360eb04296a','c11cb503ed27d64acc8b2363a34617edbbf35bb701f21b87c70eb4966f7eb035','09392d7614905f6795ff899e05eca8e8a332488f1f68772117d36a48e606bf78',NULL,NULL,0); +INSERT INTO blocks VALUES(310607,'ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d',310607000,'8111c3319cff47fec3e4aa7c007516bcc3dc68235e7fd8d192e3894f093c035a','12b12d0888cd3a82d149f4f8c136000c26a49f97f318c76dc90fcb4996bc3064','cea19b754ade705a9372f9866b0438d0c81312035cdbb9d7c778d38c27e95953',NULL,NULL,0); +INSERT INTO blocks VALUES(310608,'ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846',310608000,'399589784086ed7a16699c38c2d9ff69cc2e055fb069f13f073440109ae97c7f','9fcf0c090ae0aa70fee65fa83a35cd15311ef460f5fa501f6f842c29e2865856','659f7e678a16e0a5518e51fdffb5b012425308c1b6e9612c7288ec3ee7bbbe3e',NULL,NULL,0); +INSERT INTO blocks VALUES(310609,'83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455',310609000,'425f42bd35b0e93e586ba8ca0c58da2c86d8e159d444f2b14908ad44248379da','7e09b9bc2a4a6bee758dbee3801455b3c84998bccaa40ba8e1a62eed98fdf40e','2200500287fb87113cec48ac9056dfa4b8f058fa9ce528e418633ee0b2cf4c0b',NULL,NULL,0); +INSERT INTO blocks VALUES(310610,'f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9',310610000,'791867b9f8ed751e093bf724c48f7c12b387e9264d17028770bc76e6a47c1449','b5615378baa3bd212119929c04f03e2ec798efc02eaf92232b393e1cebf21cf4','b8d5744541768ffc79d1039803678428c7f21a5e6284c8a699ea82903e0e77f8',NULL,NULL,0); +INSERT INTO blocks VALUES(310611,'6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89',310611000,'c8ec71e958f8782a2c5b5fbc93750b6b8a5fe444e9bec83b0f58897891cb5b67','f026a93859c733bd910f0341d53802b2443e5efe0a7a7dedd3b0e3bcb7cd6f07','412e5b533055e47a37d8186b21f4ede04e8d2cddb5542be7dd6983c9c6599261',NULL,NULL,0); +INSERT INTO blocks VALUES(310612,'08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd',310612000,'4594b8baa36eec188227e960a64d42a49fa2c3619cc852486ea09ffab83a8f3c','b67528c85ae55a57b1dcf3501d340c280af942e4078a1c9a39e9ea63ee9570b5','d5c41c70c7a4dcaad2d290931426912ae1b18e84a43f1139c658c9bb705eb70b',NULL,NULL,0); +INSERT INTO blocks VALUES(310613,'c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53',310613000,'de0e85bddeac7e267f1e2d5fbcf84f5761acaae0142db35d5c2886f386a1a5bd','d6e9204ae7b7c5f887a25fc06ffce731e1c4f3228ff039e35be1d321276f81a2','ea1f267b694b4e0ea94c9f43a2dfeea2b52d91351f5095213d69976c0bec4951',NULL,NULL,0); +INSERT INTO blocks VALUES(310614,'e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b',310614000,'2e74f610c9f8a9d41e23d331f1be5dd73ec34484015a434dfaaffe26ea12d5e9','d1459bf2b59c0c441b8f00889669c3c6f645f66f608eeb623576ed7044bf37e4','d1c8eb5da18f7bb6e6f04f7a211d13c4f75551f63078b280dc48a590d2a86fac',NULL,NULL,0); +INSERT INTO blocks VALUES(310615,'fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc',310615000,'d9f45cb567f34f84c514d22301b2da86908bc253aaa629b6865c2133c206cabb','b35468ce63479f2f7cd17f791e8a66b3a1b42e716a7792a2213bf8742978f9df','a0d491660440f20e3172e31d1a07cf617ee504e64f20527452b6da75e3ff9ce5',NULL,NULL,0); +INSERT INTO blocks VALUES(310616,'008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84',310616000,'e30e9f61f505ea7f98f2e1f45f9afc9a81fd074f021d2a870dfcae2b9f1cfe9c','51e2ca4af76f00e81e5f946c53f23e1ee7ba4ea7603832ef77c374bae59afe3c','2100a4d4e90036fe1b56a618ba65be80e19ec195c282456ebf591ec61c45ac1a',NULL,NULL,0); +INSERT INTO blocks VALUES(310617,'cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29',310617000,'d9384d42da7243395812dab1d950d95a88a0a59429c74b4d4a5176d0be033616','55776209dc06de6d494ddf7866b805d94f4371598273d4dcf23b510e72826cc3','0697ef9cb30c2a2c5f524e5ab26465988b98173c9b8d082d628e0121ceaf1392',NULL,NULL,0); +INSERT INTO blocks VALUES(310618,'f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b',310618000,'4ca7c230a3fe6c8ee91bb4bf3152c462dc1e2974a59f2c999064288892d08ea2','cad5af4c24c74aad93c806ae54251b11cd7d13210d68098afb26cbe73e3e120e','5e1c8f4551237738254dd66979de7472271c5411b1ad66b8d2ac417cfd9adf14',NULL,NULL,0); +INSERT INTO blocks VALUES(310619,'4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d',310619000,'61d138e6a8fa305f823286bfed3bb8ffd19459df4a4476f49a4f250d7021f7b1','42704ac1329f6cc2fbae3b8d6113afc679f159b44e007a4268d03cd9a9944721','1b9e7f31f474711312faf01725f3ae59d78b04eb0343339195d6cd0fd3d67509',NULL,NULL,0); +INSERT INTO blocks VALUES(310620,'98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519',310620000,'00e2a6449915ea1d728032c813d78b236b6042e13b1e3aa9856453a727d4a690','e70c9193269a63eb0ade25f20d608c5ae1d9bfa8d79f7ed50c2f3e7b03945149','488fc22e472a0f9b0817d4e30fd8a2fc91f1d502bb7eb67e1108235a545409c9',NULL,NULL,0); +INSERT INTO blocks VALUES(310621,'1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11',310621000,'b454bb9ea3b218e1c9a622016aeb5a87f2c3547b164498cf79638ce5c5b9c151','0993cb53bd6e9ea2635b2ddd58c9a43c5610e9e2a0ed0fa5407616a28e3aa201','25b3b0222bc6b3a9ae6e4949da06260499581b313b9fa002d566b16023d9aeb4',NULL,NULL,0); +INSERT INTO blocks VALUES(310622,'3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47',310622000,'791b9cd494c96b091f01a0acc1a77762bf062d13eab06d9ef3e7adc4a3ccf303','674ce108f53ec7902c24edac613cfc104e7d08cfde7c8dd3ce65ed9dfd72182a','75f35e96fb68715336ac80ea86223ed387b574b8bb192726c6707984ddab5b04',NULL,NULL,0); +INSERT INTO blocks VALUES(310623,'817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad',310623000,'accd538ac94e49e181ff93568c3c1c06e3a29752d8ea17c61e485e95e77b5b6f','a56c89d0b997d5411cbcf260edcbd409e31a599fe36ac6f20a3e0c031e17e750','4d006f3e4a07d9935ace0bd0b3de20e2e9a15eb44c46acecfa0baa17ec41eb91',NULL,NULL,0); +INSERT INTO blocks VALUES(310624,'3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4',310624000,'8ca42d0789366c39d92dc830654caad48cabfdff1b739bcaf850390d1a306c91','daec5678d2803f99becdecb666418513aab7cc9a37f6ab54e675e0a895a3b69a','08d37c765e8b49d91f9f1146a330fa33d47ddef089eb47b9d5ef4e672feca789',NULL,NULL,0); +INSERT INTO blocks VALUES(310625,'bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba',310625000,'97ddfd8dfd78b745a1baf90c8fecf0fd4a9bf65682a7900f532756ec9a4345aa','e378650c25e95773a8167e904ce8ff4d10efc57fc2b544054c6b4201f7547537','795c6e583990ec6196489d67ec3f1bab7d7c14430bcda2c0d22fdd148e2db2ec',NULL,NULL,0); +INSERT INTO blocks VALUES(310626,'b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d',310626000,'78fecdd210b3b5cf22f7edecc5d8ce31ece4f3ee90a9d1a7e9231353d74378ff','0d54a79bc7f05e33aefa5fece35ec2902b3da8461e34163b58c2fd3779483614','f40abca9fe7283910e120a1c09969f3445e4c8fba1f85f65fc95bd6db69a8129',NULL,NULL,0); +INSERT INTO blocks VALUES(310627,'828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f',310627000,'6a3176840ca189c93d52a64017b774dc5c8789121439d997cfe5ed3785ac2c0a','b4e762b53ffd3d9ba24a34032ba26b048f2c7524008cc3f35c0e44c1eaadf8d1','6a212e03fc08edbd3207b2b0430c69dbf85d5f84a5fa1b66784c7bd7d4c9e395',NULL,NULL,0); +INSERT INTO blocks VALUES(310628,'f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e',310628000,'f8271403e2bc0506b46083570d6372b1ab36ca545b7b105fee8bda6a0316d20a','966ab2ff446abb9ad3589034fa23dbc5c467d019cb92803745c8732b05a6bfbb','8606c13be3cafe4d4bddf5701a88bf6a9203bf0589eac1eb098ccbd8449ab343',NULL,NULL,0); +INSERT INTO blocks VALUES(310629,'254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20',310629000,'89b8d07c2c7c9b9e4d7cbb24fac8b39a02518978470689916fd7109938749327','f739aa66c8acb9c24def7f1febed2189e6cc63361d2f798ed32cc808acf01eec','d9e2fc746cc7844019a2794192467b6071e0b2a615599ed7f085cd820a94f7ee',NULL,NULL,0); +INSERT INTO blocks VALUES(310630,'09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde',310630000,'637f978db85998e0852aa7eb022b67c9a0dd80fc8358550bfb2295dec33a27dc','51ee75dd962cc512bcfbdec32657f7439d60f3e613329a313f44970952abc904','90af1392b478e6d84da5f26c385a0e8d8f96157df43b7ffaed5040b689d6865e',NULL,NULL,0); +INSERT INTO blocks VALUES(310631,'b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be',310631000,'111964dd5de58996c79fed037fa414d3091b24f39162b8b49b1706489fb70de9','c513b62a3d7bd0b4fc649889deb032ffbb9efb6d209e4bf5e14ea24250f147cd','46b710d8cc561e7bd3f5d70a226ad8bf6463246f0125be4e6908390383eb168f',NULL,NULL,0); +INSERT INTO blocks VALUES(310632,'79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1',310632000,'bac16748526f10796a496c934904ec1531fc346c47f76518effd0fdeab0cbf2d','6f4ee24d93a37b3686c71e39cc7ce7e3f79a3a9a6397e608d74c3646b9358d62','439997103b30d1a86cd73abe038c7ecddaea3f2f188486cc986bb9c439b7a6b7',NULL,NULL,0); +INSERT INTO blocks VALUES(310633,'e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1',310633000,'429706df8ba85dd7af927bb7d356b608005176b33a0f25e026050467478278d5','52825a5f663c03d9d8027057b36564cf4be997fdc15b5b503d1701019e92376e','4ce3223f24596151dea3d243f4e0448ee0233d3fc765f2a90be85d684c18119f',NULL,NULL,0); +INSERT INTO blocks VALUES(310634,'c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af',310634000,'7f0f383e79def1e3a68337c026ab2a8af69462ad3e450aa9e14e85c197878b2f','e9c54a989efbd6b8234ca7f0fae5d39b7f83479470c90f2d43dd11288792da1f','8b51cdafa4e30f307a35d7b150ae2c9f90edccc8b34c73180eb6ad1856ac058c',NULL,NULL,0); +INSERT INTO blocks VALUES(310635,'8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e',310635000,'8f7228dc809935d3676b5564f1d66e72eb446c74cc92aa037bf62b5f145bca36','f93c139e303a561ea8d29de69ea04dcdea0ed5ae41ad8ac0f6fdc2fe8817d815','cf8ce652968d079d7e736e800474590e13cab3ad6ebe1497f57cee48a254c4f3',NULL,NULL,0); +INSERT INTO blocks VALUES(310636,'ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31',310636000,'de84e3867052961680b29056c07dfc27b6fb2eac814419dfd4e91b43e900c772','63a31a218d2b42aa278be0ff76c71bf572114c281a90431d952010b7e75a0b14','878bc373268caab27574e672a4dee2187b28073f3ae5c86cc126147b9ab707e6',NULL,NULL,0); +INSERT INTO blocks VALUES(310637,'d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336',310637000,'8d0b67598fce1b999273f33ec1baf8250887cad0b83459b702ab59034f3086e5','aaf47bc37b85c127d9bedf76b0900a07b29bb2a1300a12d92200e3f006e0b930','01e47e5c8364edaab0015cc441caa1145d09c1a1dabed0a03d8e708c644254fa',NULL,NULL,0); +INSERT INTO blocks VALUES(310638,'672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b',310638000,'27790f551e94594c6af449e724c10ce357b5dc66bfebee23097afefb4e9f0a12','eb6e3a68506f9c0bd4c522d5537ea01140273c8b84f376cc95fda0c99c8d8c7f','8cc0fca3ffad9015927bb212ee5da7d0218490e373e8b22be90a7cbba74f214f',NULL,NULL,0); +INSERT INTO blocks VALUES(310639,'d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b',310639000,'67a6aa875f85ee2238c17799eff999fc203dd693b43650eb5fc852ca35e336cc','4618a0558955508e24b4e79308cfeefbdefcf4def0f3dfc389d66b335488976c','9d14f17d509f8281c04e6fe682e9fac6481357563002e13e17e30559784a5596',NULL,NULL,0); +INSERT INTO blocks VALUES(310640,'474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59',310640000,'ecf997fef417038221dea2f885b5cf3f39a695f1c5b4301505fba48de4967aed','41342d146bb15f623738e998c667d3bf2b51966495f1bfc948bfdfef93d27bcf','fd283dc32d0802e113f6a54d53a8a09f99dfa125590414bddf581f9ad90e3b2e',NULL,NULL,0); +INSERT INTO blocks VALUES(310641,'02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b',310641000,'58459ee74e52e1f17faf04b87d863a7f325a6f3e7119e9b0125a5f524b3f9e5b','266cbd2f8009b1c950b4a0f5d7b1a9e7fee56a0b60feca824b5f7e4f69334435','216296aa64be92588f833c4c89c6daa991b4836b482afd9822aceac82c02dc82',NULL,NULL,0); +INSERT INTO blocks VALUES(310642,'cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd',310642000,'7115a073784f629dfa4e75b9332519b2f2646f73b339566891a5a49a51130549','483e13632b7785262d09bbc9c55ec5ecfae7992d38b44d92b3b7b9dffc979be8','95ad7e7fdbba30428fafdf81469a915d0d367670c0e432a6b23c947631af62cf',NULL,NULL,0); +INSERT INTO blocks VALUES(310643,'b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b',310643000,'f33f3b1e121dcf510c45a6ae1ebd73cc2225507147578afccb57b510e55dcf3e','2d428ebef22ccd8e01c73c47d63ecc37614f5bd34907d6b5e821aa4b3d7a0b07','4d68715ad53669493c453de539eacecf0cf9b8d9556782a4e7c3e1721f535f89',NULL,NULL,0); +INSERT INTO blocks VALUES(310644,'f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672',310644000,'1fe7deadadb5e69094696d93e4a633a0994819983ad920aff9392ac6738f9fba','848e6511e3651c225508e11808f494e5730bff9072e37c5961b209f6ca5eedb1','2e5d121afe71f37fc429baf759fa485ab7a47ff490ebcd55fc79105f43c256cc',NULL,NULL,0); +INSERT INTO blocks VALUES(310645,'f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3',310645000,'e02701b1bf4f3d2b2d9fff9867ae0a7447c730827397c2f1e78a2d522139fbfb','1e1feae6d6050b88b16c5df26ce029eda5fd272e96bec74d7a6139fd4c38343a','0d006ea790bba01627155684e74c6a03420c3d299571727e9eea79b57a4f8d2d',NULL,NULL,0); +INSERT INTO blocks VALUES(310646,'839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494',310646000,'1c921997d09586776036aea36d92e3e57c3e7e148c1f6565c4dcc8b8e72406ee','d3f50fda8401e46bd75e7d4abe1296363de460d45141da3075342c8bc017f8d1','bb7b88a53b02a3e1a16860634ff3d02b27096acd8a894fef2ea5319c958803aa',NULL,NULL,0); +INSERT INTO blocks VALUES(310647,'8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d',310647000,'5799deb2c7b95959d2237ddd4566fab7ead35943382921bf738ee3c140e368df','4fb604a40972ea2e2fe9dc8ffe24f8bfb8d77900c80ff8f33bb7a34b2a0be681','cfa7db02be77590395c7e288b577f92a38239716d708c6a5d7c088ae8b532b65',NULL,NULL,0); +INSERT INTO blocks VALUES(310648,'8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f',310648000,'9b0c8c0e31e70e67ee396e16ed85766f17552293d2ebbe5566896eccc65688e8','c9ba3aeda8abee31772f8a0f7cb5643a12eeb8c9fe59045bb0c9d49d5c69c3f7','c615e72bdd350f38281ed3560ec07979e3587cc0a4f5cd8053d4a118a4de6d8f',NULL,NULL,0); +INSERT INTO blocks VALUES(310649,'6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb',310649000,'606c6a44f3fe7dcd230a4fcb137a010b1ba7ce11be94efee7dab2649618fb725','1654a3cbc3954d23e0ca92af18141e3384277e78e664ad40f2867fcbc60a2d70','cd81bd5131e8b4749fc0c0da0102895980e957d7e3bf3bb103b16e0b7a93625a',NULL,NULL,0); +INSERT INTO blocks VALUES(310650,'630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0',310650000,'e374080b3f666ea38dd6fae338339e01e5b9a35d7605d0eba6760b17caeac4bd','d10f8ee8b2a804d4610ea132e890fa11bbfcd9582d059a77ad3b59c9ac93669a','065c75442500de5e41928418daba7f3b7952a5709349f6bc547cf324089e20f2',NULL,NULL,0); +INSERT INTO blocks VALUES(310651,'abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22',310651000,'ab3aa2e64ad8e96d4f10c7c72566e65cf8b6df1d9c59acc9f36ff367276348c5','d4ca114a2c4e1e43d82c0502548e9f9168e55553df009f846c652477104b3fc8','ffffce0d2503ba52ef8381e0eb4806d34eb3f2c8c6f829d6cafdbab2b3f49f58',NULL,NULL,0); +INSERT INTO blocks VALUES(310652,'5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6',310652000,'0041d6f69a3abdcfcd6b79d991f2815f97bd31de1253bd4f4e67f9971e1b38cb','6491a9bdd162cac7cfadb1930138e1714fef048d0b2b001fcbdcf24413110d42','22f6a085a3c07eedc18222ecb2352f50d6c268b15a137ed318becfd6e02d026e',NULL,NULL,0); +INSERT INTO blocks VALUES(310653,'149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0',310653000,'782004b38c6737fcc6c2575d7eb00f2e364440cb69a4141080ee1960828fd2ac','fc791bbbf8c78847cb342bdb1273cb697c513c68ee6d280941031cc38d4d6354','8c8a569ce9361127fe0154f7df0828b19adb0eae1afa096bcd0ea46996e945d5',NULL,NULL,0); +INSERT INTO blocks VALUES(310654,'829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569',310654000,'77145b6ff93a432aa76c3aa6491ed92b6596da48dd5cd007ec38abdf92a111f6','dfaac3f5a38a1b4586cfe3ea5959b3d879d50a231191fcf46f75fec0b8a3329a','8ae82fa7c35e107fbd3ed2f604b09f39ff1a0adfb1ccb9ddcba5d012f511bf60',NULL,NULL,0); +INSERT INTO blocks VALUES(310655,'c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55',310655000,'c01c53df2b345e24e6dfa455d588ff353b9245ce6fda1f41972955162b717723','5a9a17b6be46a48a00b986503cc922e945ed3e59a0fffeff477e6953e776ed2a','832d294f7c6bd1c597cf9acf253dc505e4064e881a2f15b049566f105dcefe33',NULL,NULL,0); +INSERT INTO blocks VALUES(310656,'5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b',310656000,'b19e67439b541ffcc7855c5c655e738de7ee0c0429dd9542fd0f871b180f46c0','73e8b5247b6daa8b931b1b28610b6fee7e10949a1aa6a62d71e276929fc5ed11','9042b44a4a43ad0bce6307ce80238332787e9366001de1661d09a0ee593505cd',NULL,NULL,0); +INSERT INTO blocks VALUES(310657,'e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26',310657000,'ba2ab5b79057b6507739a23131ee728dabb73a90041f116903f4a88e7a1566ef','c426afc816a4d8536d96d8ed39c75dd8145e6d93864259b017c1932bd3bf0687','27c7e86e5c33d10208aab90ba0f7cd808e42c55a1672020332289f97127be6f7',NULL,NULL,0); +INSERT INTO blocks VALUES(310658,'579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501',310658000,'55bdf86bedc7787e874b37ff4dfbc3c753873577059b81d91c1d98fb61ab889b','a0a1dbdc2cb08b59bbc105c44ebae0f8776483f2c1dba13a519984ca70a839db','9fba4351dac2413aa3f32e051cbcde31978eed04aef5eafd8decdeb91cdfee33',NULL,NULL,0); +INSERT INTO blocks VALUES(310659,'e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f',310659000,'075b47b96483cb17c8d208e40808aa6b2c6273cb2cac1f954c40323118d319e3','8820d989cad56e3ec4c084d37c7d586355019ea8e5cee7371ff05f4e19972528','efe3f9ab71802b576b8327d40e26a1aa23fe6d6d560fe9afa92cb91156cc38c1',NULL,NULL,0); +INSERT INTO blocks VALUES(310660,'d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d',310660000,'9b5229606ef138005d260efd23e1dea5787e54a060eb1e06a3b3f20ceb8aa1b2','f606b03288e72a208f5d44ef49343632cded5a190acc9784e7d44c3ce89e3d6b','ac5d922cc74d59ce471070115b26c90380435bef933a790af23fcfefd7548789',NULL,NULL,0); +INSERT INTO blocks VALUES(310661,'badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89',310661000,'fcf6e1cec9e929e90e87aab898f1c6b5f4cae33272a01f8dc4c877a78897ded6','121ea9d910cd7cd9522a4c21056464d4b5831269d55d3ee93613f9edb80abce8','64b227d576c1f2ab6871d97064988ea02f84d58544e65198e2a45ceb9a782be4',NULL,NULL,0); +INSERT INTO blocks VALUES(310662,'952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb',310662000,'09d5b89e5eb641c4e6474a2848510151fa3e2d4ea21a227b67739aeb349390f9','f2793e5e7ce5de99061d249b7eacd8c31a0b59c839a6f32905aa4fe955458137','09c3fe8eb995c190aa10ff3a1fb63ecca44e5d3af00e6ddcd2ed9b2f316cd91d',NULL,NULL,0); +INSERT INTO blocks VALUES(310663,'7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028',310663000,'7fba57a8ce4fe3e9ab99dae9196c9676179509a970b7441b506ea23b572b7451','f2f60e0e823edb418f01614f56dc15887f96fec107ed52406627f035c7efdd21','8c7a7287d00026bb5c9e088d7663ecde79aeb0d17da15745c1575ef825828669',NULL,NULL,0); +INSERT INTO blocks VALUES(310664,'ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247',310664000,'79b688b3fa5dd80ff80ff7ae86ae0a2113a95de65e0abfe8277557335a64f8f9','229a5edda5a8c504658c57bd7e776fb286c26031658efcc68c0e0bd80566e20a','57865d5417b51fccb6ac6cc387727060461274be20ab84ead3321f54a0b1923f',NULL,NULL,0); +INSERT INTO blocks VALUES(310665,'8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8',310665000,'c921ed3cbbfbd30927a531f9ed42e6b3f2982851ccafee096a9d1fbcf74fdcb1','b3e7615a7e9b22882a5d63ec2c1e4944ffa550aafb856db4dcd03f659eb73d8f','fe8751576843309c746e5728d805453da4ec617c15f9459bb3cc88f64d1b5442',NULL,NULL,0); +INSERT INTO blocks VALUES(310666,'de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52',310666000,'8812fdd368acd947add7a0eca401d0e55f9a5d1d312fd1bc21337f99344c38ec','9f5771d6fb484760ae44a0b7141c89e288c483d5408e26e811fa4612ca68a3ad','4199ce88036411d4f1382993cae587f40a12719031957286cbaaa003352de716',NULL,NULL,0); +INSERT INTO blocks VALUES(310667,'c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83',310667000,'f447fdf0d4c878d528ec468aceb8c2ff833ddd656933e2ccde2dbb3b0f591756','67d4cee1acc31181740c2f05b12144c7184111c5c12b4c0fcd43455e5b1d1e00','17cc943432dfa9ff0b5c8065d76f0a6a504328b34fd7661e9ba8aee853e736ca',NULL,NULL,0); +INSERT INTO blocks VALUES(310668,'699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27',310668000,'a5c44b4e330b04bfb41210684e1c10d6c5b37fdfc60c7693d29e497604efc40d','d352c080a6cd8f5ad10a897a2300f6aa87bee31d8f47ab9477a96b96935c5ef8','d128c60f42a5c5091c0a4983086e97d7a713ba45e77fdab3adf19937f8e3498f',NULL,NULL,0); +INSERT INTO blocks VALUES(310669,'c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f',310669000,'487adf783efd74528548f13f83f6bc7dcee66428a47bc9307bfb4da2574b0455','780251573f61009e4ac61ee4879e60ef6cc072785e6c57c2dacdd57fb03520c5','23c3dedf4c2c995507fa4aee2f67a22dbb1d3bac74ae97135d9bde57db53ae6b',NULL,NULL,0); +INSERT INTO blocks VALUES(310670,'9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944',310670000,'99c788d6b71852b0c120368969b650b105fb1d26b40cdcfa0456f22645d191bb','b6a1180e0a158145ea9cad059da2c082e2ae84941d0f90fb11addae85d081964','cd72d8b6123766cba5fbe61bf283005394bb86119d48a587098ebef16565b3b3',NULL,NULL,0); +INSERT INTO blocks VALUES(310671,'4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522',310671000,'dcfd2a27a1aa5c70719cd98c19e05722adfbf433f7cc65f61fe7ad616772107f','bf87e973ededd051c8bd23ccefb1de6528a82b1071aa3b791eb7c9263e2d8ff7','4d25a61a62dfaa35c46d23442c8061082118697ff1f6a2f83a7e93a4c3bef17b',NULL,NULL,0); +INSERT INTO blocks VALUES(310672,'491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa',310672000,'ffb2a57e077c5bd7203dcd2983d53090c0d274550510108f21731cc5496f9596','faae8112e80bc60f69dbae4257809ba549b0fc2b4927357945392e3843d34192','e8f714708ed313b54843d86bce11e14197008782970bda8fd32acfcf992ada3b',NULL,NULL,0); +INSERT INTO blocks VALUES(310673,'03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5',310673000,'6afe8838d8bda0874b9bc0f7d569e8571bf4c429933b7291bc0e8d911632870d','1614c8d076a5878f09a0755de3d774e2c3334884876b3b6d730ce1dbb910b2f0','c9b97bf0b419128433c5dc9ab3601a8f2f7548093657fe0139d8a4f7129ba4f1',NULL,NULL,0); +INSERT INTO blocks VALUES(310674,'9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c',310674000,'8494a7f9f04fa6e7ca8d3ddc17df63f418a2ec5489e8a1aaa4be40b7961b0636','2d25ca16358d0209557c678cd2f9826d9e15f45ee9bb1211adea973da62d0116','020ae0e030f024772bf84bd68ea2fd6b2ddad3d99d41538b934e311bff0db058',NULL,NULL,0); +INSERT INTO blocks VALUES(310675,'e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21',310675000,'5081aed7765bad7d97520bb933cc3578604a0b3c64bc51b6e3853d2fafaa153a','bc62362dfb5ae26d529f4c5ed88f8096de03718447326cfbad2a807144c1889a','966422cf3481876c2a8de3c6774043660567acd7616ed0b41a5bac2ef829eb22',NULL,NULL,0); +INSERT INTO blocks VALUES(310676,'312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1',310676000,'d7907d60b2afd888983618f5b04fd05c23675d76d7b1aa8f0187733e94d86043','d8bbf9bb6af7bf95569dcf56fb8fdefca64695b5c021bb698a0c6edee9e447c2','21535ccf00468ff69ea89d28679b6d2f9fe04539eb3fe7ef1bc5b74a56c8e1f9',NULL,NULL,0); +INSERT INTO blocks VALUES(310677,'4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a',310677000,'a8a6093432008f24226584a1491f49355b4be310bece623e5a6f4191790e38b8','7c5bc34c11f251b3748c337391be8e8f74a0399b3923627ebf9117e9276af31c','743de8d2c0c43daa862f26d9afcaec030e617679b18d599f21aa07a51f3779f5',NULL,NULL,0); +INSERT INTO blocks VALUES(310678,'d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c',310678000,'793feeaffddf01e00020ad32155d6ab5cb9a4fdc4d49f3ab677169d3615b04ed','41eb202a56ae084f3cc1457d3c17cb7eb2214a8cc385574f97a5d0913086f931','3ec1efc8ab70c4a92468aeccc8122a5b35ffcde62e76e2116f0d556dfa86f9e4',NULL,NULL,0); +INSERT INTO blocks VALUES(310679,'be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b',310679000,'3e07a5e2d4f38398b1d5f218cb8ba6393336e1e3fef63684c4076d5b856d4135','a27ecd72192938a3eda2a91456903b4bd0a1b277166e38937262a7c1a5fab580','bb5490deba2ed5b0284ca703457ecfe496e5e8415661f71efd376839460a6da2',NULL,NULL,0); +INSERT INTO blocks VALUES(310680,'239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8',310680000,'fdfab5abd301a27e1e91310ea0abde8697cecfed231ce524a5607e8acc6c02d3','19abea6cb809e0ae492acf291a5dba572a871622f4c5e675557e8d2f37102e09','480df2e104312f96e95ff4e4c4cbdff46e60e82c4a9957aff6f9745c3a55faf7',NULL,NULL,0); +INSERT INTO blocks VALUES(310681,'0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41',310681000,'662517b0bb85a3742a0d81d1b4aaac6f2a8a4dbe7e8a6a20776c5514d9e14a48','7f0276b2f2d61b95e407e95777aa4895e887111b0281099b9c5a44dbcd31f22e','4c75399acf36a3d44bcff773c9697a10def80dedf2743e7e11bf43ef2a7e7b28',NULL,NULL,0); +INSERT INTO blocks VALUES(310682,'9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55',310682000,'f7a309b6131c802520e6577c3ed7ee05e99f0e231441801a9b1bf2a430950a4c','e9cd2133c276de01869a39f4c703d2f8236b0b1b79bcfc53a4e3d8967785be9b','d10d85d191a82d37b9a8d350f06a6a67b750d54856174caee570023070f39b9f',NULL,NULL,0); +INSERT INTO blocks VALUES(310683,'ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511',310683000,'2cdd3fd5a05e6fff02a5e0747dc3b28e68c13c0ffc521c85e7de6dfdc22220f0','267450473f906200e5c2c6912b2ad40150573506e7344e632d338485e3f78192','49402605fec7d667e6283a02b9fb7f7f614efd582f0253ce1598d65096d22de5',NULL,NULL,0); +INSERT INTO blocks VALUES(310684,'d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9',310684000,'4b034b1352ed16420f29905e00a54a82d238d2c4bd4d1fbb17a3b09ea9886391','80f0ef1728184f040fa9d640aed74db77ff126c31413c88816fc0a3b01c47eb9','2efac46039dd7f35bf90c8456118a18c1daf3099a5f2586d20d0f5d14438654f',NULL,NULL,0); +INSERT INTO blocks VALUES(310685,'f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8',310685000,'af82d0fdff4a89d3b0944673aad1328ba0827ee606d79dd7706e297fc4fc2204','b8b940808bcd9e0a6d5d3b0dc001b185c7be5bd862d8ccd5c1860916b7d666d3','4a9bdc220cf3a3ccc62d0124a156c6d64be0f26e02e8fcd5ef0cf0baa95bc839',NULL,NULL,0); +INSERT INTO blocks VALUES(310686,'a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca',310686000,'c037ade6c0c1ab3458c4d3bba7d91e0cbed94027e3728e84d9facfe5763ef6a5','8fd8812c2f3696baa9f0f5714aaeba990fb7a1711c583937002babe776964c05','658a28fb1894e654ec06f9eb52f741d780b93fb31f2deea39cf06ac25c3840ee',NULL,NULL,0); +INSERT INTO blocks VALUES(310687,'c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8',310687000,'630096dcc99d532acf6415bf4504525aa85f460fd177c4bc82fd408efe59415e','2215a8448764b62467df6b53cd807cc9410850d73d728a81c753eb70de99e486','019870609adba0019c90f7dd9f8b17614d261c3cf7a61ae160b86bfa1b25fb37',NULL,NULL,0); +INSERT INTO blocks VALUES(310688,'3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822',310688000,'315c5a67d6b9b410a0aa70e0bd8efebe6f78757a09f91863c7f5e1efe47e9a9b','9312287eb460a866f6c18b0b28dd23fff23d408a84422a87d69a561447c9ffaf','7396798913c2aa1b4bcd2bbbfe65cdd71e7696a73381ffda432cc15edb0d3dff',NULL,NULL,0); +INSERT INTO blocks VALUES(310689,'d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df',310689000,'5c6ee4e9df30959f31d2232cdae7b13557e373982a03556ed1fb65aa5e3895c7','a7c5b3bc4269d9a63804bdc4e2693fd03e4e529b183510685df746092e94aa5d','5df7700c6470a74217bd1149ab2f74d95c72a2199afa414e0004ed291a05d26b',NULL,NULL,0); +INSERT INTO blocks VALUES(310690,'0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462',310690000,'1295c134cbb5678c7a4f70013dfe3eb624bb814ec039303fc10f2c7789e41a03','6310ce87234c11efea223c58d571cdbb3f04b51a3056236cd0f22cec7bf1e5c1','4ea45cd902e2b0822366150c090fe0fe6318c45be9863619512eb5931499bf9e',NULL,NULL,0); +INSERT INTO blocks VALUES(310691,'07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e',310691000,'76f74700787e68ae14b3812f53c32417f57de06ed6188b1992ca412570bc1ffb','774242c764edd3560409137905de9c9d818364aa94f62c47a621afe1087136ac','f4de1c5339512dcf2b1287e09d8877be2d2ef017f10fade68472c7371cfbf790',NULL,NULL,0); +INSERT INTO blocks VALUES(310692,'29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932',310692000,'7c0891d494e5abd9a44a4f7c70e67a547160856119c3ef06113f517e1ab9d390','df166db54b869212308c6a48d3ddb80bc0a84be52434c46d5e6e2d6499167bb0','508125f63c3de10d645e22ee4cc4f61950c86ad23474ccf5ac2b5e8910df7572',NULL,NULL,0); +INSERT INTO blocks VALUES(310693,'c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1',310693000,'0d30c6bb764b32d0ec856145453de6d0e15ec0b8a94f978f2d96c3c5d134912f','992af64c887f105b985137b441ef4a3af3ff902f5dbac355b91bf0ebaa234063','cac03fdc5399fe770bc905b3ec76aa9a46a8808b520426f319aa7faf455146c1',NULL,NULL,0); +INSERT INTO blocks VALUES(310694,'586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0',310694000,'582bf82bf4bf07a0d20259ae9026e726afcfff035ce715d13a473313dacaa5f1','52939845593123714b4bd665600642d14b61a384befa3498c7582806448150a1','44f8b452d9ac57fee090eb5d5626b32a388955bb30c5bca995ec3175e87bb4d0',NULL,NULL,0); +INSERT INTO blocks VALUES(310695,'a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538',310695000,'d5ca4a21b2fbe8121c241c097d9f76156106b345296426b5b55bc4885fba4b80','9b08253a46b87ab3df60af60b519dd0c689c0acaca38bcc33f01000bf6b871d3','cdb61ca3479bf5ad207d85590e721983539e58188ddf7f8b539e0e7a02b6463d',NULL,NULL,0); +INSERT INTO blocks VALUES(310696,'7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7',310696000,'75b37c234c5951fb06761175db6d2a9584aa779f35f2f1516ec828230b6b1383','deb12f7c45ab5944a6e08fb2933d3a435860f9e1d8a758486b5e5995258ca973','ffd24c9a2503318daab14dd046c526ed11ed3bfd5bb8207cf0048bc689ed4366',NULL,NULL,0); +INSERT INTO blocks VALUES(310697,'4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304',310697000,'ae9aa7c4e06059f148a8ed8bf2a4f69c492fac7109a778afbf6cc4d96d36dc55','663e67da5996a4c9877a6c6cb61730798695aee9d89674823917dee2d1ab9708','b6a66a5e44254ed9459a2fa8a198d060e218db5dce05a6e3904336be3ec5d0f3',NULL,NULL,0); +INSERT INTO blocks VALUES(310698,'ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53',310698000,'aa8b6ca04c8551bacd6f964f2521c07b30d3c07978c992dc59633894ad1baedc','9b6c282c7fb96cbca27fe6b73253cfc31b93ff71dc0d116ebd0d661c33adde58','6b61c09bd220de51ea7ce3730d0fb6562e321e30c180ed71088da4b2cc1bd71f',NULL,NULL,0); +INSERT INTO blocks VALUES(310699,'3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d',310699000,'66cf0537b2abf572ae579fdb3512d125c181e2a1835b38f89cfee64113922cd7','d91fc03fd15e2ca4fc59b7be29586b0c8f2942abca45ccb49f2fc84e3eff8f94','f9a65859e75811f5fff2ece7af021acfbe3f359717c438b682fbfee5c178a0ea',NULL,NULL,0); +INSERT INTO blocks VALUES(310700,'4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5',310700000,'43196ba8bf43fd138dd117cb0a9c1738d3a2c8917c2ea73893647a2ac0fbe0b8','1977d48057c66abe87f0bdffbcf4d501bd4b9fe138c0bc381409bc44bd503084','a6aed16c4649d912789340a2a6a297058790efbf230facad044428560dc5836f',NULL,NULL,0); +INSERT INTO blocks VALUES(310701,'9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1',310701000,'f235ba99322c9bf8dc115d7fe2b5e51db41b06026ac193718e47e89398c621f5','6b6c62d0facf03efea19bf2e8fa69ecd3c433d45a0ca6b3ed57ed0e5d69b1e2f','b7a4328312125afc3fb1ea33e0d2bb7b8fae879670b170208355a4a27dc48150',NULL,NULL,0); +INSERT INTO blocks VALUES(310702,'69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8',310702000,'059893c8ed0250380ad8102a8a17d60a92f1abf09000ff41766cbd846aa1efa2','0b912b59131e6aef7fb3313ef75bc138dc1f612d76e77cf583074564ddb6d35c','5a3dfae16547617feeeaed1657c4375f36a5cd2dbbbd2fa22e4faf759f3c15b4',NULL,NULL,0); +INSERT INTO blocks VALUES(310703,'b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218',310703000,'1734f9eb30868d2383fdb38bbda66b1b937209c143632aabc05bf1de167eda66','b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786','afb721e64a36bca838751fa2eca929a4fe485fbe69f8fc944e90de74019fd629',NULL,NULL,0); -- Triggers and indices on blocks CREATE INDEX blocks_block_index_block_hash_idx ON blocks (block_index, block_hash) ; @@ -948,15 +948,6 @@ INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A1603612857927 INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999690,310506,507,NULL,NULL); INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',300,310506,507,NULL,NULL); INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',50,310506,507,NULL,NULL); -INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',0,310506,0,NULL,NULL); -INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',0,310506,0,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999790,310506,506,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',7,310506,506,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',10,310506,506,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999990,310506,507,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',24,310506,507,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',30,310506,507,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',50,310506,0,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999990,310507,508,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999890,310507,508,NULL,NULL); INSERT INTO balances VALUES(NULL,'XCP',100,310507,508,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); @@ -966,6 +957,15 @@ INSERT INTO balances VALUES(NULL,'DIVISIBLE',1,310508,509,'4f0433ba841038e2e1632 INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92949130360,310509,510,NULL,NULL); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',1000,310509,510,NULL,NULL); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',900,310510,511,NULL,NULL); +INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',0,310520,0,NULL,NULL); +INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',0,310520,0,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999790,310520,506,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',7,310520,506,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',10,310520,506,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999990,310520,507,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',24,310520,507,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',30,310520,507,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',50,310520,0,NULL,NULL); INSERT INTO balances VALUES('myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',92999138821,310588,0,NULL,NULL); -- Triggers and indices on balances CREATE INDEX balances_address_asset_idx ON balances (address, asset) @@ -1083,15 +1083,6 @@ INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A1603612857927 INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999690,310506,507,NULL,NULL); INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',300,310506,507,NULL,NULL); INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',50,310506,507,NULL,NULL); -INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',0,310506,0,NULL,NULL); -INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',0,310506,0,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999790,310506,506,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',7,310506,506,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',10,310506,506,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999990,310506,507,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',24,310506,507,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',30,310506,507,NULL,NULL); -INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',50,310506,0,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999990,310507,508,NULL,NULL); INSERT INTO balances VALUES('mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',91674999890,310507,508,NULL,NULL); INSERT INTO balances VALUES(NULL,'XCP',100,310507,508,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); @@ -1101,6 +1092,15 @@ INSERT INTO balances VALUES(NULL,'DIVISIBLE',1,310508,509,'4f0433ba841038e2e1632 INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',92949130360,310509,510,NULL,NULL); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',1000,310509,510,NULL,NULL); INSERT INTO balances VALUES('munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',900,310510,511,NULL,NULL); +INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',0,310520,0,NULL,NULL); +INSERT INTO balances VALUES('mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',0,310520,0,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999790,310520,506,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',7,310520,506,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',10,310520,506,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',99999990,310520,507,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',24,310520,507,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',30,310520,507,NULL,NULL); +INSERT INTO balances VALUES('mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',50,310520,0,NULL,NULL); INSERT INTO balances VALUES('myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',92999138821,310588,0,NULL,NULL); -- Triggers and indices on balances CREATE INDEX balances_address_asset_idx ON balances (address, asset) @@ -1182,16 +1182,16 @@ INSERT INTO credits VALUES(310505,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',100 INSERT INTO credits VALUES(310505,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',10,'escrowed fairmint','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); INSERT INTO credits VALUES(310506,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',200,'escrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); INSERT INTO credits VALUES(310506,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',20,'escrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); -INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100,'fairmint payment','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); -INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',7,'unescrowed fairmint','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); -INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',3,'fairmint commission','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); -INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',200,'fairmint payment','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); -INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',14,'unescrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); -INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',6,'fairmint commission','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); -INSERT INTO credits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',20,'premint','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,NULL,NULL); INSERT INTO credits VALUES(310507,NULL,'XCP',100,'attach to utxo','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883',508,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); INSERT INTO credits VALUES(310508,NULL,'DIVISIBLE',1,'attach to utxo','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e',509,'4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc'); INSERT INTO credits VALUES(310509,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',1000,'issuance','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',510,NULL,NULL); +INSERT INTO credits VALUES(310520,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100,'fairmint payment','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); +INSERT INTO credits VALUES(310520,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',7,'unescrowed fairmint','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); +INSERT INTO credits VALUES(310520,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',3,'fairmint commission','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); +INSERT INTO credits VALUES(310520,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',200,'fairmint payment','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); +INSERT INTO credits VALUES(310520,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',14,'unescrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); +INSERT INTO credits VALUES(310520,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',6,'fairmint commission','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); +INSERT INTO credits VALUES(310520,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729',20,'premint','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,NULL,NULL); INSERT INTO credits VALUES(310588,'myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM','XCP',9,'recredit wager remaining','41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef',0,NULL,NULL); -- Triggers and indices on credits CREATE TRIGGER block_update_credits @@ -1273,14 +1273,14 @@ INSERT INTO debits VALUES(310502,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',5000 INSERT INTO debits VALUES(310503,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',50000000,'fairminter fee','c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7',504,NULL,NULL); INSERT INTO debits VALUES(310505,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',100,'escrowed fairmint','6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',506,NULL,NULL); INSERT INTO debits VALUES(310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','XCP',200,'escrowed fairmint','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',507,NULL,NULL); -INSERT INTO debits VALUES(310506,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',50,'unescrowed fairmint','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,NULL,NULL); -INSERT INTO debits VALUES(310506,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',300,'unescrowed fairmint payment','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,NULL,NULL); INSERT INTO debits VALUES(310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883',508,NULL,NULL); INSERT INTO debits VALUES(310507,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',100,'attach to utxo','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883',508,NULL,NULL); INSERT INTO debits VALUES(310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','XCP',10,'attach to utxo fee','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e',509,NULL,NULL); INSERT INTO debits VALUES(310508,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','DIVISIBLE',1,'attach to utxo','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e',509,NULL,NULL); INSERT INTO debits VALUES(310509,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','XCP',50000000,'issuance fee','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',510,NULL,NULL); INSERT INTO debits VALUES(310510,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','TESTDISP',100,'open dispenser','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e',511,NULL,NULL); +INSERT INTO debits VALUES(310520,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','A160361285792733729',50,'unescrowed fairmint','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,NULL,NULL); +INSERT INTO debits VALUES(310520,'mvCounterpartyXXXXXXXXXXXXXXW24Hef','XCP',300,'unescrowed fairmint payment','0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,NULL,NULL); -- Triggers and indices on debits CREATE TRIGGER block_update_debits BEFORE UPDATE ON debits BEGIN @@ -2623,446 +2623,445 @@ INSERT INTO messages VALUES(1296,310506,'insert','debits','{"action":"escrowed f INSERT INTO messages VALUES(1297,310506,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310506,"calling_function":"escrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','8cbff1793d3789466015880bc6f741a4dada23b4bedb18537e3d9081c3437e3b'); INSERT INTO messages VALUES(1298,310506,'insert','credits','{"address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310506,"calling_function":"escrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":20,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','a1277ca87b06a3639c77666d385c703ca7de3757144c78d213cf0809451751f7'); INSERT INTO messages VALUES(1299,310506,'insert','fairmints','{"asset":"A160361285792733729","block_index":310506,"commission":6,"earn_quantity":14,"fairminter_tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","paid_quantity":200,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'NEW_FAIRMINT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','2783aaa8e61e6615caacf8829212a86cdb5a5c3e151ee3a5b7a293ee3e7c93f0'); -INSERT INTO messages VALUES(1300,310506,'insert','debits','{"action":"unescrowed fairmint","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310506,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":50,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','3ce9b00188dcbc343af3408c5bc031d24e51139525a20cc8af4f567c581e109c'); -INSERT INTO messages VALUES(1301,310506,'insert','debits','{"action":"unescrowed fairmint payment","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310506,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":300,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','bbbbb330b3b6be30a68ac2bda0fce8771a5a726ede34fd108eaaebdc6c81f5eb'); -INSERT INTO messages VALUES(1302,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310506,"calling_function":"fairmint payment","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','819162f24a93806fdc85cf6165f7cfe3fdd5d1056e88065cf2bb85969971dc96'); -INSERT INTO messages VALUES(1303,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310506,"calling_function":"unescrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":7,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','e058035969e53553b0528464978649991dfc6077951f67a5ff2878fef94f7d1b'); -INSERT INTO messages VALUES(1304,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310506,"calling_function":"fairmint commission","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":3,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','305cf0f43230a2d6622bd51227a249298fc3fd7ccde47d59cf07d9eaa087e22a'); -INSERT INTO messages VALUES(1305,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310506,"calling_function":"fairmint payment","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','3241f831b56ec4cd9eda5585ce3e83cb675b95675c689ea22ed2a0134220eea2'); -INSERT INTO messages VALUES(1306,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310506,"calling_function":"unescrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":14,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','22729f34d6c88e88dd2b2b46f53604ef21a2b0bcd9c5ea56d5bccad92d9a94cd'); -INSERT INTO messages VALUES(1307,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310506,"calling_function":"fairmint commission","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":6,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','7fa7986a57b40c54ebda30259194b392ce206eba426c2bb99272f536debd3323'); -INSERT INTO messages VALUES(1308,310506,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310506,"calling_function":"premint","event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":20,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','92051b71287e2802bd5c007a5d3be1b81a9bd091f152418dae9b5b9c06561e01'); -INSERT INTO messages VALUES(1309,310506,'update','fairminters','{"status":"closed","tx_hash":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9"}',0,'FAIRMINTER_UPDATE','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','e6924aace8e8e084047b1ab190b5518280f1cebc89b7c4c3c03b1f69fc3a8ba6'); -INSERT INTO messages VALUES(1310,310506,'insert','issuances','{"asset":"A160361285792733729","asset_events":"fairmint","asset_longname":"","block_index":310506,"call_date":0,"call_price":0.0,"callable":false,"description":"softcap description","description_locked":true,"divisible":true,"fair_minting":false,"fee_paid":0,"issuer":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","locked":true,"msg_index":0,"quantity":20,"reset":false,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","transfer":false,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'ASSET_ISSUANCE','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','86dc44ea49af38f97976e85093951bfd4bd53eb84284b9f62722aba64c386a73'); -INSERT INTO messages VALUES(1311,310506,'parse','transactions','{"supported":true,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'TRANSACTION_PARSED','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','fc13c2fbe77b268d657d0b4d18224701f784ab17f021117c2a0016263b052bdf'); -INSERT INTO messages VALUES(1312,310506,'parse','blocks','{"block_index":310506,"ledger_hash":"d2e34b3aa45be0dd5a211b9748bc71049f42e08be27ed9e08ac65e1f1b5db6b1","messages_hash":"f19edd9de332ac85a37d441a7561c48f3d0ca8118c656a300733fbe36853a53b","transaction_count":1,"txlist_hash":"a6cab6e8bebae804eb791b48d0a484f6526553e3cce266b54b40afb32a02c68e"}',0,'BLOCK_PARSED',NULL,'5044c15c6601f4f7f9c9266a8f3dc9aa384ce5d8c4b91a513324052f9d0e6684'); -INSERT INTO messages VALUES(1313,310507,'insert','blocks','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0275a97f06c7b5da1013a5d6bf51551c87681eeda0cf6b9192f27fd299c2f36a'); -INSERT INTO messages VALUES(1314,310507,'insert','transactions','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"btc_amount":0,"data":"646d6e367133645332456e44557833626d795763364434737a4a4e5647746152377a637c346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383a317c5843507c313030","destination":"","fee":10850,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508,"utxos_info":"c7f048b97f07912138691b7d133baafe98a6a10ffb089e0b773f06ef945d5c36:0"}',0,'NEW_TRANSACTION',NULL,'31720e424176cddb0c97f3370e839e5932080a8c11a421d9473476140ff24557'); -INSERT INTO messages VALUES(1315,310507,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","quantity":10,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','58fa5b62dd860af1d2b707b7a0801b51097c205f743b50eaeaa4edd2021ea030'); -INSERT INTO messages VALUES(1316,310507,'insert','destructions','{"asset":"XCP","block_index":310507,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508}',0,'ASSET_DESTRUCTION','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','df338d100b4d07a3e1a38a6f8ab0a44d02ba74195d5950c209e7f95c2bb3ea5d'); -INSERT INTO messages VALUES(1317,310507,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","quantity":100,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','5192541211ccd2f8951f616a08b202464cabf21dfb58f83e230d27dd773dcbd2'); -INSERT INTO messages VALUES(1318,310507,'insert','credits','{"address":null,"asset":"XCP","block_index":310507,"calling_function":"attach to utxo","event":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","quantity":100,"tx_index":508,"utxo":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','19dc1f163fcfe04892baa7bccbb10cd2c01c353036b9cad5d94adeece39356ae'); -INSERT INTO messages VALUES(1319,310507,'insert','transaction_count','{"block_index":310507,"count":1,"transaction_id":100}',0,'INCREMENT_TRANSACTION_COUNT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','857b234950d998915b5ac60fdac26af3d47fc2ae29c3b0db1a373cc1f972722c'); -INSERT INTO messages VALUES(1320,310507,'insert','sends','{"asset":"XCP","block_index":310507,"destination":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","fee_paid":10,"msg_index":0,"quantity":100,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508}',0,'ATTACH_TO_UTXO','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','6ccade48078a857aafd507f396658b5504eec3a8958d4b95372a10c84966918e'); -INSERT INTO messages VALUES(1321,310507,'parse','transactions','{"supported":true,"tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508}',0,'TRANSACTION_PARSED','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','95d0a78deb7caad7e1d6266f4160944b9e1d29ea07ea9ed92c44c2b9a3ee8222'); -INSERT INTO messages VALUES(1322,310507,'parse','blocks','{"block_index":310507,"ledger_hash":"d494616b8ebe6083310da3b18bd59a01e03747e0290109b2985a0dacdf8d7e67","messages_hash":"a2d1455b2938eaa024da6bdbaf7a3a663391a983b6c02688e87156338cb1fb87","transaction_count":1,"txlist_hash":"6abb9b0caedb98bc7ad209096e5baba6418d80fb11ab51a8124d2e87e9a591e0"}',0,'BLOCK_PARSED',NULL,'b603a3aaf6a9e6360461cbb8746b18e744922883d1d43f6a13f59d60642fc824'); -INSERT INTO messages VALUES(1323,310508,'insert','blocks','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1222591e640d2cc69466b67a7681acb4e6ecaf1fc5175c6ada7009ecd1ba0f46'); -INSERT INTO messages VALUES(1324,310508,'insert','transactions','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"btc_amount":0,"data":"646d6e367133645332456e44557833626d795763364434737a4a4e5647746152377a637c346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383a317c444956495349424c457c31","destination":"","fee":10850,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509,"utxos_info":"1c6f52a3ca4d5f1698d2db3f107da787153bf686fc049f2792074916249fc27d:0"}',0,'NEW_TRANSACTION',NULL,'714796242ba666449a5dd5b367b48e9a5e1a1cd90e3032e754a3ec54eeac52cd'); -INSERT INTO messages VALUES(1325,310508,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310508,"event":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","quantity":10,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','ac2a796138242009af3e4e9039ab0d410e0402d314b4d66c4e3cc1d4503f5cb1'); -INSERT INTO messages VALUES(1326,310508,'insert','destructions','{"asset":"XCP","block_index":310508,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509}',0,'ASSET_DESTRUCTION','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','e307098da6153b20f20acbaab8842c4c217b626a86ab7c9d4c2b94ce4041d1ac'); -INSERT INTO messages VALUES(1327,310508,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310508,"event":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","quantity":1,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','cae527ef3af74a79e247d42e4f6e0693cd6dac91efac77adcdf7123b8ccd088a'); -INSERT INTO messages VALUES(1328,310508,'insert','credits','{"address":null,"asset":"DIVISIBLE","block_index":310508,"calling_function":"attach to utxo","event":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","quantity":1,"tx_index":509,"utxo":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','16b00786ae2a7aad59a673d5b001713790b652a75351e226ae6ed088dadc589d'); -INSERT INTO messages VALUES(1329,310508,'insert','transaction_count','{"block_index":310508,"count":2,"transaction_id":100}',0,'INCREMENT_TRANSACTION_COUNT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','8bf691e3e63c65556edaea5599837486a6f08b050186786cc0c31cb499f93b1f'); -INSERT INTO messages VALUES(1330,310508,'insert','sends','{"asset":"DIVISIBLE","block_index":310508,"destination":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","fee_paid":10,"msg_index":0,"quantity":1,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509}',0,'ATTACH_TO_UTXO','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','36838e0cf17d5e1187badce4465ccf4dec13ade5ba086ef7a910aa30600fe110'); -INSERT INTO messages VALUES(1331,310508,'parse','transactions','{"supported":true,"tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509}',0,'TRANSACTION_PARSED','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','74b97235bc54ea41d81852508584bd6169577162d3942db6886ff3c38778ed5a'); -INSERT INTO messages VALUES(1332,310508,'parse','blocks','{"block_index":310508,"ledger_hash":"1b96f53ad5dbac5355384c4d23cb9b3b3ebf0b66ea33cfb6d3064cb8f4ea3ec8","messages_hash":"34e947783dccbd14ae84a017a050b567ec11e8dc801e4dd3a990930a303892e5","transaction_count":1,"txlist_hash":"55c18d8da0b5d415d82b40229995123dcf2151b91a8cf6c4e29e8a03c32a847d"}',0,'BLOCK_PARSED',NULL,'9acdeaeceaca751faab94ffa63cd2c939a5290aaed956094f7e190a5e8ea1fb1'); -INSERT INTO messages VALUES(1333,310509,'insert','blocks','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'382648228615ec99d6f866b56cc98b983161c3e7251ad91ba9ecbf55b8cdef6c'); -INSERT INTO messages VALUES(1334,310509,'insert','transactions','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"btc_amount":0,"data":"0000001400000023ded9aaeb00000000000003e80000000000000000000015546573742064697370656e73657273206173736574","destination":"","fee":6800,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510,"utxos_info":"5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0"}',0,'NEW_TRANSACTION',NULL,'9123b31fd4f2115b30c61d467a781d3b89baafde916db79a9f7677a71ecef636'); -INSERT INTO messages VALUES(1335,310509,'insert','debits','{"action":"issuance fee","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310509,"event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":50000000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'DEBIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','b4a7592d7d5c2f9ea59456b9d0288efaf524d0728654f67ad7e092e1f8438dc4'); -INSERT INTO messages VALUES(1336,310509,'insert','assets','{"asset_id":"154062662379","asset_longname":null,"asset_name":"TESTDISP","block_index":310509}',0,'ASSET_CREATION','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','ce879f11ba8249831779994a034eb0d7bb0bf7107b7fde18cbd9f993c5afceef'); -INSERT INTO messages VALUES(1337,310509,'insert','issuances','{"asset":"TESTDISP","asset_events":"creation","asset_longname":null,"block_index":310509,"call_date":0,"call_price":0.0,"callable":false,"description":"Test dispensers asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","locked":false,"quantity":1000,"reset":false,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","transfer":false,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'ASSET_ISSUANCE','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','b9fdb0340c13da3f9cc9c8532b96ba7f20957ddfb90ee373b3905adcdd527121'); -INSERT INTO messages VALUES(1338,310509,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310509,"calling_function":"issuance","event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":1000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'CREDIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','f9a4d58fe455f3f308744ca86a685089525eb00489d18ba43f4b0e8cd1a0eade'); -INSERT INTO messages VALUES(1339,310509,'parse','transactions','{"supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'TRANSACTION_PARSED','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','b007f1001fa1da336444ba8a23dce80ab989f049fc70c3cdbbe664132098f3e6'); -INSERT INTO messages VALUES(1340,310509,'parse','blocks','{"block_index":310509,"ledger_hash":"8842d3d22bd2fa0d1e3ae5e34245085192c6c5b565e92a644058a31cc34f9a08","messages_hash":"f1bdbf8b2ab589653e9e24ed47fd277c9429bc6f770f0af980f2ab2a4a096104","transaction_count":1,"txlist_hash":"e8a5ca9c861bda1033047cfb0896cc92d694d0d32343e54b78d861ad5daada14"}',0,'BLOCK_PARSED',NULL,'c43c7a6e245c7cb6f146cc10d9e3f1f547a17311e635d631e5c75e8f35ada56a'); -INSERT INTO messages VALUES(1341,310510,'insert','blocks','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'18bf802e200d8cb8e6fe1177eec35c940605f9492361af70531c1a14ba2c720a'); -INSERT INTO messages VALUES(1342,310510,'insert','transactions','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"btc_amount":0,"data":"0000000c00000023ded9aaeb00000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511,"utxos_info":"b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1"}',0,'NEW_TRANSACTION',NULL,'bf7c82fa793cd64ce60efdcb2f8d8714b7636f4298cfd997e9f58b9853168161'); -INSERT INTO messages VALUES(1343,310510,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310510,"event":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","quantity":100,"tx_index":511,"utxo":null,"utxo_address":null}',0,'DEBIT','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','32329704b3770400bb3de4f4428e62ab2200dc106de730af9071b94ec73fa5d3'); -INSERT INTO messages VALUES(1344,310510,'insert','dispensers','{"asset":"TESTDISP","block_index":310510,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'OPEN_DISPENSER','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','6088672c8317db8b72126432bf03722842a5ac86c3bc633ef0d24fc0d8add959'); -INSERT INTO messages VALUES(1345,310510,'parse','transactions','{"supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'TRANSACTION_PARSED','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','f78ed0bad52f5a9ec38999f160b6fe98dec944705b854a8105fd830ffe6ddfc6'); -INSERT INTO messages VALUES(1346,310510,'parse','blocks','{"block_index":310510,"ledger_hash":"99da5c9487749dda0fc8b0557a982108b7abce0972a944ea0f08c15b0c2e1b4e","messages_hash":"1227c5ff4c580ae4ce01f8279216acb5628d6a156b7d34156117e2f050408b3c","transaction_count":1,"txlist_hash":"58e8efe3ac6c19011d997f77a3f38bfd99ccf17ff15615ceeaa8fd1d02f2b73b"}',0,'BLOCK_PARSED',NULL,'e559b7d441c11310382ecafa0686abff12dbfc986f20377a8d57cbdb782ad1de'); -INSERT INTO messages VALUES(1347,310511,'insert','blocks','{"block_hash":"e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c","block_index":310511,"block_time":310511000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c1686e5c6cd195b519b9ddf1c06c6da3eeebb74fb7d46dd7ed1f7f30d4e9b016'); -INSERT INTO messages VALUES(1348,310511,'parse','blocks','{"block_index":310511,"ledger_hash":"75e2822f39decd668b61334c4e6d6ba0cabee8ceae54a5dfa09212d9e6158334","messages_hash":"9d4bc725f81077e675ad2b559f4d5fc2c7e8147faf8d144d08c04876a432d44b","transaction_count":0,"txlist_hash":"cb29377641d10173aed43643d32f6935da6948a7fdc854f4c5f7f3bf8d6f9721"}',0,'BLOCK_PARSED',NULL,'5271f2ed720ae156a5acf9ed6f480a01c36e0f8f3ed476173baa7fa70fcb4d24'); -INSERT INTO messages VALUES(1349,310512,'insert','blocks','{"block_hash":"8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5","block_index":310512,"block_time":310512000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7a535c0423d74d885aa56b4dcb6fe5b771f638a42bcaa12c3271d183a2893908'); -INSERT INTO messages VALUES(1350,310512,'parse','blocks','{"block_index":310512,"ledger_hash":"3f94facdb277489e761513f5e36de38331888c7604e9de480423a219894c7103","messages_hash":"426031d0bd0a2691d43534a0c50d069919277679f9bcc3352e1a9139dc01dc0c","transaction_count":0,"txlist_hash":"4f745e593c05074836d20561b50b884ffd4e1c17eb9666ace1c2eea5f51e7d50"}',0,'BLOCK_PARSED',NULL,'a1aafd100e040072fb987e6c1091b7543d22b5bdc42af690b1d7a837a107f598'); -INSERT INTO messages VALUES(1351,310513,'insert','blocks','{"block_hash":"ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66","block_index":310513,"block_time":310513000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'991ceecc1d77b4861a4cbca06690131adcf699f078d20dbe793a46958e5e4cd3'); -INSERT INTO messages VALUES(1352,310513,'update','order_matches','{"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","status":"expired"}',0,'ORDER_MATCH_UPDATE',NULL,'4bcd20b98b00e7f0f996ffdcb8f5049eef279693bd3ff882cb207b1dff53d4ef'); -INSERT INTO messages VALUES(1353,310513,'update','orders','{"fee_required_remaining":900000,"get_remaining":800000,"give_remaining":100000000,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE',NULL,'fbe89490741658def4309da8759214631a45b059d2f81e5a7ff8aa39bcc41464'); -INSERT INTO messages VALUES(1354,310513,'update','orders','{"fee_required_remaining":0,"get_remaining":100000000,"give_remaining":800000,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE',NULL,'71f27713834cd7d54a60ef1e10767531bdaacad8d4c6d5b5ea024981be9dd330'); -INSERT INTO messages VALUES(1355,310513,'insert','order_match_expirations','{"block_index":310513,"order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns"}',0,'ORDER_MATCH_EXPIRATION',NULL,'09d3c46d27cbb0f980418b3db466b5b73bc5b134cf6bbb81fa896a97c746014f'); -INSERT INTO messages VALUES(1356,310513,'parse','blocks','{"block_index":310513,"ledger_hash":"95fa563ac99c86ef29c53271bde2a025b3b1b9d50d61f84cea7da5d65ae56f91","messages_hash":"83ab7d2500a6bd0c7b0de67284ca9566b0df7cdc0db5ea61f62d7c215d5cc91d","transaction_count":0,"txlist_hash":"e82379e2bd481f39e310670c046d855855c476a4bd0dab621ea06ccd2ac136fa"}',0,'BLOCK_PARSED',NULL,'50b64c9f63ce66e7aca677ad28278945cad1e6324606a4e36c6e698d99c900f6'); -INSERT INTO messages VALUES(1357,310514,'insert','blocks','{"block_hash":"39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7","block_index":310514,"block_time":310514000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d4cc56156d3f24fcfbdd726fb9fa162d41fbae8f7d46dc1e90cd61682ab836df'); -INSERT INTO messages VALUES(1358,310514,'parse','blocks','{"block_index":310514,"ledger_hash":"1e6610a2d2c2f692b83f48da7b235926c87e72981da5abbf8b27ba383215bde0","messages_hash":"c6354a302be18f6360ce94327224846ecbc2916172fbc797aff8a34cc2975e26","transaction_count":0,"txlist_hash":"c99f21e4275501cdcadb134b8a409da50024832c8ca849deda3161d8b026f1a1"}',0,'BLOCK_PARSED',NULL,'7e2c10f662b996b9295b71c00ba77cb9bac62daeaa73599b621d31c888e3c428'); -INSERT INTO messages VALUES(1359,310515,'insert','blocks','{"block_hash":"57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8","block_index":310515,"block_time":310515000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e547514b1f4d900475650fabbb9144d6b6583e85f815f9fffe6ea3339393ab1c'); -INSERT INTO messages VALUES(1360,310515,'parse','blocks','{"block_index":310515,"ledger_hash":"4f09e2e6412ed7f1c152e86987439ce1d3e162163830d26fb5229d6825891948","messages_hash":"b475dc4626bfd8d25bde2c9bf05357da3f9b10a573deb1c2d898af906382ee9c","transaction_count":0,"txlist_hash":"ee33ce8f40db45f132b15d60daa3935ee8da4593c31f65ea269687594a2c5051"}',0,'BLOCK_PARSED',NULL,'37236b04e0b668b2d840068b21e041f1adf85d7aff24d9bbcc52e5456b6f1665'); -INSERT INTO messages VALUES(1361,310516,'insert','blocks','{"block_hash":"ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7","block_index":310516,"block_time":310516000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4cd23bcec54fb16983c143188eb36450b036c24df316bdc3152fb86e5ca75819'); -INSERT INTO messages VALUES(1362,310516,'parse','blocks','{"block_index":310516,"ledger_hash":"b878bef5654a7517edd013f609fe27f8f6681f806b8d43fa4569e96dac33a32a","messages_hash":"02f832da8d21c4943c0c86db06ba98cba64862ca49eb5bf64a06e6e1a38ad2a4","transaction_count":0,"txlist_hash":"a461fb607e3e3480b92d679204388b0aa2d2785cf5860e3539be8b41e1702341"}',0,'BLOCK_PARSED',NULL,'f424b63f7b058117e62ec317b5567766e5737eb97fa7bc0eda181f68d2d71d96'); -INSERT INTO messages VALUES(1363,310517,'insert','blocks','{"block_hash":"defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407","block_index":310517,"block_time":310517000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2f5cdc2585b6913873e5536feac9c30e2b81991c5fc4001713054d6bd06c1042'); -INSERT INTO messages VALUES(1364,310517,'parse','blocks','{"block_index":310517,"ledger_hash":"652e89be97ac3684609a4b6a10dce6eb5f74e1ce9fafbaa2cd02320fc322d85f","messages_hash":"24f7fa89093e93ec1a75d73f39c5c0171ef4f8cfc102a51d1afba9d260634a78","transaction_count":0,"txlist_hash":"9bacdf0026c8297570a7d50e6c372bd5a04ed7f748f820b33e7e93340ecb69fd"}',0,'BLOCK_PARSED',NULL,'89e6460378ab6cd0c94c0a3ddb6dea02e915207b88e688e644ee528b074b011b'); -INSERT INTO messages VALUES(1365,310518,'insert','blocks','{"block_hash":"41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5","block_index":310518,"block_time":310518000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e4b2a8b883e3603b50f8f33d7df93c44da0245749da723e03a774af9f05af6dc'); -INSERT INTO messages VALUES(1366,310518,'parse','blocks','{"block_index":310518,"ledger_hash":"2511ff65a406e7748f529a19968884ac8c3c140a203319dde46566b8d9c21340","messages_hash":"cec7e18d5b91ef1f2bdd8e2842bae7271062218385e8c6d38a40d6f2cac36248","transaction_count":0,"txlist_hash":"66af0cdab6c52ca6b8ce731143739553d62e1986de0478e346dbc42e570f1503"}',0,'BLOCK_PARSED',NULL,'b7230144b8a211dbda606cbb80312d526384de8c449a98b52f2961b8e45c7ebc'); -INSERT INTO messages VALUES(1367,310519,'insert','blocks','{"block_hash":"9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a","block_index":310519,"block_time":310519000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cbb7d0808dc102ee5903a048e1d0fc9e3a825d932a957015d784fcf522515228'); -INSERT INTO messages VALUES(1368,310519,'parse','blocks','{"block_index":310519,"ledger_hash":"f0e32de8b078d3ae8cee89841ad40462c7bd9657a5f5bacf45dafb4c41db871c","messages_hash":"e862fa475e9515aee6897475c7b2fadfdd3df8f0e753b6b4bae272af10b51845","transaction_count":0,"txlist_hash":"67662c882b46c7a5ac62a01e7ca43e1290e1fee20a68ebbd1011b93b9f8d00d8"}',0,'BLOCK_PARSED',NULL,'c6bbcc16d2b98280e1bc4119e35d4c7ba3643aee46c8a933529ffaa21aeb6300'); -INSERT INTO messages VALUES(1369,310520,'insert','blocks','{"block_hash":"ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680","block_index":310520,"block_time":310520000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0bbbd0a8fda5d3920e3920ce322850b4d0aa9c151deeed628a3d90fd7e402a7d'); -INSERT INTO messages VALUES(1370,310520,'parse','blocks','{"block_index":310520,"ledger_hash":"21f8e8433f145298a88f1e3e96b93b3f56a78bbe1228bb989e32ee4a77ef9dfd","messages_hash":"1225035375b39c594596e4ae27ea04676f660484537f9f16690da48922925f06","transaction_count":0,"txlist_hash":"4ae19f415141f11f6c3b72d24512114ff7c06d201e2ee94aefb58e9f1921964b"}',0,'BLOCK_PARSED',NULL,'f1bce8ebf004e96331384a56b11f2693373cfbbd723d219f23b1dd2926d0f447'); -INSERT INTO messages VALUES(1371,310521,'insert','blocks','{"block_hash":"df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598","block_index":310521,"block_time":310521000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b4937518639b70461fae8b4f8aec8d818d25b113de1abe617924d75674597bb8'); -INSERT INTO messages VALUES(1372,310521,'parse','blocks','{"block_index":310521,"ledger_hash":"2db78e0e6098bddcf2d9b736717dc7a847beb8a2caead23526a7295349bc5fd8","messages_hash":"835bd3153c94167b0d109456e09d41544e94123b0c46124930c46ed42cf0ec6a","transaction_count":0,"txlist_hash":"243a864c8243f71fa9cfbbbb25e23547337dc04b074d1aae2408a82b11ad3c15"}',0,'BLOCK_PARSED',NULL,'58a0101e0d626ce9faab02f22083ee7b3516411add770cbca79fe8d46d002c0c'); -INSERT INTO messages VALUES(1373,310522,'insert','blocks','{"block_hash":"6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21","block_index":310522,"block_time":310522000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1494685c69ac68e36ff6b838238325ba83af95378e091561a590fdd008e38743'); -INSERT INTO messages VALUES(1374,310522,'parse','blocks','{"block_index":310522,"ledger_hash":"5c8add5c7f541c3dc9c801eadb506037cd0cebd84e3be0a37b3dadf60a46a3a0","messages_hash":"17aaaa53a67562934b83a804b8c36e00b79bbe3c914f79623ca8a6450ad95fc7","transaction_count":0,"txlist_hash":"f8d7f3eeef9c11dbb8c8ec8bf5c06e4eacfc812151526c44a4208bb8d585a973"}',0,'BLOCK_PARSED',NULL,'189d58f1f6b6b0925c5917de24a2b31e0295d01b616a3b3c1e6d5fddc876eb3f'); -INSERT INTO messages VALUES(1375,310523,'insert','blocks','{"block_hash":"0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453","block_index":310523,"block_time":310523000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'27e0b670a17a8c5f50eed13e9d30d00cdc2aab8bca387198e8e6ea7d72e923b6'); -INSERT INTO messages VALUES(1376,310523,'parse','blocks','{"block_index":310523,"ledger_hash":"06a394efdb543d37060d931b5279f84e03704ddc706f7d5de6314f172d741a0e","messages_hash":"36412ed56ca125b6f4e6beab02684c7aa9dc68bf62871046afa063fb91008706","transaction_count":0,"txlist_hash":"065b22682abbad6d9076204a74a4be79acb71b8a8fd715ad334c3351f35f75dd"}',0,'BLOCK_PARSED',NULL,'f391b7e102fc72efb70867199fd26cccaa9c26864520b0e9c1126c8838013bc1'); -INSERT INTO messages VALUES(1377,310524,'insert','blocks','{"block_hash":"b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655","block_index":310524,"block_time":310524000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8ba9f524ad6d4a15e234d0f1a67ca410e40594c2cab12b9992fa36df12b0b79b'); -INSERT INTO messages VALUES(1378,310524,'parse','blocks','{"block_index":310524,"ledger_hash":"7d41fedc94049016674c859bbf11e47f1e29218b7bf0037068052ef3fe3355dc","messages_hash":"14b05fa8e0ab9565bd5d9bddd85fbd7030f15472b4dadeb0cb3f5c8496d6a9a2","transaction_count":0,"txlist_hash":"7b1d9d04b71c2b8f7aa31cdef567336e6f1dfba44fcb4915696ab498c72364d0"}',0,'BLOCK_PARSED',NULL,'d9ea5670f8fbfea86f702514ce5233a330a221e2e75d02741760569b3467231a'); -INSERT INTO messages VALUES(1379,310525,'insert','blocks','{"block_hash":"2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9","block_index":310525,"block_time":310525000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'73245dec8d7e050bb5bb45333036868e23a8f4ae77365e311fe534f4f515e985'); -INSERT INTO messages VALUES(1380,310525,'parse','blocks','{"block_index":310525,"ledger_hash":"8fe5e326806e282f22c556ab8d726c562a9bd7372f090751a8b7136611bf1ee7","messages_hash":"f315e1e9b3e71d83df3c7021f5e673456b33f39d63737cc51ecfebeb5f779e52","transaction_count":0,"txlist_hash":"52694ea9983ac76659645946334a071b7b5e86e295155526e3a27cd87d81cc87"}',0,'BLOCK_PARSED',NULL,'fcfe8c20aac85190c55758b1d8a3496e52a46c6fcf593b357917f92bd450cf60'); -INSERT INTO messages VALUES(1381,310526,'insert','blocks','{"block_hash":"07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d","block_index":310526,"block_time":310526000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'18d2631df914e9e2b2b1b9cb42b7210805516314ff9b5f917fbcfd92fa3e0e3f'); -INSERT INTO messages VALUES(1382,310526,'parse','blocks','{"block_index":310526,"ledger_hash":"6e0ef4f0f7097d90ddeabc3c00106113d91f9def26c8bd052e2b48093a57dc6e","messages_hash":"504e542e909d0ce8495a313aa9221fbcd02c7367eb55834bbf009b8b56c9233a","transaction_count":0,"txlist_hash":"7c47526dba085953aa0d343f0e5b51520d69f92b3046013d0fa0ed6632b74b4b"}',0,'BLOCK_PARSED',NULL,'dcbb4a8f69633b6ad2a9d66ace83c301ac146aeb655de14fff01f5b87c1f0bd2'); -INSERT INTO messages VALUES(1383,310527,'insert','blocks','{"block_hash":"5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db","block_index":310527,"block_time":310527000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'380c5d973e39407e45c48fd1460d7ea0c25bab5779161d7f8153ebcb67b6a3f8'); -INSERT INTO messages VALUES(1384,310527,'parse','blocks','{"block_index":310527,"ledger_hash":"a730bfdba793e146cc3f80c875c33a390bbd3200fb8fbcea65dc5f307a15c31c","messages_hash":"9c3924d13454430eb4548ffb09964c5fe48c9be11b580bf09f13aef9bedf909b","transaction_count":0,"txlist_hash":"8d0d0b180ebfe5738144b9e1f8e81f74a90cd81fc7bbcd6490881b8554ba12b8"}',0,'BLOCK_PARSED',NULL,'bafcdae52be012dbccdbf734a0109f69650f24358fa34c420d92ddb684a6c45a'); -INSERT INTO messages VALUES(1385,310528,'insert','blocks','{"block_hash":"a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5","block_index":310528,"block_time":310528000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7b51930117452b9a892a4adb0935f6a5901d17fea73db25a04755fc6903788bc'); -INSERT INTO messages VALUES(1386,310528,'parse','blocks','{"block_index":310528,"ledger_hash":"cf9f4b5a41ed1bc8e054e1702b5c9879f36f1430fe665ed04f161e505404501d","messages_hash":"05220c6bdfec2f5cc1469737ab8402c7f70820b5687ff771cba4be8a1f02e0d7","transaction_count":0,"txlist_hash":"6f1b36c493186bfc813d2e3638d0fa2dc68c2ca7f0823bf3935a2c7d2539da9f"}',0,'BLOCK_PARSED',NULL,'cfff72ab121e7728b2d5e475c5255200dc182a4eb4dcd1d29ce0f806356838c7'); -INSERT INTO messages VALUES(1387,310529,'insert','blocks','{"block_hash":"7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b","block_index":310529,"block_time":310529000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5b5cbbca9da5fdf5e8f097ad0451d0dc36f9f9dbebaaac02600e9ad47c0b24d1'); -INSERT INTO messages VALUES(1388,310529,'parse','blocks','{"block_index":310529,"ledger_hash":"bbac0b9c99cc7e8df7b27295999d4b52ffd603b52a90fc2ee18f4fc51ab1471b","messages_hash":"919635e8583a6110f8497d5716d532d6cb832801649389f92ae1952c23652151","transaction_count":0,"txlist_hash":"7e4232af9977eb670466868d83e6df5ddcb39d899f33ef653b87d58b422ab64d"}',0,'BLOCK_PARSED',NULL,'c02cd735de74e73f28deb0a7f5631c54bc9bf792bcfc999abe82f40a203ac3e6'); -INSERT INTO messages VALUES(1389,310530,'insert','blocks','{"block_hash":"f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110","block_index":310530,"block_time":310530000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b6a87a97bee42d14ed1a21353d0f4961aebdf4a8866ec46258566df5cae52c86'); -INSERT INTO messages VALUES(1390,310530,'parse','blocks','{"block_index":310530,"ledger_hash":"80db4f033b0adfc86ef43309e703ae2862c143dfd927194576af420ac2d17d1c","messages_hash":"c69df884ca4d6e5c7e1fef3c1f5249a8e532f312458e8bf87079742bea523705","transaction_count":0,"txlist_hash":"7e4077941dd95a2b0e51b0ad680935a7232fa5cf31f664150510172e4c2e6da1"}',0,'BLOCK_PARSED',NULL,'799b9ff1ad9a8df328c537147794674b7654c9269c7706ec15301a4fb2a54e86'); -INSERT INTO messages VALUES(1391,310531,'insert','blocks','{"block_hash":"764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15","block_index":310531,"block_time":310531000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a69844c14584065b4888c347611ecaf3ca927c9fb9cbbb57a64ccea929087738'); -INSERT INTO messages VALUES(1392,310531,'parse','blocks','{"block_index":310531,"ledger_hash":"3fe09cfd91c8284a31e545f63a2a8462a5c9d8c851c065272d36ae4618e4d849","messages_hash":"666625d2555c2db293b3b11ea1fd91473da269918fc82c0d3fecf2a2ce02ab44","transaction_count":0,"txlist_hash":"1245439b0d3fff0822ebed6e6ca34f99f24194cfb36fb2649ed61b0ac26ed7a8"}',0,'BLOCK_PARSED',NULL,'4e22b1b91f26044b1f457ccb66baa7b61e12aa6b8addfa63a7e52f2d29d1771c'); -INSERT INTO messages VALUES(1393,310532,'insert','blocks','{"block_hash":"4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836","block_index":310532,"block_time":310532000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'83d160d91485bd4ef88b7979c936f9909ff4537f3ee29937e18c92db25d66a0a'); -INSERT INTO messages VALUES(1394,310532,'parse','blocks','{"block_index":310532,"ledger_hash":"9871ebbbda65fb698a50235df2c22fd2283dab1a083f9ba2d31febecc2669852","messages_hash":"3f257c8f58cee62ce4164c0131b3575cecd627be50680b1f890b46765a646c5d","transaction_count":0,"txlist_hash":"6004fe4cc5ce025759106802ff56bddaf546e7a9d71510e49a4098766a794726"}',0,'BLOCK_PARSED',NULL,'01ef8eac76dca32d2d26222cd426ac2835407317505734767bee26eed9c60a8f'); -INSERT INTO messages VALUES(1395,310533,'insert','blocks','{"block_hash":"4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912","block_index":310533,"block_time":310533000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a41968d6d19ff6b624e07b38f4c95b944b43e11838c0477b52bcf968aa5a847b'); -INSERT INTO messages VALUES(1396,310533,'parse','blocks','{"block_index":310533,"ledger_hash":"5eb75c91baf2549f7905a51ce3dd926721cb7fe2052584eb393c3af649414403","messages_hash":"a7aeb1dd865847604745f1a573fd54b46802b15710a4e8ec7016b0f374be41f5","transaction_count":0,"txlist_hash":"b9a73939683499b11ce35245014153232ddde14a49fbcc8cdcac3f02c9265a72"}',0,'BLOCK_PARSED',NULL,'bebd57180b6fcf266e7962c763d29a475c341331bf597c2c9d41cce475e8938f'); -INSERT INTO messages VALUES(1397,310534,'insert','blocks','{"block_hash":"2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad","block_index":310534,"block_time":310534000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6682c78fcec50f680089129f58edf47e7d4b8bf7746ea2822f316caf3881df27'); -INSERT INTO messages VALUES(1398,310534,'parse','blocks','{"block_index":310534,"ledger_hash":"a291950484aec7e60f0fc17ed29d3908a5343ee24b3a8b926adcc2016c436aba","messages_hash":"92f4c332c7d4e7ee6fc1f1d79b6dbef85bacb4eb52074b09bd276c076708d06a","transaction_count":0,"txlist_hash":"36dfe8e8614a4f5046330df939031d7618e0c5ec9a5e9a23adfb5abf81b17832"}',0,'BLOCK_PARSED',NULL,'fce418f3dc53cd1fcb67a55a5cd385a9c67be9c1dc0abee4a2bb901ecf3960c2'); -INSERT INTO messages VALUES(1399,310535,'insert','blocks','{"block_hash":"0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce","block_index":310535,"block_time":310535000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cfdeba5a4d37cafadbf236e2b9f5d2f8237fc0ffde9e3ecd7e879f8415fdc473'); -INSERT INTO messages VALUES(1400,310535,'parse','blocks','{"block_index":310535,"ledger_hash":"fdc4940a776dd241bf5caaa5875fac2d1d869ec438ccb6ea96b67c1942bf9c7d","messages_hash":"bc583defc3c0928f1201a8733b340b17d66854021a38484570758907c08fffb2","transaction_count":0,"txlist_hash":"9be9aa1d1972bdb4febf132b2003528501375ed67a70a92efdebdeb4c1b98a90"}',0,'BLOCK_PARSED',NULL,'21ca99b695dc87218618b1cb9f47583d235fd8a5699c8c70a0f6085704be4e79'); -INSERT INTO messages VALUES(1401,310536,'insert','blocks','{"block_hash":"dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018","block_index":310536,"block_time":310536000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'df45c7f49b041bf45368bf4ceac70b8ab2a64ace584fff756a9aa432f9f4f4d0'); -INSERT INTO messages VALUES(1402,310536,'parse','blocks','{"block_index":310536,"ledger_hash":"a18b4922df0afa7c7ee49756eaf808c7cc4d9d05cfb9c9077a165b2f592d95eb","messages_hash":"c1e8b7741a7724641ffa1a82dd951186f09c1647f8ce7ce1e6ab525c16338533","transaction_count":0,"txlist_hash":"f2187b1c129b489914599faed5415ba0d52a0bc44e49453df54648a30f505ce2"}',0,'BLOCK_PARSED',NULL,'8549f1031f86e9dd4ab48bd385893701d46bb64857ad07bf07ac3b94caf672a3'); -INSERT INTO messages VALUES(1403,310537,'insert','blocks','{"block_hash":"944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d","block_index":310537,"block_time":310537000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1929d40df56bd88d3e0483e7f077e443752954d83114b034c60cb275426ab541'); -INSERT INTO messages VALUES(1404,310537,'parse','blocks','{"block_index":310537,"ledger_hash":"a0761e85b4872b162dbfe429f4fecac2e73e6e03a0a1ae6488327003d8630b25","messages_hash":"b55901750fc8eae849b2436fcb86ad92e67c65782dff7caa014be480f1c36210","transaction_count":0,"txlist_hash":"849255d12eb06d2dbf9ebd04fe0a99602216890abe7cb6faae4b13fa3dc0b3fd"}',0,'BLOCK_PARSED',NULL,'6082e3cef9490a0097c94b4a4f6688c52e50482c94640844b571e2345a8d4216'); -INSERT INTO messages VALUES(1405,310538,'insert','blocks','{"block_hash":"75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd","block_index":310538,"block_time":310538000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7fb2e7ca9fec69a8bcf6c3a48a6d44bdd115d72979e29c81fa4cd024a6f4be1c'); -INSERT INTO messages VALUES(1406,310538,'parse','blocks','{"block_index":310538,"ledger_hash":"44822634a5906e095afbf44d44daeaa36199d6af3d6c8c00e731e88fe953e36d","messages_hash":"7d2250ac3d3a16cadd09c362cfb75f37ab216ec09efd5c88156fb1b82d2dad45","transaction_count":0,"txlist_hash":"8ab5b08a8f5f57d62cc8fdaefb001fb34757bc7dfa355311af7e993338c15e80"}',0,'BLOCK_PARSED',NULL,'9caa629a83a59798192bd891bb6d169496747da2a00c1ac89aa02a42abfa9dc2'); -INSERT INTO messages VALUES(1407,310539,'insert','blocks','{"block_hash":"338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3","block_index":310539,"block_time":310539000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bea04c092c7b27721040b5e41a606e206a33de232f96f1193008fac3c0db592d'); -INSERT INTO messages VALUES(1408,310539,'parse','blocks','{"block_index":310539,"ledger_hash":"4f5a26997d376667b7c37e6d95e207fe429c09c05e5367b3db0b6a8fb74d23af","messages_hash":"bc46707dbc59f1e220e0b495f1f0efc12a9917f9bd9147d446c8b87a93d029be","transaction_count":0,"txlist_hash":"f889de9308ec0bbca7f214cc8c81030ec5317cb72dddbb97dd3b00a002c4fa64"}',0,'BLOCK_PARSED',NULL,'ca69f32c27bf029c3eae5195115b5c058165a389cd10a413f22e790a211b5ddb'); -INSERT INTO messages VALUES(1409,310540,'insert','blocks','{"block_hash":"0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d","block_index":310540,"block_time":310540000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'251d01d54bbe94339ee2460632d2f958901162ee83fa6ea55cbe0e60430cb7b4'); -INSERT INTO messages VALUES(1410,310540,'parse','blocks','{"block_index":310540,"ledger_hash":"8a87004e3a64106806696f71d7efb9bcae3135c322f297ad7de379c29ec8313f","messages_hash":"ea1e0e430289a1643f5cb0bd3d6d9163a039909fe3665760a961d18073095fd4","transaction_count":0,"txlist_hash":"474f6e2a51277c8f90f02aab78058b6b9c7e3327d0cec325ff6002e058148496"}',0,'BLOCK_PARSED',NULL,'9dbfda62751aec595fd7f7ec2d1c5b1a19be91dd7b8e79abaf9bef84ef0863c2'); -INSERT INTO messages VALUES(1411,310541,'insert','blocks','{"block_hash":"ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453","block_index":310541,"block_time":310541000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'63611c2dba5fcda859bd0a742bd93bdd37211ac3dfccf6c126b50b890dea198d'); -INSERT INTO messages VALUES(1412,310541,'parse','blocks','{"block_index":310541,"ledger_hash":"6d998264dfe16f8058aaa5858cb79e79ad69fc2d329c02251b00b1e0167a7c4e","messages_hash":"6c40c21a73ede375b284285d1a92654f59703a39f6a86da1ffadf749a4716049","transaction_count":0,"txlist_hash":"0b004058cd27a1be5261693a5203d69c14f2ca5b3105d21bf28ef3f49273f885"}',0,'BLOCK_PARSED',NULL,'90953ad8dc3038f03bbf1f89ed7eb4012af69763845626c9a39ff77b6ce9146a'); -INSERT INTO messages VALUES(1413,310542,'insert','blocks','{"block_hash":"7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2","block_index":310542,"block_time":310542000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e3084fc2f6e5e8f99d01bbf031bfe5b5de24cbc0a62e57c34baec929348f6630'); -INSERT INTO messages VALUES(1414,310542,'parse','blocks','{"block_index":310542,"ledger_hash":"62a19834e7fbf406a9aa79eadb62777fcca224a7989db7de1067b2e6caa63369","messages_hash":"010fc2e1fe45d582619ecae7a17c4c61a109ef7546065e8e114c1ee3150b8a5c","transaction_count":0,"txlist_hash":"7553c0132cfd45b14cbab4f1e59510933069a4f3b82be8a0e2f13d08e3a06cf3"}',0,'BLOCK_PARSED',NULL,'c73bc741fef19ec2ee37cddfdb7259d5899c4f99ae4acace85a040aefae85d75'); -INSERT INTO messages VALUES(1415,310543,'insert','blocks','{"block_hash":"cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2","block_index":310543,"block_time":310543000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f5bec25e6faa7c4f7ac30a273c675eb0f86ffc8f49c05131003a8c3ade8a6490'); -INSERT INTO messages VALUES(1416,310543,'parse','blocks','{"block_index":310543,"ledger_hash":"33219794788b90ec54583a14b734f678f557e0bdd8b34f7bce2ac42ea3a6c0f6","messages_hash":"9352986391e5180e06cad855006335fb840493e528785721e9c33a22bf5ea10d","transaction_count":0,"txlist_hash":"f7e56981d310a7b8a06ea7ce6c4d4091ce35e4a8023ada8890e952453dae8201"}',0,'BLOCK_PARSED',NULL,'84dadace066fe21b9560c6c542998cab3640b1fde5519c299b9ad450514ce0e3'); -INSERT INTO messages VALUES(1417,310544,'insert','blocks','{"block_hash":"c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6","block_index":310544,"block_time":310544000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5047cd7f5b5b46985078602e8fcdc390a53cdd256fea0c6e4654a867d73ef598'); -INSERT INTO messages VALUES(1418,310544,'parse','blocks','{"block_index":310544,"ledger_hash":"b59bad9fcba90d7f5bfced7e90f5c9672b2ffe33d79bb9cb20c2baadcb964e50","messages_hash":"72a45c4d8f834e61b65e0252c77cb8e57a5113d5244c96e4ba931340f0d829fd","transaction_count":0,"txlist_hash":"bdf0fae7bf5083ddc2a99a4a7efbaece20070f0145e44b67567f71c90b29ca2e"}',0,'BLOCK_PARSED',NULL,'82b6feed0451135ec61c660db32f9aa1106bdcffe960e74f9288c72660ecd37e'); -INSERT INTO messages VALUES(1419,310545,'insert','blocks','{"block_hash":"aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a","block_index":310545,"block_time":310545000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'43a868f12da6049ebb994d3df45a72b900bcff565e1e782033ae29ca1162e5f7'); -INSERT INTO messages VALUES(1420,310545,'parse','blocks','{"block_index":310545,"ledger_hash":"cbf12a5107ecad81944e4f881bfe77b2d78564160f266d8e71667645932956e1","messages_hash":"9c8c5a5d9e0e40ca08179ed61ae3ae32b05133c6743c2bbcef94e96229ddf7e8","transaction_count":0,"txlist_hash":"9a25f3b3bb017cd926e1fa8b768324a147979f518208c106ffbad1b5fb8d502d"}',0,'BLOCK_PARSED',NULL,'1b2d83e7f9884577bd7ac1713c6f9b0fa2ddd127897f0945183123f6126a6154'); -INSERT INTO messages VALUES(1421,310546,'insert','blocks','{"block_hash":"20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d","block_index":310546,"block_time":310546000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'736fddcfbdbeaae2e47367f7817d48b71ad896406c6b6c9db83333cc56beeb7e'); -INSERT INTO messages VALUES(1422,310546,'parse','blocks','{"block_index":310546,"ledger_hash":"f25847e305f7db225949a80d76e9e1bdada01021099c5c0fb08ddfdcb78ab480","messages_hash":"b96accbcc891a2256e584d14dd3d339355aefc1c1109f0fe42e562797c342e85","transaction_count":0,"txlist_hash":"cff6edc9625c136443e036d39b1ed3cc5e76a49b919795f05cb92e508e4cead5"}',0,'BLOCK_PARSED',NULL,'03385a5594b8fc9eda6ee4f90d817517edbf5d966e6d37fa95461c3837003609'); -INSERT INTO messages VALUES(1423,310547,'insert','blocks','{"block_hash":"f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7","block_index":310547,"block_time":310547000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea34c395915fa6103abd03a55e76a80e0917c09d4c396433269fac503784f7dd'); -INSERT INTO messages VALUES(1424,310547,'parse','blocks','{"block_index":310547,"ledger_hash":"d39a0f8a9ff6b86cc72abc351e8391e0df2ab52d195035f009d18d11d5d5e9cf","messages_hash":"7b9d3c1636efdfd8a82b4c46507b704e936e6e8258589e16d9a820176eb787b0","transaction_count":0,"txlist_hash":"3a305e7a9b8de2e2ec9f43206a08e257a1e17c540f0e47625b64feafc3413daa"}',0,'BLOCK_PARSED',NULL,'d16fa4e275a1217cfb0da6e87c5c9695e4f40955a3ee5c24ed9c55795b114917'); -INSERT INTO messages VALUES(1425,310548,'insert','blocks','{"block_hash":"bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2","block_index":310548,"block_time":310548000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3d25ad8b950d2249b3d8ef905663dad948d8871b9426c997527cc2b0612ae0f5'); -INSERT INTO messages VALUES(1426,310548,'parse','blocks','{"block_index":310548,"ledger_hash":"1f54b81e87e72ae3f76c8fb8f348a3dd24f2918be8e2914267c93d58c810efcd","messages_hash":"7af4c43009cf4dd3a831d1a5c8c0bb68888b8e6d72a9cdf4775409852b65087d","transaction_count":0,"txlist_hash":"6a9672fcd678d39907e6c01137f2c6514ff99929cf60171c1760e72dea1b1f19"}',0,'BLOCK_PARSED',NULL,'36e46045abf1f7049276250231eec56c6a3b3f87503af0c235e554122f1dc84f'); -INSERT INTO messages VALUES(1427,310549,'insert','blocks','{"block_hash":"8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979","block_index":310549,"block_time":310549000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d583bec5730c3b51d863382091d7c014e37df590a74688af1272554ff37a87e1'); -INSERT INTO messages VALUES(1428,310549,'parse','blocks','{"block_index":310549,"ledger_hash":"697b6c693e7cdb7fe22a9b1d9d7b9332c9ca9197adb351245b543e24fef49c2e","messages_hash":"836a9ceec89f9ae37667a2adb677f1714060f398530eb4a7b6c5c3b95b1be986","transaction_count":0,"txlist_hash":"d16823e9ed0b346917aae45cd173cbd173d229f284cb95ec7af7c9b159b2d8c8"}',0,'BLOCK_PARSED',NULL,'009a06e2bc7532a37a2e4fc2ee89eb28b3530a96bce6c98f13e696e4e394a5a6'); -INSERT INTO messages VALUES(1429,310550,'insert','blocks','{"block_hash":"08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914","block_index":310550,"block_time":310550000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0cabbec016b9faea29a78404b67a85b9217d0b67627409c6d1d71f91a3d9cf93'); -INSERT INTO messages VALUES(1430,310550,'parse','blocks','{"block_index":310550,"ledger_hash":"353f9dd7d173823446e7a4d536b2a136a0005dec0306ec18541d1c95b06e2986","messages_hash":"7ff391cbc597eebea8fb24e1923b93be79fb044f40ef612b27221dedb6b1fee2","transaction_count":0,"txlist_hash":"6ce86b2a35a931348e98118c7426950ad4ee1a9fa557cd3c1eab0c4fd8d3f144"}',0,'BLOCK_PARSED',NULL,'ba4b02c9cf65ec8505041668517b57a931f75ebe0aa8d1658cfa3d69486cfe77'); -INSERT INTO messages VALUES(1431,310551,'insert','blocks','{"block_hash":"cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b","block_index":310551,"block_time":310551000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eba695ab03284284f38d85af3777cec242194d3b8f307711c50f53d914692892'); -INSERT INTO messages VALUES(1432,310551,'parse','blocks','{"block_index":310551,"ledger_hash":"cbaf72ce2e4047e48974e4839f6e033fbc0cee5d3599cee2ce43af879900b5d5","messages_hash":"2094bd531d4c5bfaa19bbd0021a74b200880f5402449db0c6a8f9fdf4b9ad7dc","transaction_count":0,"txlist_hash":"49db288f7c65afd8f99a1f8e6edc85dac9c599d27be113df4b6246f9232a6056"}',0,'BLOCK_PARSED',NULL,'17edb2318528a63ce5c69146160db8edd7dfb2ebefa05b55ba1ee6963748c467'); -INSERT INTO messages VALUES(1433,310552,'insert','blocks','{"block_hash":"d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d","block_index":310552,"block_time":310552000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f18b9dbdf5d223d67e73ae505fefa4fd4bb0ababd1875ddd4c1dd1f73099b223'); -INSERT INTO messages VALUES(1434,310552,'parse','blocks','{"block_index":310552,"ledger_hash":"056d1a4bec68b036c52ed73a5086a3bdca8649dfe364480326ae170534da62c2","messages_hash":"819300e47b634f4895bb8df78cb17f8a4e74ab04b4410d6fd00090957e64cf41","transaction_count":0,"txlist_hash":"f5ba7a3fdb9394f101d5187b107ad937fa5a224c290119cd76bb37710b1600a6"}',0,'BLOCK_PARSED',NULL,'dcc5aa95749e77ce49a071fbf2111e50146684306d30f0ecd45ebf8541730bf0'); -INSERT INTO messages VALUES(1435,310553,'insert','blocks','{"block_hash":"d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2","block_index":310553,"block_time":310553000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d4b1126be53252a0225416a2d4908ddc6991489b135dcca478cd06aae8d80993'); -INSERT INTO messages VALUES(1436,310553,'parse','blocks','{"block_index":310553,"ledger_hash":"5bcdeddae792fe5322b07b5edf563f1de05f7ecf2f54a0d9c88b76ec2be96617","messages_hash":"1cb3860758eee8411742b13c8f69b255bb02de353b3e99bb9cd5c7542eab40e0","transaction_count":0,"txlist_hash":"b1777df226b373535e3fff13e4379375cd601d0cbc1a90951cf288d21eb66aff"}',0,'BLOCK_PARSED',NULL,'63eb2f0c65635b7d7babe2ef425444776a6fb3a88d9cb384695251e8895d1b74'); -INSERT INTO messages VALUES(1437,310554,'insert','blocks','{"block_hash":"7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65","block_index":310554,"block_time":310554000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'de3395f7fda5e0aceafc54a1dc379c5f4e0c37f068cba5739bc6dea88cda2f3d'); -INSERT INTO messages VALUES(1438,310554,'parse','blocks','{"block_index":310554,"ledger_hash":"8f28d0859871fd1513213cbb15d5825419c12bc23b2affd954b35cdc63d28536","messages_hash":"5fd6ed58ddb4ca4ff4f67850d8037bd9fd9197446576d43bdc9a647f02e99bc6","transaction_count":0,"txlist_hash":"870b61238a3e7c740fb52ba62719724cf95250ac22a4705dd88a1870f560fa1c"}',0,'BLOCK_PARSED',NULL,'55554c236eb05b377b7711ff66cf56d94af8a68402560ae759b524e4bbe39d62'); -INSERT INTO messages VALUES(1439,310555,'insert','blocks','{"block_hash":"c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa","block_index":310555,"block_time":310555000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2fddff4dff1c65e5ac3c926ec2031ee184d534aff3dc24ba5861bc9c7825f243'); -INSERT INTO messages VALUES(1440,310555,'parse','blocks','{"block_index":310555,"ledger_hash":"8d9f3a940b5094e7e59de402cfa9c2b07b9d95fb9afde5400e9884c15712df31","messages_hash":"8c61e56049534b413b5f5d30feca4ccaafc492dab7af43f3f3a33706f74b0fd5","transaction_count":0,"txlist_hash":"8b3bd64e05150c476d55dd64729b8e20e7b8c345c35c723392b194785472c6a3"}',0,'BLOCK_PARSED',NULL,'3ac83282023e2b5aab816fda63259c14892f41d20de727c6e63cf9abc8dc0532'); -INSERT INTO messages VALUES(1441,310556,'insert','blocks','{"block_hash":"4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a","block_index":310556,"block_time":310556000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'38fbc6b8c3eb935575b69e76a6334eb168486de054e1f3533f696be7cfa8aac1'); -INSERT INTO messages VALUES(1442,310556,'parse','blocks','{"block_index":310556,"ledger_hash":"6855961c09b3b8b8ef2e8b9aee33b7da1d36228e2af0792932c3f7419d6da242","messages_hash":"c7cb6b173e457394f5d2408520f95584489146dd500d102e2d3d5768819d0522","transaction_count":0,"txlist_hash":"a858a0bafa17a74c79b65ca07ad3418ac201e5096c87159bf789f40c3d84679b"}',0,'BLOCK_PARSED',NULL,'845385186232e3be2889433d4645af5abc68db069f291973f02473e4d88a0658'); -INSERT INTO messages VALUES(1443,310557,'insert','blocks','{"block_hash":"0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382","block_index":310557,"block_time":310557000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d2037edd0e453d914b2e25c88aa1e4e4f1c57d5be6400ed41c72a27347d9740'); -INSERT INTO messages VALUES(1444,310557,'parse','blocks','{"block_index":310557,"ledger_hash":"3b3c17afde8ac19daec1f9e6ac4ddfb80ef6e0638be51e1753f0a23baf378fb5","messages_hash":"5b3203ca1a8e30ecff1d98090949ee36fb90af1cac932e0b72a0cda843da69c2","transaction_count":0,"txlist_hash":"6cc6e826d65d96cd9546e3e459934acfac6456a706ed5423da4c4ae0c71feb83"}',0,'BLOCK_PARSED',NULL,'eb215ac93f328792e29815c2d2b426e8ca45b36a42c99444265ec9b6ff6958b8'); -INSERT INTO messages VALUES(1445,310558,'insert','blocks','{"block_hash":"75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15","block_index":310558,"block_time":310558000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fbde38be0357a945cba7b55e1b66053133b95141db339940d7202399e7c1b2c2'); -INSERT INTO messages VALUES(1446,310558,'parse','blocks','{"block_index":310558,"ledger_hash":"4d503551c20c5d235f77879f85d947f00c5041567ddd19d307042b4662036bdf","messages_hash":"d4c9396893f2b11c371f235e13725b68384e13b0e8d2f368125d45e64e7ee0de","transaction_count":0,"txlist_hash":"56c4cf4c2b8562bd4e1721cbcfb9faa7c67e31e6f1abd95525084cc51dabf3b1"}',0,'BLOCK_PARSED',NULL,'17a6faf297bda75495b646d2cac2e6093ca6988c6ad2de472de6f90c1f7c1ef2'); -INSERT INTO messages VALUES(1447,310559,'insert','blocks','{"block_hash":"6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc","block_index":310559,"block_time":310559000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'987c1b47b1f5434772bd072c8c6c54bcdf62645935cf93b481ceefd886552d10'); -INSERT INTO messages VALUES(1448,310559,'parse','blocks','{"block_index":310559,"ledger_hash":"31fec5359649d8c4a59223216b4f190c3c8639a7b2b4d6c91a8ea26929f5247f","messages_hash":"09e26f07054048a2af8ac5c8cc2ea347dedc992e9fe1b6c12b2ad7bf27de8ed8","transaction_count":0,"txlist_hash":"7d1ba0a6152887e4a66e003c7444c35fd14a9ed3c48455e6ccd8476ff232cb55"}',0,'BLOCK_PARSED',NULL,'3203f3b7ed6da29df2b2fbce2f249a2966148245f5cc9b0898fc0c4888250ba4'); -INSERT INTO messages VALUES(1449,310560,'insert','blocks','{"block_hash":"d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec","block_index":310560,"block_time":310560000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a88ccaa9da822e18029ac996f5de3c4852b20fa5481e2470675645bc9349d7cb'); -INSERT INTO messages VALUES(1450,310560,'parse','blocks','{"block_index":310560,"ledger_hash":"298bb7532a1c40a663cad5fabdb1cab1b85c0e876b9fd350fee91983688ec701","messages_hash":"42a8cb47d6874c78b2061560207b4670bddaf27148bd04de0daa4e13ac5fca08","transaction_count":0,"txlist_hash":"65eb78129546514584c78b914d05644975681daa08d796aab35e3662a4a9f387"}',0,'BLOCK_PARSED',NULL,'9d6886e2cb999033a556fe81b06e7110fc3684489046c1ac27fe47d9f684269c'); -INSERT INTO messages VALUES(1451,310561,'insert','blocks','{"block_hash":"b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee","block_index":310561,"block_time":310561000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9aa66332934e706c0266d898825011bb38068a8e34d1c86b6b510334dc180398'); -INSERT INTO messages VALUES(1452,310561,'parse','blocks','{"block_index":310561,"ledger_hash":"918f0648deb5255921569d3938fd05d438dfc62a14b5f87335642c86507739bf","messages_hash":"30331c707eb0a4ba121e095687168967d3c8c567395d098fff7aaa96fdca7859","transaction_count":0,"txlist_hash":"3c09fa18d2fcc72e4afbca9679e46f5bb5f4d56dc2b5d4da3282c758819d5403"}',0,'BLOCK_PARSED',NULL,'9c010b38cd9c9d33049343b8e61834390c4874103486a96b49423cc48a0a4d0f'); -INSERT INTO messages VALUES(1453,310562,'insert','blocks','{"block_hash":"4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405","block_index":310562,"block_time":310562000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b42fd164169c008ff8eafa5878265e628c682c6eff45fcee0a5adbb6e30e33f6'); -INSERT INTO messages VALUES(1454,310562,'parse','blocks','{"block_index":310562,"ledger_hash":"794af8befc03cfba539c0521496a4b0c9989e30a3caa5b61fee6593daaf3aed9","messages_hash":"00cb38c4cd96fb13a8db283bedd5f8daf98d3a777fce4915f6ebd42c9fe7f40a","transaction_count":0,"txlist_hash":"e06b6edc60212d17694503e28f4d8879a12b5c9f0d75fe281e0ffea001d78c76"}',0,'BLOCK_PARSED',NULL,'37fd0e53b623711734354cde04a84adc680600ca59fbbaf9d432fa2d24b0fc7d'); -INSERT INTO messages VALUES(1455,310563,'insert','blocks','{"block_hash":"f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636","block_index":310563,"block_time":310563000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9964b11c25e440b87c6d3f853a20bbf5d9be1fcf33169489362792867bc4eb29'); -INSERT INTO messages VALUES(1456,310563,'parse','blocks','{"block_index":310563,"ledger_hash":"33acceb8a2020c1c3076a85888772b4e5a1226be90e169aea7a79f1dcae0c77e","messages_hash":"d34331ac044b779e3531087c7fb7d9f5d0a7a171a14a479babc00e5c0d326239","transaction_count":0,"txlist_hash":"4df37acbbdd1a1f9c717f58748f170d7ded7f62b686121a9f821275fbb12e25d"}',0,'BLOCK_PARSED',NULL,'9dbf4e68be83671a5362e32402e4dc0e8bd6f4c4c60af0820e64fc56b3205a7f'); -INSERT INTO messages VALUES(1457,310564,'insert','blocks','{"block_hash":"cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea","block_index":310564,"block_time":310564000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'942a4c90905dd9ebdcc1ecacd0fd8fb57ad5d87eb18275b8999840557f10c3fb'); -INSERT INTO messages VALUES(1458,310564,'parse','blocks','{"block_index":310564,"ledger_hash":"229e114ecd638e974aaa61f1d54673df550e5c6180fa316389642c967d702bb7","messages_hash":"f22a1d0575a8f148aba74f1b1fff2e0ca51d0732b780ebb9a45bee8e0f41c921","transaction_count":0,"txlist_hash":"f145d6e47e0640e5b13185eeb88286b190884347aaaced30f2a3ccf1d934b75a"}',0,'BLOCK_PARSED',NULL,'2025b211fd76774142c2489cfb892b8acfb1fd065b2e0266d81a6ee4c6c46b54'); -INSERT INTO messages VALUES(1459,310565,'insert','blocks','{"block_hash":"954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305","block_index":310565,"block_time":310565000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9b698a1e46f059069601d20e33c28625ee378bb34354f54f0a511f39e0104821'); -INSERT INTO messages VALUES(1460,310565,'parse','blocks','{"block_index":310565,"ledger_hash":"5c53d7ad75f3555e7f7eef51c5feae9d95f0b721f2f8c297ebe185a2e74d3053","messages_hash":"038a28d7e697da93577a7abcfac353d7409b0f6ce26772281a9bdd41102c5239","transaction_count":0,"txlist_hash":"db540061e4a8c10001274daf3bd8addd05306a07836ed6369388720544aae941"}',0,'BLOCK_PARSED',NULL,'097ca5beda606ad1ea6cb28df821d7f3b0b5556cd7870f995a317d448567f87e'); -INSERT INTO messages VALUES(1461,310566,'insert','blocks','{"block_hash":"3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39","block_index":310566,"block_time":310566000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da843ef2ac48a20df38190e54f58527fe705e88ca5498d9cc3ba755b075eb6be'); -INSERT INTO messages VALUES(1462,310566,'parse','blocks','{"block_index":310566,"ledger_hash":"df9192301e714c00210833532326501b47fc993a006acecb9871826c53dfa60c","messages_hash":"367b03a65f437966835c093f267676163ec0c5991c2f6f0a080be548d483f0cf","transaction_count":0,"txlist_hash":"bc9927aa4bb22304a9ea2edc24e6fe5d8d6b6d6f1083cd64a5098492e811f2c9"}',0,'BLOCK_PARSED',NULL,'2f070becdb02557771e8f3a4d371099c3b0136b41d5055629a4892a60980284b'); -INSERT INTO messages VALUES(1463,310567,'insert','blocks','{"block_hash":"499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431","block_index":310567,"block_time":310567000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3024e6c605c9c6100583b1d37eebcb07c9255c71cf048e5e7e21874e6f6f1625'); -INSERT INTO messages VALUES(1464,310567,'parse','blocks','{"block_index":310567,"ledger_hash":"ebffee7f4b8ffd4a2e29837e2f65f9c485f85bdd08504dae239a7efa29fa4d59","messages_hash":"5c7c2ebb9de95b8e27a5c367ad4b7915161cc2f953510c6709edf65a23296e6b","transaction_count":0,"txlist_hash":"98c790c8b92ac26f828848a06f10408d459b5fe2f54529f3137754d31cb103bd"}',0,'BLOCK_PARSED',NULL,'78a4387136de394da1862b4caa7c7a9fa9d8f8c55fca2078444b49fc974178af'); -INSERT INTO messages VALUES(1465,310568,'insert','blocks','{"block_hash":"ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e","block_index":310568,"block_time":310568000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'42e91ab7b2d4d3a92cd2c07b26647b3a829af45dd5ce1662af0569594483c72f'); -INSERT INTO messages VALUES(1466,310568,'parse','blocks','{"block_index":310568,"ledger_hash":"97c8786092e3685c8916143bbd2a059791b6e2ba46218c0e4debba4448b5d0b3","messages_hash":"6e4246f6142ea3858f1dd7b03ae80c544e053ef04d71e773184b9bde490a86e7","transaction_count":0,"txlist_hash":"570347e1c43a67562eedbef0f6d1a5e9945e293058c5277ec2ae0efb8254eb63"}',0,'BLOCK_PARSED',NULL,'39a1926a97f09b9f038be1a4a41053490ff08976e7b1733e0856565f13333112'); -INSERT INTO messages VALUES(1467,310569,'insert','blocks','{"block_hash":"c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de","block_index":310569,"block_time":310569000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59ecbccd4c4185ba39763c510a3b3c083e6e88ca14543ce447375c61d6e04770'); -INSERT INTO messages VALUES(1468,310569,'parse','blocks','{"block_index":310569,"ledger_hash":"a28ba712a296e1d7b16bc870c661754529f9dcc88bf8cccced55d872d3541bcc","messages_hash":"bac17b6f0ad8186129cde3d4af94d4060b72db532c3e1f16cdc8d5a7f4c7d98d","transaction_count":0,"txlist_hash":"2efe30e2ed6a9f020f3ae70db81c701cfe07d9bd24451dd80294d0692c63685c"}',0,'BLOCK_PARSED',NULL,'d4264c982bd056e8b9f9b0e892cb019d6cfef8e6aa169f6b15911d46a1f2dc55'); -INSERT INTO messages VALUES(1469,310570,'insert','blocks','{"block_hash":"f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55","block_index":310570,"block_time":310570000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3327f08da794d86dd553eef38aae7b48515b2f4b023ce17cd4cf38e038a36b9b'); -INSERT INTO messages VALUES(1470,310570,'parse','blocks','{"block_index":310570,"ledger_hash":"2f8006f26a6de634588bbf77a34c9738306b6241a65ea0b69b6ed49a52186c90","messages_hash":"7d2794a3076987332851c0eeec05e51f6413b71601cd007ca07a1e3c8b4b5e35","transaction_count":0,"txlist_hash":"2ff0d7d5e4fb10d63fdab2561aacdc90f92f0df462bd652fe58f23c076242e82"}',0,'BLOCK_PARSED',NULL,'2b661e8cc1e4464757c63c1cafcc46cb41b5981080ad2b01a923cca1add7ce31'); -INSERT INTO messages VALUES(1471,310571,'insert','blocks','{"block_hash":"b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73","block_index":310571,"block_time":310571000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1576c5968f19bed51f2ad8bf86c9d567a5122bba266cc38ca90ded54817a1ee6'); -INSERT INTO messages VALUES(1472,310571,'parse','blocks','{"block_index":310571,"ledger_hash":"d44dbf0231c9a0ef8ea7282ae6866df099c6b143fbea41abedd96a4303e285b8","messages_hash":"30c0f19d47d78b0e6a5c843a9479a712e92bfb7dfd3523939ab19a5411b475ab","transaction_count":0,"txlist_hash":"7098b0fe2e0577a4d1ccd090b3b9ffa952b5c1fccb8fbaac6b1a43635084eef8"}',0,'BLOCK_PARSED',NULL,'76d8435e84b730fa5baf845d7ec88512b1c497c9ba6515dfb04c48fa44a85a98'); -INSERT INTO messages VALUES(1473,310572,'insert','blocks','{"block_hash":"6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9","block_index":310572,"block_time":310572000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1ac129ca3416af97338a5384749a5b367f6537d5e4bec9a3274148804051ba1'); -INSERT INTO messages VALUES(1474,310572,'parse','blocks','{"block_index":310572,"ledger_hash":"27a4161e0d0ad2f65ef32d4dbb1b1bbe44a08abbc98af9e20674a8779c07a59c","messages_hash":"14e7ec83214dc2e364deed75690e2cfd70cf5116aef1cb42b8a22b55003239b3","transaction_count":0,"txlist_hash":"e7db661177bca11155df203594bdaf815bb537d525084767ac0ed6e9fe99fd5a"}',0,'BLOCK_PARSED',NULL,'d21b4328e77d8e65d6de8d85ef6dff10bcb6b53e482c073af03befe01ea080ea'); -INSERT INTO messages VALUES(1475,310573,'insert','blocks','{"block_hash":"302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5","block_index":310573,"block_time":310573000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'71f30dc2a533b9985402558a15101adf82ed6e6228ba98a4ad1c1a4dabcd72e8'); -INSERT INTO messages VALUES(1476,310573,'parse','blocks','{"block_index":310573,"ledger_hash":"63a2b48574e98a59c8e69c26886c48bd25d2afec89f7554145c4e342c6ba18b9","messages_hash":"98833b1c69e87ecde559dc204f53285facb6751897e773829c31834fbe996599","transaction_count":0,"txlist_hash":"672565a64f687b09950572bb69dc51cc874a34d8808bc861d84bb3d227da1f30"}',0,'BLOCK_PARSED',NULL,'571613e5e184fb531940a8be092f1cce99e3787e04ed451fa8f8e66e8549e4e0'); -INSERT INTO messages VALUES(1477,310574,'insert','blocks','{"block_hash":"c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d","block_index":310574,"block_time":310574000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e2d3246629c54071011de9c2fd0b81bd30e41400b162dff3fa19233ee6877740'); -INSERT INTO messages VALUES(1478,310574,'parse','blocks','{"block_index":310574,"ledger_hash":"1a27efbd3b088f35dcac8186f7eb795bbdd96273cc2359b368b6a64498ca1876","messages_hash":"0311ec09263c91fcc861f8e8204259d50751c332567e7855a5971209e6324e1b","transaction_count":0,"txlist_hash":"c681d31f5e8b1344188913364f2eac845db9d9a936b45f6eada955996b7073c2"}',0,'BLOCK_PARSED',NULL,'c60f15dd6ade7ea2a56063250ebf66c9b0008942ef45d70de81a95b8492235b7'); -INSERT INTO messages VALUES(1479,310575,'insert','blocks','{"block_hash":"fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde","block_index":310575,"block_time":310575000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a0389e381a75f8dadb44c1aba9d10ce2762d988ee4f57f7ac52db5afdf636c1a'); -INSERT INTO messages VALUES(1480,310575,'parse','blocks','{"block_index":310575,"ledger_hash":"d76913a45582bc5e55943c8944f8a1320eeb3631b32f5d8470c44b8d62655966","messages_hash":"fbbdb09df06575e75d67b47de5436ebe471a9c5c33cdafcb1aa00ee45dbed7c1","transaction_count":0,"txlist_hash":"3ea5d34d65420a54fd0a1c8424f3afcfa5eb40707eb42088814218583ff36cbd"}',0,'BLOCK_PARSED',NULL,'d474919f61b3e785e923f2643923a43119c74515110a1a6e461094ade005e6f8'); -INSERT INTO messages VALUES(1481,310576,'insert','blocks','{"block_hash":"b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5","block_index":310576,"block_time":310576000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44b830c46458e1959ed84048deaff4d296fee0c1686ec6fe7ddc58fc8dd06ca3'); -INSERT INTO messages VALUES(1482,310576,'parse','blocks','{"block_index":310576,"ledger_hash":"f7fca8d1a77ceface6731d23bfea3ec36f63d4cb201e44c36f57d01f9107d045","messages_hash":"0d4771b4cac31dbc2f51e12117a73f5223fe6993d8a7e6c3ac9fcc87de7bb230","transaction_count":0,"txlist_hash":"19eafc5f2e2d7ec141f9f2bd1d5c7fb0b380adead15654553498e3af5bba0ea2"}',0,'BLOCK_PARSED',NULL,'db5421f2adeabf43f5cff5bd24f156d539c9bface941b9a20c54124940906114'); -INSERT INTO messages VALUES(1483,310577,'insert','blocks','{"block_hash":"a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3","block_index":310577,"block_time":310577000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7216212a6ed9453c7f0c599a3fafac400a30a9094026ff63af4967312cef7139'); -INSERT INTO messages VALUES(1484,310577,'parse','blocks','{"block_index":310577,"ledger_hash":"1cdb07845fec337dcde9404762ddf77a14355e5b78817964f378a830427fd197","messages_hash":"8e42b3affbcf5935286117e73440608272964f3ed3ccfd244a7bc4e598767e0a","transaction_count":0,"txlist_hash":"be512460315bb9b670cd1b9e78165df49fc17a8851dd7b66bb58a0e83bb4e487"}',0,'BLOCK_PARSED',NULL,'e6678f60bc8ec4da723caf90ee338c578ba2b28f2aea0103386f0aeff3dc3dcc'); -INSERT INTO messages VALUES(1485,310578,'insert','blocks','{"block_hash":"f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf","block_index":310578,"block_time":310578000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'94762c55c9a4eb5acf89c98f79d8ae657b199fde59eb8a3d53d424b71a45c5dc'); -INSERT INTO messages VALUES(1486,310578,'parse','blocks','{"block_index":310578,"ledger_hash":"19640d7fbf5a9a85606c6b6971b3039bd870e8e11602c98da1c83269eeee9eb5","messages_hash":"f92169e487d9f1b1587939fd1398d677b9a8612b24aadeb6f6c33138bde395fc","transaction_count":0,"txlist_hash":"56dee75f67260fc83f55a276ed430bb1c9495d91b54d323a3d0cc427686a85c4"}',0,'BLOCK_PARSED',NULL,'ac24753e17662468e91d8f6fa5fa705313fbd61428a985f6151a46f44ecf88ab'); -INSERT INTO messages VALUES(1487,310579,'insert','blocks','{"block_hash":"672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38","block_index":310579,"block_time":310579000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8317e7251ee049359c744695dc81d2f57816867c022e1ccc7bf5536679bffc6c'); -INSERT INTO messages VALUES(1488,310579,'parse','blocks','{"block_index":310579,"ledger_hash":"2535535df8e8250cb90972418faa698e79a766a42d0321f7bfd2d68426fe2c6c","messages_hash":"91a42777b228ae160da8ef3f3f522ee6b4bbfc4fa55f0fa13ad93af6bf9ca85b","transaction_count":0,"txlist_hash":"c9a5cabe5916d0d169e06c7528835c5fcb00af3515e0c44e5e17c567dc52f1ee"}',0,'BLOCK_PARSED',NULL,'631619ca09c6bb4e48d0a6ac250448289f13e47ef259aae55c1dce06b8f47850'); -INSERT INTO messages VALUES(1489,310580,'insert','blocks','{"block_hash":"e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13","block_index":310580,"block_time":310580000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11eb757444aca1d09e2834ccadf5cbe8d12e4a6dd0fb61173dea0e71f14bb668'); -INSERT INTO messages VALUES(1490,310580,'parse','blocks','{"block_index":310580,"ledger_hash":"48f6ae3b5d93cf4b2d6deaa8dd30fe2486cd1f98020a3121add7cfe9f64d0d1f","messages_hash":"0398e37743a453d86ce9dbd40180ec3b7d704f1f3818f938a73984a91057b829","transaction_count":0,"txlist_hash":"b484963a876ccbf57728287a7cae8ad916cc4523219b7f2fd6c42bbdfaa5ead7"}',0,'BLOCK_PARSED',NULL,'4031e9ff740b9e4e9f32adfc63855dad13e550fe1e178a93cc1f59aec10f4fa9'); -INSERT INTO messages VALUES(1491,310581,'insert','blocks','{"block_hash":"baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a","block_index":310581,"block_time":310581000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a90d941d7150cbd1c1f34a6149deeff5c1a9a313a87aeaf5f1f706dca10662b2'); -INSERT INTO messages VALUES(1492,310581,'parse','blocks','{"block_index":310581,"ledger_hash":"c97da518cca598c170a42b948fd0091798370a2d0672788619b42cdd5386a2b4","messages_hash":"0f2f71ae9e55d958b0d725dc9f1bcee3b5a2fabfe19414e84898c7f921b081ca","transaction_count":0,"txlist_hash":"301ff101dba0c28f5603b3776bd17f373f30a5e77c8e619dee30e323322e4680"}',0,'BLOCK_PARSED',NULL,'a18e39696726519db06265cca19703e3d18b393b5c6867a3de77c984b2f235b3'); -INSERT INTO messages VALUES(1493,310582,'insert','blocks','{"block_hash":"08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c","block_index":310582,"block_time":310582000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5c377eae57a8cfb968a33134d961f19b2c80932acb1206b5e521ac6246d6082e'); -INSERT INTO messages VALUES(1494,310582,'parse','blocks','{"block_index":310582,"ledger_hash":"0663d39d2f80ed99eb3e017a9bf8626344ce6f220da4c86f3cf29b250e9a66f9","messages_hash":"17de9b8c13566e250cafb691f8c46ba6bfe0be93848af606d502a8ae75aff56f","transaction_count":0,"txlist_hash":"3e8a5d33e8340bc7e1c96c95f4eece8320807dd01e7f66a53f9afbcd26b19fa3"}',0,'BLOCK_PARSED',NULL,'97df6c31a0751e2ce8c344185efb238cd1344eb245c2de9bc9da7aeb8b6f1a54'); -INSERT INTO messages VALUES(1495,310583,'insert','blocks','{"block_hash":"22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4","block_index":310583,"block_time":310583000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7402d2a21f03312b1313f1eca87ab3ad90670e62d542dbc2891d021e5894a3c4'); -INSERT INTO messages VALUES(1496,310583,'parse','blocks','{"block_index":310583,"ledger_hash":"948c8ab523cc1b2c514d2023f3ec9da1c5abd99312a52083fbcafdb3cd584d55","messages_hash":"41b79447a81a386694351e4e7da7eb3a7233e95a226ba6ec752414c8cf10c771","transaction_count":0,"txlist_hash":"60d468a45c64869425508b88e3fbe166690c3009fcf33e3292fb2da145079044"}',0,'BLOCK_PARSED',NULL,'a7b7032346e39ca87a4c20ffc0fd658f088f7ed6961f2726a2fe7493cb75e4b6'); -INSERT INTO messages VALUES(1497,310584,'insert','blocks','{"block_hash":"db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b","block_index":310584,"block_time":310584000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c910151e8689b8eb646ae02a24b2123fbab04ef680e28fb8e16c1bb777fd8d3b'); -INSERT INTO messages VALUES(1498,310584,'parse','blocks','{"block_index":310584,"ledger_hash":"756c6163f2bb1f47c57ca55ca571793115cb650efd08096e67ae5f78c26092f4","messages_hash":"ddbc40c471276db0176d1d76f57a552344267513223b1f902745e1350bd8a1d0","transaction_count":0,"txlist_hash":"ebebd15c29221496c6547f786ec67bfe72278cbb8e15fb96737a30094880557a"}',0,'BLOCK_PARSED',NULL,'bee611b37ba36f297444e39e36dedbbb45b0ad0232c286200b9559ea92f665be'); -INSERT INTO messages VALUES(1499,310585,'insert','blocks','{"block_hash":"a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb","block_index":310585,"block_time":310585000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6d9974808ba401fb8bbf3fa0e42d85b2633ec12cf537d23a0ee48c06c80c79ab'); -INSERT INTO messages VALUES(1500,310585,'parse','blocks','{"block_index":310585,"ledger_hash":"0e5ff2b0d4c06e384768b425e4553c1c8e41dd89f0aae6c955a4b5f6cab16f34","messages_hash":"401a2d467537d5293b7dfb6d7d4b7954316bdbafb1cdd87a853c6904c9f23fb3","transaction_count":0,"txlist_hash":"733e1df46cad658a76f3ae6bd51acb09be0932fdeb5f92e99b94bd5bec78ecb0"}',0,'BLOCK_PARSED',NULL,'027f44535cc72898feaa85ce7e022c55ca373df3602c4d4a4d2ba89f0a664654'); -INSERT INTO messages VALUES(1501,310586,'insert','blocks','{"block_hash":"c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7","block_index":310586,"block_time":310586000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'27d305222f1d60019faa251cd9ae7d0572e9216941c3d21468b0124a21f96810'); -INSERT INTO messages VALUES(1502,310586,'parse','blocks','{"block_index":310586,"ledger_hash":"396eb8297b2b514b584d2f799b6cc8ebd613b5eb443bd01e68055ae8235bef16","messages_hash":"447c626e05958d55f2184eb8716dc80c3feba04674fae3b1500d6a7577fee914","transaction_count":0,"txlist_hash":"3ead47e29b52236c485f6461d73c47c076f23aa5c96d2462adbf265966426f5d"}',0,'BLOCK_PARSED',NULL,'30fa8ad529d52e13b35a398b1b769e3ea56b82c93a80c5e86cd353e4bd359078'); -INSERT INTO messages VALUES(1503,310587,'insert','blocks','{"block_hash":"6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa","block_index":310587,"block_time":310587000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4d38ec11a4e80a4d8958b66d5ea95610cc65fb058baecddebc9535227f465199'); -INSERT INTO messages VALUES(1504,310587,'parse','blocks','{"block_index":310587,"ledger_hash":"7da56a4b5bc6939f12cc9a2b4ca24184978cad34f1a457b4041de83bf29ae15b","messages_hash":"524f8d3ec616b08760af074c959d424bd751280eb0557bcbc242dda7f55eb113","transaction_count":0,"txlist_hash":"94d69dc7ecb628956923ed4d570fe0da3ef0c367066d76252f656f3774347938"}',0,'BLOCK_PARSED',NULL,'e6109dd1b02cfc628cd40217ff8768c7df8770b79fdd145064d44e341741d49d'); -INSERT INTO messages VALUES(1505,310588,'insert','blocks','{"block_hash":"d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff","block_index":310588,"block_time":310588000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7f09560e177ab4401b1a883605e84bc4c639fefdbf222ca0ee2c3584d640f3d8'); -INSERT INTO messages VALUES(1506,310588,'update','bets','{"status":"expired","tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef"}',0,'BET_UPDATE',NULL,'30d02c97258ec46f83d34f73da682ae086e6aac1844058a1ded4bca0a1453c8c'); -INSERT INTO messages VALUES(1507,310588,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310588,"calling_function":"recredit wager remaining","event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'55f8c024d2979d70d1288fa4341e70284bc65810c2529d07b37a362b28cf8460'); -INSERT INTO messages VALUES(1508,310588,'insert','bet_expirations','{"bet_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","bet_index":488,"block_index":310588,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM"}',0,'BET_EXPIRATION',NULL,'004667d88c0c770559b93b21432e000e74d8ab3f5a80e8c39b1a66131b82f68f'); -INSERT INTO messages VALUES(1509,310588,'parse','blocks','{"block_index":310588,"ledger_hash":"4b743eb87cb4dc115c78f353e62611598cab891bc16c921d3cfb279ff12a3c50","messages_hash":"3bd9c63c03444c338b7072b4054e589c254a7a7dc10315cec03b210bca0e04b6","transaction_count":0,"txlist_hash":"b50620604ec72308ff19abeebe034e9ca8d732d2d21e765ff2ff78940076d62a"}',0,'BLOCK_PARSED',NULL,'43465dc4a59fa9c99b94d23aa355bddf8e71d71b6c73a3851865b06581342c74'); -INSERT INTO messages VALUES(1510,310589,'insert','blocks','{"block_hash":"4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da","block_index":310589,"block_time":310589000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9d7fbfca7ee14caa217ba6f229e06bda191266df971edfda45564a10bc6ba265'); -INSERT INTO messages VALUES(1511,310589,'parse','blocks','{"block_index":310589,"ledger_hash":"046efaa061d244e1f2da8a7814f2c59fa13d10c50787ce1a33ff11ffff1a2c27","messages_hash":"c228af4047b3efdd478e707b16dce13c0ec025ab44c015e70a3ee6a369ae6e27","transaction_count":0,"txlist_hash":"78bdf68341d15bca6e325624feb58f527fd0256d044dc90dfd0c5874dae32f4c"}',0,'BLOCK_PARSED',NULL,'efdc0851d6adb7b52d8b73b027137f6914490322f95d77b73212df0fa4416d1b'); -INSERT INTO messages VALUES(1512,310590,'insert','blocks','{"block_hash":"7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6","block_index":310590,"block_time":310590000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9e1432678bf51209653bc86d459714e3ca83ca0e4f4df2322e61ac5dd4014bcc'); -INSERT INTO messages VALUES(1513,310590,'parse','blocks','{"block_index":310590,"ledger_hash":"c0387ead71f6ecaeb514e6dfef129921194912295b3e317becc3d5206bafdff9","messages_hash":"461799c504a0e097e2bf93811b662acb956fa2477d1dfc4ace8ea09774407056","transaction_count":0,"txlist_hash":"c4f9e894ebaaca5ba7bd4c20106b670025db1438df60700fdb4d69032277f740"}',0,'BLOCK_PARSED',NULL,'3fae05ac354f86dcf5bd72cc6782315310a73b72643953c70edcb74e114e3724'); -INSERT INTO messages VALUES(1514,310591,'insert','blocks','{"block_hash":"9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7","block_index":310591,"block_time":310591000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'621a0342563af73bcd316aec889969798dc252f4df8a0f47bfb01697d8111f77'); -INSERT INTO messages VALUES(1515,310591,'parse','blocks','{"block_index":310591,"ledger_hash":"292d47eda1bbd30200a44840aa067e3b581a38406fc103d6d4e21e81a6971d32","messages_hash":"29a80a2ffc13ce9eeffbbc378b147df2ce2f6fa4e966fcc28ce45acad0706ef2","transaction_count":0,"txlist_hash":"a3af6a21611a7407ff02eab2468c377d29814f84add22f19f3fc1bfbe0d9694b"}',0,'BLOCK_PARSED',NULL,'6860972cff424d12439199ae57303a3ea29aa8341e7e5fad21b066d7882d1bda'); -INSERT INTO messages VALUES(1516,310592,'insert','blocks','{"block_hash":"d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3","block_index":310592,"block_time":310592000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d7fd2f56fc70f8ce167bb95cbb0ac1977db67aaf5d93c30c736a2622c6bfb495'); -INSERT INTO messages VALUES(1517,310592,'parse','blocks','{"block_index":310592,"ledger_hash":"7558ca835974df67db436b22ae880e0519654f4d6d9bf79f44e1511d647548da","messages_hash":"a5aa7c92c9ee4a2718b8d6438f3e3a498cf5df316c573c9d4a22dbf1837e2564","transaction_count":0,"txlist_hash":"daf91d91dbbe9f77915568b355565696d4da404095e6b547bd2db3587113e403"}',0,'BLOCK_PARSED',NULL,'f3e48d32be5423ac05bcbf73333426d1b2bbd86be5e19f1cd5e12502d71975ca'); -INSERT INTO messages VALUES(1518,310593,'insert','blocks','{"block_hash":"97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b","block_index":310593,"block_time":310593000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0700375efd44eddf0d9d3f8ec1ea4b156614946c9a85e89f3d800bbc332116ab'); -INSERT INTO messages VALUES(1519,310593,'parse','blocks','{"block_index":310593,"ledger_hash":"470979540b6e201a9c09b177b9f0b61251dc588df9d1078ff768461d0126e553","messages_hash":"be434fd8b2825800ff54fc268bb4285a96df24fa6733057ac4bf6dc3c6a5f10c","transaction_count":0,"txlist_hash":"b5c3b0df9648788b62ccf2fc881924438c4409b828117e2db502b42f2aa800b8"}',0,'BLOCK_PARSED',NULL,'22c317eaf2f7168b15146d9ddaab24038e038d9385e2c656b8e1307b6c1e72a9'); -INSERT INTO messages VALUES(1520,310594,'insert','blocks','{"block_hash":"f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015","block_index":310594,"block_time":310594000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1de32d32bec8609eee43db1b1cb293c7f8847850b18facf1a8cbb66829d694e7'); -INSERT INTO messages VALUES(1521,310594,'parse','blocks','{"block_index":310594,"ledger_hash":"cf27c790b1bf7de710bc370c74cd55b8b720867a3d016637d6d01b469d6c1bf5","messages_hash":"2d14f203ac54a9b0121ce13bc2cf4d0ac38352c9138c09cffecb0e730bd70a22","transaction_count":0,"txlist_hash":"05b3baac4f1a13d3b2f287b6660be568bde7646bf4d2dcbd58928f8be1b5751e"}',0,'BLOCK_PARSED',NULL,'8c97e3477c0260d7f16373108b2929227a80c173dd73d4284eea9e45067dcf77'); -INSERT INTO messages VALUES(1522,310595,'insert','blocks','{"block_hash":"0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66","block_index":310595,"block_time":310595000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ae529680d7d7f32e290582280cd5a4cdde5411ddfe20ad994d8ffdfa0e8fc8f8'); -INSERT INTO messages VALUES(1523,310595,'parse','blocks','{"block_index":310595,"ledger_hash":"51f45c2f8a54cc0e8d0e668f1892facada295aae3157215beac73f25cbfd6e13","messages_hash":"a4d74b3830b5904f7b812913e66dc66735829e9a12005b01b9b1ea39284029e3","transaction_count":0,"txlist_hash":"2bd0b4f8dcf78006ab0a7aa8dd4d71c6598e9162d772e84c4701bc4c8d45f6d0"}',0,'BLOCK_PARSED',NULL,'dcf722eb0fdac3d467afb50d19fb3e695fb99cf6e36aa4590a12587989bcdac0'); -INSERT INTO messages VALUES(1524,310596,'insert','blocks','{"block_hash":"1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688","block_index":310596,"block_time":310596000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'781f062ff09f437b71bc19c32e9dbcf202ab88df92cdb7f2f2a56d37d3159508'); -INSERT INTO messages VALUES(1525,310596,'parse','blocks','{"block_index":310596,"ledger_hash":"829638e299bf581dd5edfea61d4b051af219b50e344e6bf487b4742d2469e73f","messages_hash":"12c55abea0e3bde23b8d33a4f781f5f16559ea79b6906adcd7586a587733ba15","transaction_count":0,"txlist_hash":"c7a197d075a2b5d5bd3267ae10eba1596cbc93bcbf77830b4d32230c27fa72fe"}',0,'BLOCK_PARSED',NULL,'6d2a61249d34bafacf6513c6be0a6e345e9ce18ad1706df885652b645ce9f559'); -INSERT INTO messages VALUES(1526,310597,'insert','blocks','{"block_hash":"490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd","block_index":310597,"block_time":310597000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bd4155907feaa31dab988330bbcbb2bfec901228743c9f8ca5f0eb5eab0081c9'); -INSERT INTO messages VALUES(1527,310597,'parse','blocks','{"block_index":310597,"ledger_hash":"bb4a411c7aba4fc72004771f88da31ce729936ba612f2eab99c1e1a637730ca5","messages_hash":"941fc2d522943579830d8bcf66c2fb8b5f40527478425dbaa03fe1ebaa7b4798","transaction_count":0,"txlist_hash":"c648adc37b10d6b7c9fc0e1f2a4b5c8ff9ec86fc035e4124c576d8f118c23503"}',0,'BLOCK_PARSED',NULL,'9fc433e2f006bb8e14f3cae1f4d29643c1542d53a2322665195b4e1cbc6a7890'); -INSERT INTO messages VALUES(1528,310598,'insert','blocks','{"block_hash":"8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a","block_index":310598,"block_time":310598000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2097197ef578a691be177d26a0ab46dc973a81bc68029e747c5ace0203ce6ea5'); -INSERT INTO messages VALUES(1529,310598,'parse','blocks','{"block_index":310598,"ledger_hash":"5982c8df2e62829447ce3b2bbb0864f2d732c508aeba03fab92382ae0096bff6","messages_hash":"6d71c4becfca063245d125dcc92d00b9129597411436c189b574b02a3169e1e6","transaction_count":0,"txlist_hash":"b23f0702a5066982b19875ee3aeacce21c97adacc44c5ae6bc1be94f3edcfc93"}',0,'BLOCK_PARSED',NULL,'50ccc05982b877dbcc4d1435dd67cab98588f6d5732b14af1a1ce5de245d3f88'); -INSERT INTO messages VALUES(1530,310599,'insert','blocks','{"block_hash":"71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8","block_index":310599,"block_time":310599000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07251708e5f907f522ed9f54827ca595bf60664afcde71ac24296453134566fc'); -INSERT INTO messages VALUES(1531,310599,'parse','blocks','{"block_index":310599,"ledger_hash":"330ce22a1553aea1b050b9e14565015b3aeefc4244ee64d801591a53be9dac17","messages_hash":"c8f7a4129b3f0b508d65be8eaf0215da3e2fbafb5ea9d0aa3e10c9b6d3fa225f","transaction_count":0,"txlist_hash":"cd5848644ac2a8bf3fe63736a96ce91345ecfc54c943e72e6e24b8cde5ced243"}',0,'BLOCK_PARSED',NULL,'18594d98d377eda2e088619079be338e36409d0e3ae79c0c3d9bb519ec2f8842'); -INSERT INTO messages VALUES(1532,310600,'insert','blocks','{"block_hash":"f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a","block_index":310600,"block_time":310600000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4bb999a144d1531d1093a01177f140b348b91a4a75626bbd5b5465173013dd0d'); -INSERT INTO messages VALUES(1533,310600,'parse','blocks','{"block_index":310600,"ledger_hash":"1f012bb22bf3b313141af4a62287dd888877de2b59cba7b9d04e8b78f13ab989","messages_hash":"a3acf54f3ceeaf750ecf644a865e5613620b2f75eb28015149b6dbe38955a7fb","transaction_count":0,"txlist_hash":"8d9bdfd600f2ab1f9df6b51b3849792e10973ce73b872ab6e8d6da2b5606af53"}',0,'BLOCK_PARSED',NULL,'68a175b607e727d3a0d64ad4c97fe84cb3035db0b9b744cc7c6e1c8699046737'); -INSERT INTO messages VALUES(1534,310601,'insert','blocks','{"block_hash":"7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd","block_index":310601,"block_time":310601000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6668adc1d660d3a08e4877aecbdb2bb77ee10e58c62bddae02effe69d4e06419'); -INSERT INTO messages VALUES(1535,310601,'parse','blocks','{"block_index":310601,"ledger_hash":"a671374e89b156243374d38ec1a279dddda45a5dfb0919e4f65b9a8191ea954d","messages_hash":"b62511095287bcf37d6f450bce6ab2b3f3681ae5f09a922420d5b1a5f42d6dea","transaction_count":0,"txlist_hash":"2acbb771db97fb8e8f0963b813502965908a680d2fd86446a33be34e3744e81f"}',0,'BLOCK_PARSED',NULL,'c3f6a0c5d6b43fe8c0390fc86e53671563fa7e7397a55da79dff3c33902f6d52'); -INSERT INTO messages VALUES(1536,310602,'insert','blocks','{"block_hash":"c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2","block_index":310602,"block_time":310602000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'70b0b5147f0207b5af6a663ef0a2662ae1cac49d5896a6146c8d104100bd5348'); -INSERT INTO messages VALUES(1537,310602,'parse','blocks','{"block_index":310602,"ledger_hash":"829ca2a90dd76a26bf72e16fa59b324a2c904821f54ecfd9cc00755beba483d0","messages_hash":"3b19c242e370e5bbdb0750d190f6ceb09dc1f263db49fb718c550a82e8b9edc5","transaction_count":0,"txlist_hash":"243a393f2fac01b0ee4e10351a0cdd703509ca63d66654bdf578f3eca689421f"}',0,'BLOCK_PARSED',NULL,'7ed0fa53a1bc5dfd4b8d07aec832817ae96f678148181d6f36122c9ef91236bf'); -INSERT INTO messages VALUES(1538,310603,'insert','blocks','{"block_hash":"44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c","block_index":310603,"block_time":310603000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e2663f0b0188270cb3a76708445434862300e22f4e79bcbcf36b05456869a3f7'); -INSERT INTO messages VALUES(1539,310603,'parse','blocks','{"block_index":310603,"ledger_hash":"58081fe32b8b77c4c807d2aa86ebef918c21242eb33d06e3ffba6701d2655d69","messages_hash":"e0db5a4e1015ca8719eec89dfa230f27341caa184eb2da25224bbc9008862d17","transaction_count":0,"txlist_hash":"6bd040dedbdefeb0e3398fb4533bd2bcd99edcbcaec5319ccde5e7a5403017d7"}',0,'BLOCK_PARSED',NULL,'a35752950e96c60976c8ba7884af2fe3a6c4d4c17fd059cd6a622574817d9623'); -INSERT INTO messages VALUES(1540,310604,'insert','blocks','{"block_hash":"36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f","block_index":310604,"block_time":310604000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c909b3d1fcb4783c62e9f7c178a0fdf2c87ce5b05bc047f99fa0c0ba45112950'); -INSERT INTO messages VALUES(1541,310604,'parse','blocks','{"block_index":310604,"ledger_hash":"e130a31f9ad532e80fb8a10076f1b99d230a19070959e7c0eb0f2d59bc00fe36","messages_hash":"3838f1eed88215d65561721a1be25e04f00332046005757c161729d39fe7b89f","transaction_count":0,"txlist_hash":"50dfcfb2871929ffce0a82a85a5ee11a125109a774b34a9ec127ab6bfdfa3b8c"}',0,'BLOCK_PARSED',NULL,'6acec7923c6343e13f75c5451f52c88ae72f71a8d99097664b7a653ed3472eec'); -INSERT INTO messages VALUES(1542,310605,'insert','blocks','{"block_hash":"ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9","block_index":310605,"block_time":310605000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b5917287b85fcbfb42ad71fac685f319c3dbf3954101d8c0fcdf789d04e90ccb'); -INSERT INTO messages VALUES(1543,310605,'parse','blocks','{"block_index":310605,"ledger_hash":"8c43535f2ea91a8a051f2ea6bd5434cfcadace5836e6e04a958a3d29ef76b54c","messages_hash":"1789cbf52be6780c3e98c877d87ad20ee0964befea76ec1de63c93c75c68d492","transaction_count":0,"txlist_hash":"3427c9e8c0ec9016a521b4ec842bb5cf3731cd747b514a553f222e44a3d3def3"}',0,'BLOCK_PARSED',NULL,'67b1231d591a8140c41644625c24d7fe785387401985042fb83d2dbb91cf1e27'); -INSERT INTO messages VALUES(1544,310606,'insert','blocks','{"block_hash":"9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f","block_index":310606,"block_time":310606000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b71eb925132abf9fd5518efed571ffc5c575c5b49002568e78b1a6c56b173f49'); -INSERT INTO messages VALUES(1545,310606,'parse','blocks','{"block_index":310606,"ledger_hash":"cb0466214b24bb1d2dd3a0eba9a62fff97742f3b00d9d5efe04293be34b247d5","messages_hash":"b1397dcbc26ac5a35c2327bea11eec27e93d01abd372c7702f8d6eb1b06779ba","transaction_count":0,"txlist_hash":"c11cb503ed27d64acc8b2363a34617edbbf35bb701f21b87c70eb4966f7eb035"}',0,'BLOCK_PARSED',NULL,'3f86965b82ea2b2b9bbc62cf6e1d0e77763e2c79a4ebec2d3dca0d0944776b13'); -INSERT INTO messages VALUES(1546,310607,'insert','blocks','{"block_hash":"ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d","block_index":310607,"block_time":310607000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'08119afad470462faa52c02cd4467c596803592a1a41a7f81cea26410f5922d1'); -INSERT INTO messages VALUES(1547,310607,'parse','blocks','{"block_index":310607,"ledger_hash":"2f2504389bdca2a1acc0459bfa5275128a92b0d2a09d1aee771d400759fe6a26","messages_hash":"3bf52165aab0d600ac023e2b06f6b73b30a4af197606ce7d88b6fe5c652c003b","transaction_count":0,"txlist_hash":"12b12d0888cd3a82d149f4f8c136000c26a49f97f318c76dc90fcb4996bc3064"}',0,'BLOCK_PARSED',NULL,'b7158dae84cb5310a67f9508d1cdc4819bf2d90e0826f3a65dc7c82de080d2f9'); -INSERT INTO messages VALUES(1548,310608,'insert','blocks','{"block_hash":"ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846","block_index":310608,"block_time":310608000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aa3bc1bc2f9a76d2ec43c12ea2f6863ab349867a252500aef0549f580bc5b8ad'); -INSERT INTO messages VALUES(1549,310608,'parse','blocks','{"block_index":310608,"ledger_hash":"4e855f5327460e76c36a2a9a4a8fa470822ed1f0aada17fcf2436c7b2586c7b4","messages_hash":"6d616648bea1e6d01933bc3db17a671f89833a9f78c856ffad4531701522de42","transaction_count":0,"txlist_hash":"9fcf0c090ae0aa70fee65fa83a35cd15311ef460f5fa501f6f842c29e2865856"}',0,'BLOCK_PARSED',NULL,'b5f3671f098fb4ed0688f82b1ac26e604ed45397247e18163dc2731d1fc25cc5'); -INSERT INTO messages VALUES(1550,310609,'insert','blocks','{"block_hash":"83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455","block_index":310609,"block_time":310609000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'767ccffe21d71eade39af9db724d493194f72437da25b07f1c2b0a56072c5247'); -INSERT INTO messages VALUES(1551,310609,'parse','blocks','{"block_index":310609,"ledger_hash":"724bd0faffc7b39a6e88fde32041767fa5f537ed2f1eae619d52ee6e9fdde52c","messages_hash":"fd2a92876b31307ebaae154a3f5febfede1470095425900116cf3354017e5609","transaction_count":0,"txlist_hash":"7e09b9bc2a4a6bee758dbee3801455b3c84998bccaa40ba8e1a62eed98fdf40e"}',0,'BLOCK_PARSED',NULL,'881d15466439239be8c34d747766928f8f110df7b98c95bb92b79bb1acbaab1b'); -INSERT INTO messages VALUES(1552,310610,'insert','blocks','{"block_hash":"f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9","block_index":310610,"block_time":310610000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a74d4bd66277d8e9ef803fd630510c6861019d9baf98d082710288970821750'); -INSERT INTO messages VALUES(1553,310610,'parse','blocks','{"block_index":310610,"ledger_hash":"6459bf81897bd97e8107de9600cb7004c65112388402e3c3c58543e09317a723","messages_hash":"f4cb0d75a0befd89ec8f672255621c4f00c54b2009cbdffc5d67691388b9df18","transaction_count":0,"txlist_hash":"b5615378baa3bd212119929c04f03e2ec798efc02eaf92232b393e1cebf21cf4"}',0,'BLOCK_PARSED',NULL,'e0b6aa597b80968310300136398039989602dab8b9d7434a7be23ea72f6f672c'); -INSERT INTO messages VALUES(1554,310611,'insert','blocks','{"block_hash":"6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89","block_index":310611,"block_time":310611000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fdc9e53b5ebcabdfd6ab7a38cffe48845e5fbd0f7de4ddb0c85eb06a8b80c5eb'); -INSERT INTO messages VALUES(1555,310611,'parse','blocks','{"block_index":310611,"ledger_hash":"7805ff535922d15a7faf37f4ba517e6ee61775f71e40e3e1f077afa9acaed282","messages_hash":"49a6a4e246b8ce6a0877dd3e7117c2ea81584a2a33ccea851fa9c6223c75f045","transaction_count":0,"txlist_hash":"f026a93859c733bd910f0341d53802b2443e5efe0a7a7dedd3b0e3bcb7cd6f07"}',0,'BLOCK_PARSED',NULL,'d7139aff89926a4223208eaf0c113c03a28cde065eecb32dab6d6359800aa5b4'); -INSERT INTO messages VALUES(1556,310612,'insert','blocks','{"block_hash":"08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd","block_index":310612,"block_time":310612000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'10811dc9fa9396752f2b23978e200835f5c1c6d60c63af4298b3547f1c91983a'); -INSERT INTO messages VALUES(1557,310612,'parse','blocks','{"block_index":310612,"ledger_hash":"04f908169e879b7fdfeb29f70daa42617c5704b39b2b911b9a33ce64bbf8b92d","messages_hash":"aaebc56b3d648e9bf2da78ca8b3d3c4ef1b8e0ac1e9da8b69519ec3d48a26174","transaction_count":0,"txlist_hash":"b67528c85ae55a57b1dcf3501d340c280af942e4078a1c9a39e9ea63ee9570b5"}',0,'BLOCK_PARSED',NULL,'a9a6aacf14c0e9a6e8852b7ac121d5c6863245bcc88b9aba7edf257a5b956706'); -INSERT INTO messages VALUES(1558,310613,'insert','blocks','{"block_hash":"c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53","block_index":310613,"block_time":310613000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bc26e3913fc78e0fe2effb0aab7b3eb4752dd11a3801c51274a6dbca093041c9'); -INSERT INTO messages VALUES(1559,310613,'parse','blocks','{"block_index":310613,"ledger_hash":"a4fcaabb9f8905ef4237580183f934a039175162518328bec2b4fbad00092a88","messages_hash":"37e4311b44d7d6644d8abe77406672d1d6686e70753756f3a2da8ef0307a352a","transaction_count":0,"txlist_hash":"d6e9204ae7b7c5f887a25fc06ffce731e1c4f3228ff039e35be1d321276f81a2"}',0,'BLOCK_PARSED',NULL,'0d26fd5566c7a31b495b0d1dad8aa31c06a643024cb1cebd8f69519c6fcf97b5'); -INSERT INTO messages VALUES(1560,310614,'insert','blocks','{"block_hash":"e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b","block_index":310614,"block_time":310614000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'33abdf917203d34f4508c5a257380a9a7005e34ea69c22db8d39779e831cb7d1'); -INSERT INTO messages VALUES(1561,310614,'parse','blocks','{"block_index":310614,"ledger_hash":"656b5b57178f9682b70c9d723c08be8694ca94e6dd93f7cac61f83cf38d00ad9","messages_hash":"2c42dfefff1701eee9fa988f6074290928a67b50ba8581afdd8ae51b1d1a9152","transaction_count":0,"txlist_hash":"d1459bf2b59c0c441b8f00889669c3c6f645f66f608eeb623576ed7044bf37e4"}',0,'BLOCK_PARSED',NULL,'8f263355cee2a055e4667f570b19a2554ac839951998dff81d3f0e367501230a'); -INSERT INTO messages VALUES(1562,310615,'insert','blocks','{"block_hash":"fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc","block_index":310615,"block_time":310615000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aed705eff2f0401bc25f5d396e2089811b7166443398393e7cf93b56c1702424'); -INSERT INTO messages VALUES(1563,310615,'parse','blocks','{"block_index":310615,"ledger_hash":"935e774a5ac52c24cfa4f6dafa08bf87de895663d349b4a80e30408ad0e78ad0","messages_hash":"1480014156b2451a43376314d78beb3b3d02a6e832d6611ae0e97937359da78a","transaction_count":0,"txlist_hash":"b35468ce63479f2f7cd17f791e8a66b3a1b42e716a7792a2213bf8742978f9df"}',0,'BLOCK_PARSED',NULL,'84aa5bb43f4c0ab2d9e96533362ddae6354225bcfe24888d4b95ea6b0d402f2b'); -INSERT INTO messages VALUES(1564,310616,'insert','blocks','{"block_hash":"008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84","block_index":310616,"block_time":310616000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'288222dae6f4c0648ca5ae7f7c5703a8c1319e14525a651845816259832f2eaa'); -INSERT INTO messages VALUES(1565,310616,'parse','blocks','{"block_index":310616,"ledger_hash":"a69373473bdb2a81d17cfb98c152812804069d375b0eb6a1c08437187070c0a7","messages_hash":"2e72ed8940147ea9561102e38ca3e7650947f0178be4b75ee50e52ae6fc0dc96","transaction_count":0,"txlist_hash":"51e2ca4af76f00e81e5f946c53f23e1ee7ba4ea7603832ef77c374bae59afe3c"}',0,'BLOCK_PARSED',NULL,'dbea55855bb677643358a0abc1eb4b4beee55fab5f4db7ddc02464d752d8eaee'); -INSERT INTO messages VALUES(1566,310617,'insert','blocks','{"block_hash":"cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29","block_index":310617,"block_time":310617000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'436a1aac42b7a970dc6734c1b7c8edb3268848ffe626044874810b93496a6a30'); -INSERT INTO messages VALUES(1567,310617,'parse','blocks','{"block_index":310617,"ledger_hash":"8291e17379fd2e1214612151f8bcce3bd3b8bc409e528b4b39e3d341cceb4d66","messages_hash":"a04be794dd7cc993bafa6463eff3f493f56a572172b7ffcfb6c5e723777b8862","transaction_count":0,"txlist_hash":"55776209dc06de6d494ddf7866b805d94f4371598273d4dcf23b510e72826cc3"}',0,'BLOCK_PARSED',NULL,'4214c6b54bfbe4a9a26a8250ea71166fe5bfd8e54992f162b41b6b7f32edc144'); -INSERT INTO messages VALUES(1568,310618,'insert','blocks','{"block_hash":"f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b","block_index":310618,"block_time":310618000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ab7844e6464b97900e9aeff3305c8c3f86ac20ff641578c04df1be9ccceeaa35'); -INSERT INTO messages VALUES(1569,310618,'parse','blocks','{"block_index":310618,"ledger_hash":"1d84dfa4fa75b017967b275a803da6b4938348b4b5cfc4a109e0784148a186ca","messages_hash":"374b9303afdc52229487fc5409024f8fb25d9b82626a86ab807f29bf689d1b75","transaction_count":0,"txlist_hash":"cad5af4c24c74aad93c806ae54251b11cd7d13210d68098afb26cbe73e3e120e"}',0,'BLOCK_PARSED',NULL,'03724795e8b29a84e0b6c99aea7a43b1abbd230847b0dd4d20de1529611e875c'); -INSERT INTO messages VALUES(1570,310619,'insert','blocks','{"block_hash":"4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d","block_index":310619,"block_time":310619000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f091f98c2fe2bf76f517abe081d180b975eec9f750ea1a7cd3870ee93ddc3c36'); -INSERT INTO messages VALUES(1571,310619,'parse','blocks','{"block_index":310619,"ledger_hash":"ccfc63ac8e522f8b5307b644d04ad95540fd490008f6e25017b888542f8754e9","messages_hash":"90e10fb595f8339080bf8b45dc57a7b9163bfa3ba25ca309957bf9943cca0183","transaction_count":0,"txlist_hash":"42704ac1329f6cc2fbae3b8d6113afc679f159b44e007a4268d03cd9a9944721"}',0,'BLOCK_PARSED',NULL,'07d081cd7f9dbece7056014693cb561b140bc2b467b01ca48280025be863cfcd'); -INSERT INTO messages VALUES(1572,310620,'insert','blocks','{"block_hash":"98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519","block_index":310620,"block_time":310620000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'097d9982846b99f3839646148b10c70f5295921f03f43f97703161721afc9bd8'); -INSERT INTO messages VALUES(1573,310620,'parse','blocks','{"block_index":310620,"ledger_hash":"7eaf246b47ddee30c53dbc1dd816030c9548ad7b57e6d72a3e61dc1b0f0fb542","messages_hash":"6c0ca10e0af73fd4f3a05ce3411a017abe028d2df830dc9e80e64a1f0a18cb6a","transaction_count":0,"txlist_hash":"e70c9193269a63eb0ade25f20d608c5ae1d9bfa8d79f7ed50c2f3e7b03945149"}',0,'BLOCK_PARSED',NULL,'04a00c070bbd8583f0920c97448b11a26b98d6832f37f2b861bf86192bd2d682'); -INSERT INTO messages VALUES(1574,310621,'insert','blocks','{"block_hash":"1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11","block_index":310621,"block_time":310621000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f3812519afa276ed7807d92c5b997f7becbc1a41e454f5cb463db784f22ca48b'); -INSERT INTO messages VALUES(1575,310621,'parse','blocks','{"block_index":310621,"ledger_hash":"8b12d5690d98419f42aeec91f62b2c0a90f65ca5ffa745051194222e45a514ed","messages_hash":"ce5e96a09d2013bc5d33f2b7d144be4edaeca6a7b71c05721eae9ce723cc3b3c","transaction_count":0,"txlist_hash":"0993cb53bd6e9ea2635b2ddd58c9a43c5610e9e2a0ed0fa5407616a28e3aa201"}',0,'BLOCK_PARSED',NULL,'a23da92245087852ea10cf0c42705510a5324764712f81ce46bc3e4faa059e25'); -INSERT INTO messages VALUES(1576,310622,'insert','blocks','{"block_hash":"3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47","block_index":310622,"block_time":310622000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ade2f6ac6b4f390d54fd0ae9fc818be4eedbd6e00fe851b5ae2126ebc927c0bd'); -INSERT INTO messages VALUES(1577,310622,'parse','blocks','{"block_index":310622,"ledger_hash":"da3a62ddb012e6176d17d3039c8f9bfec8049e13ead94ac2b95dce8049528ce2","messages_hash":"312b9a734093e87f37ef2625c3ba249c49790ad5c0cda9375a6b6fe70746ed4e","transaction_count":0,"txlist_hash":"674ce108f53ec7902c24edac613cfc104e7d08cfde7c8dd3ce65ed9dfd72182a"}',0,'BLOCK_PARSED',NULL,'f7769de44b964e3627ba4e55c618880e025aa2414fe6f513967f6c32665f9dcd'); -INSERT INTO messages VALUES(1578,310623,'insert','blocks','{"block_hash":"817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad","block_index":310623,"block_time":310623000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4367e46aff2e76e79e4a92227fd3f421d8b5f27ece9abe745594d126d88f581d'); -INSERT INTO messages VALUES(1579,310623,'parse','blocks','{"block_index":310623,"ledger_hash":"ad481b7cea15f41cf9cd5fcce0a66edfd4e174f9630786c0169556bd0b361328","messages_hash":"cb00a7e42616a641f7d884e74a2e1dfa7b53a0b6af10793a877ed329241052ad","transaction_count":0,"txlist_hash":"a56c89d0b997d5411cbcf260edcbd409e31a599fe36ac6f20a3e0c031e17e750"}',0,'BLOCK_PARSED',NULL,'d2f62852626938c74d3d45394641340f5178e6bc6899d74dae75d01711485dd2'); -INSERT INTO messages VALUES(1580,310624,'insert','blocks','{"block_hash":"3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4","block_index":310624,"block_time":310624000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b6a0db1352a6fd3630c5b17b905de452d465bed9d0c369901475009939d34d39'); -INSERT INTO messages VALUES(1581,310624,'parse','blocks','{"block_index":310624,"ledger_hash":"0489aca927ff2bfbd2da547c31f2a66c76d8732147a795a797b2645707d2115d","messages_hash":"71076c4b07b0e5f82a80c482801c1614f9974fd5c62e6ca9d0095e99d069d27d","transaction_count":0,"txlist_hash":"daec5678d2803f99becdecb666418513aab7cc9a37f6ab54e675e0a895a3b69a"}',0,'BLOCK_PARSED',NULL,'be93ccad110cdfb82a3bf0f643020070695b7621cd3bc64dc63d3a156cad016e'); -INSERT INTO messages VALUES(1582,310625,'insert','blocks','{"block_hash":"bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba","block_index":310625,"block_time":310625000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6afdbce11bb2020c55c7e625f0c26d3dbdf4cb7d7a7396f88ea3c02c894e8930'); -INSERT INTO messages VALUES(1583,310625,'parse','blocks','{"block_index":310625,"ledger_hash":"95e06957b32480a49eabf24b464749e6dcdfab2d64bd8f6acbfc197ef24ae01d","messages_hash":"08e24d51ac43918e9f79d6d6a5b3c674f36aa36d77a27a6e7ead4b7ca583d277","transaction_count":0,"txlist_hash":"e378650c25e95773a8167e904ce8ff4d10efc57fc2b544054c6b4201f7547537"}',0,'BLOCK_PARSED',NULL,'56a6b5bd53513a7325cecf368d2921004232311fd5dac55dae7332f3dd25dab9'); -INSERT INTO messages VALUES(1584,310626,'insert','blocks','{"block_hash":"b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d","block_index":310626,"block_time":310626000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eea3d4b18bfcb0f7bdcd0f5f0317750bd70e7ba67ef38557a5095d358ee262bf'); -INSERT INTO messages VALUES(1585,310626,'parse','blocks','{"block_index":310626,"ledger_hash":"7a467fc398bbeb5d6a346df3e14a79dff81babc22577d45f8b7f52fb80cb0c96","messages_hash":"b714cf8fa4e1683b37fcac2d109cd1eea547090438ffe5b6ee682421935ee4ef","transaction_count":0,"txlist_hash":"0d54a79bc7f05e33aefa5fece35ec2902b3da8461e34163b58c2fd3779483614"}',0,'BLOCK_PARSED',NULL,'3db912d1f0eaf0943db9d7c5bbc1bb452eda3533a99973a3a7082c1c5a4c5506'); -INSERT INTO messages VALUES(1586,310627,'insert','blocks','{"block_hash":"828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f","block_index":310627,"block_time":310627000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5070074db39ce033217ce141d9f546463e1131feb0e42fd1ee12977f29283a5a'); -INSERT INTO messages VALUES(1587,310627,'parse','blocks','{"block_index":310627,"ledger_hash":"03f34f091bb3e16276b410f8f3bee09a53442e800a58d2487d8732660647a34d","messages_hash":"77eaf5c31e059e0a930e9b75bdea6a5b1e68b8119b1803fb5e1446d5da0d62f3","transaction_count":0,"txlist_hash":"b4e762b53ffd3d9ba24a34032ba26b048f2c7524008cc3f35c0e44c1eaadf8d1"}',0,'BLOCK_PARSED',NULL,'33cb03ea8c14291660724caf7b07a62b924eae6552e372c2fa770b9fdb49bb0d'); -INSERT INTO messages VALUES(1588,310628,'insert','blocks','{"block_hash":"f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e","block_index":310628,"block_time":310628000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6982e2c6cf3e2a6889e6c31b14868e3b2171f25ad231cfec090605d97d4a7ff1'); -INSERT INTO messages VALUES(1589,310628,'parse','blocks','{"block_index":310628,"ledger_hash":"ed30807d010e320514081a63cb058b13177a2e4dd27851c028c910ab0862ac9b","messages_hash":"63f32a60725805546bc8317785565538e7e40929fb35ffc88d0d3429cec52c47","transaction_count":0,"txlist_hash":"966ab2ff446abb9ad3589034fa23dbc5c467d019cb92803745c8732b05a6bfbb"}',0,'BLOCK_PARSED',NULL,'6c0ba4a9ac4bd5322d8713e4cf3979bffa3fb5b9a88f9dd2357f252b170ed31c'); -INSERT INTO messages VALUES(1590,310629,'insert','blocks','{"block_hash":"254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20","block_index":310629,"block_time":310629000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6134476804fc7d382a268995e7a3f8052c7118dd84780c4514c01fa57620f69a'); -INSERT INTO messages VALUES(1591,310629,'parse','blocks','{"block_index":310629,"ledger_hash":"ba0d1e9e0077394a67aa0af1deb288effc88234b747df7c8fbef3896a89bf50d","messages_hash":"1bd94e3bd4ec922e91c777b0bf77533799f99ec602a75753a1546b59890d0bd1","transaction_count":0,"txlist_hash":"f739aa66c8acb9c24def7f1febed2189e6cc63361d2f798ed32cc808acf01eec"}',0,'BLOCK_PARSED',NULL,'0527f3b69d4183d7b64da284e67b45eebc84787fcb2c2200a593664f091c62d2'); -INSERT INTO messages VALUES(1592,310630,'insert','blocks','{"block_hash":"09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde","block_index":310630,"block_time":310630000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e2ed5c756ffc93d00fb57c53295e129e118feff75715de633836cf31374fa931'); -INSERT INTO messages VALUES(1593,310630,'parse','blocks','{"block_index":310630,"ledger_hash":"4f67cab0a96746d8b009f780be5831412c238c2c4b148b7db8752f1c2bfee5f8","messages_hash":"aa7888db91b2b02a3d7235aeb2fc0de60399a854a04c89e7536bf51307a3d49e","transaction_count":0,"txlist_hash":"51ee75dd962cc512bcfbdec32657f7439d60f3e613329a313f44970952abc904"}',0,'BLOCK_PARSED',NULL,'ffc49e0151dd93628fa8b4eb256d490774e1fa2b1c80875fe83115eb8a86d026'); -INSERT INTO messages VALUES(1594,310631,'insert','blocks','{"block_hash":"b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be","block_index":310631,"block_time":310631000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0b3872ef346212116593611198d8e064437c85d776f98d41534d1f585976aa27'); -INSERT INTO messages VALUES(1595,310631,'parse','blocks','{"block_index":310631,"ledger_hash":"8faba1bed91e4c5125448b6a016751e9b1f83e6c9a6e9758b717ebaa2a738dc3","messages_hash":"a5f943de51ddb9f952e92801b92e280d8355057bd888d67b84d4202708e67fbb","transaction_count":0,"txlist_hash":"c513b62a3d7bd0b4fc649889deb032ffbb9efb6d209e4bf5e14ea24250f147cd"}',0,'BLOCK_PARSED',NULL,'d4f4dd92bdac4afc9f5a0fc676bb8d2500cc05bd197c6e6a6928bf910688788a'); -INSERT INTO messages VALUES(1596,310632,'insert','blocks','{"block_hash":"79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1","block_index":310632,"block_time":310632000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8d8ec35d6b49affd59975d4eb9d1c89680bc6b4b8b4959e586e1d0394e8863ea'); -INSERT INTO messages VALUES(1597,310632,'parse','blocks','{"block_index":310632,"ledger_hash":"00e1e3a4c4c9d8dc64e002a2552ba27a005ee5cd1fbc36dcc4b59e9d16a110c7","messages_hash":"594852600ac607a4b62b030a421303c9336641ad1bcf3eaf6b971892b9ca1267","transaction_count":0,"txlist_hash":"6f4ee24d93a37b3686c71e39cc7ce7e3f79a3a9a6397e608d74c3646b9358d62"}',0,'BLOCK_PARSED',NULL,'65c10fb78e871e261c21d74507da03f974d42f4e8ca96fef6ac87a62ccfd0be1'); -INSERT INTO messages VALUES(1598,310633,'insert','blocks','{"block_hash":"e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1","block_index":310633,"block_time":310633000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dfbc471e78d1b9df7698619eb161d5210a00b1ebb14d767a8425b233e9539a07'); -INSERT INTO messages VALUES(1599,310633,'parse','blocks','{"block_index":310633,"ledger_hash":"0ca32d925169eef800ac257a28162666842ec0f1107775ea26d5de8f6074c52f","messages_hash":"c3b986dbcd02f8c741ed822c230095e2384f85f8b84458c35dd2747cfdf47121","transaction_count":0,"txlist_hash":"52825a5f663c03d9d8027057b36564cf4be997fdc15b5b503d1701019e92376e"}',0,'BLOCK_PARSED',NULL,'452ec349ca12a4ab2f5fdaeda7e6a2cc311a3345e60f77e793ebc2cd0a6da161'); -INSERT INTO messages VALUES(1600,310634,'insert','blocks','{"block_hash":"c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af","block_index":310634,"block_time":310634000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c3885afe7fd7070d3c9f58df94cf7e0969a17b2b96f8994ed493363d8242306b'); -INSERT INTO messages VALUES(1601,310634,'parse','blocks','{"block_index":310634,"ledger_hash":"1d6ed8dc599d0a2edec11893a1d6e502394d890cfb425b54c8e18e26c22bd9a1","messages_hash":"f71f39f62deee0ddd3427a073057326771664934d75590809c0f0796ea0fa235","transaction_count":0,"txlist_hash":"e9c54a989efbd6b8234ca7f0fae5d39b7f83479470c90f2d43dd11288792da1f"}',0,'BLOCK_PARSED',NULL,'caf06542347c43c8acf6435743ab1d644b98254c6ef39c9c18e795bbe4cbad9a'); -INSERT INTO messages VALUES(1602,310635,'insert','blocks','{"block_hash":"8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e","block_index":310635,"block_time":310635000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'435530afb9576765d2c24b204a4de4a25701ea38bf6a353993b4218003610aaf'); -INSERT INTO messages VALUES(1603,310635,'parse','blocks','{"block_index":310635,"ledger_hash":"f7579cffd83d518b2d123f1972a2d33c9e1e0672973d0112b485ac3895e40e97","messages_hash":"f996f16496b47ccbf70ffc8ac27c589970ac369b42ef8c1010db46c64c8c03a2","transaction_count":0,"txlist_hash":"f93c139e303a561ea8d29de69ea04dcdea0ed5ae41ad8ac0f6fdc2fe8817d815"}',0,'BLOCK_PARSED',NULL,'788a992313e1383759172ba8117ebe346d2b169ae56a9cdc63a16421fd0d6d87'); -INSERT INTO messages VALUES(1604,310636,'insert','blocks','{"block_hash":"ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31","block_index":310636,"block_time":310636000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'476026ab441dac28b43bc62b069e6a77e0c40c93cd255a6ece327398f9c8a934'); -INSERT INTO messages VALUES(1605,310636,'parse','blocks','{"block_index":310636,"ledger_hash":"6a12a7e2aefe8bff21de544dfc773b32c667a85d7d7046aa2d3b77eb62913323","messages_hash":"d84ef56606e5a88e804082aa6599c267fff4704642b565bd00006685ef6cfc00","transaction_count":0,"txlist_hash":"63a31a218d2b42aa278be0ff76c71bf572114c281a90431d952010b7e75a0b14"}',0,'BLOCK_PARSED',NULL,'1143af0f3d1b3ce4d43384933f07cc5725419178d07118ccf72b0d6a8d4f478e'); -INSERT INTO messages VALUES(1606,310637,'insert','blocks','{"block_hash":"d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336","block_index":310637,"block_time":310637000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9b12efac81314503d3b7377d64d8084392d4d6ca599b6857558c470272f2412f'); -INSERT INTO messages VALUES(1607,310637,'parse','blocks','{"block_index":310637,"ledger_hash":"a9d05feb729df342319d0f9f4df1eb72c28f60c41caead0cbdb50b2de397734e","messages_hash":"99e56dbbe5801899c6955e350bb6b80172b4b68a437f824560ff169128dd29a5","transaction_count":0,"txlist_hash":"aaf47bc37b85c127d9bedf76b0900a07b29bb2a1300a12d92200e3f006e0b930"}',0,'BLOCK_PARSED',NULL,'626a49bf808490638aa9db544994212b8bde2df8ae6a2cbe9dca05fb79d4a64a'); -INSERT INTO messages VALUES(1608,310638,'insert','blocks','{"block_hash":"672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b","block_index":310638,"block_time":310638000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2d28735f8e3141ac1c4fb65b433ffb7b1afc5aec55b8636ef2e1206a89f265d2'); -INSERT INTO messages VALUES(1609,310638,'parse','blocks','{"block_index":310638,"ledger_hash":"a7668ddd027e8557dec79414d7f6748c357eb0d1e93a28fcae2a13d19fe14247","messages_hash":"078b3b6ce12d82148bd5bb9834f76bbcf4fca03a83116dd0e153667c2e69a7b8","transaction_count":0,"txlist_hash":"eb6e3a68506f9c0bd4c522d5537ea01140273c8b84f376cc95fda0c99c8d8c7f"}',0,'BLOCK_PARSED',NULL,'00f852f90f7fedfa11ac81d37b5961fb59b87c6a364e8f441e78384e581bd329'); -INSERT INTO messages VALUES(1610,310639,'insert','blocks','{"block_hash":"d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b","block_index":310639,"block_time":310639000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'072aa6fc0e7adb41b679b18cf70a6f43e9627b2f4013c233f41bfb7e3e58f9bf'); -INSERT INTO messages VALUES(1611,310639,'parse','blocks','{"block_index":310639,"ledger_hash":"776581e6fef0013b9824dcebd414b27819db7a1adf285aa1358a0c46dfbde626","messages_hash":"a39c88f3fc8641d3744b3a88af36af70fbbae2ba1f4fb767f3a1cd5f4a636624","transaction_count":0,"txlist_hash":"4618a0558955508e24b4e79308cfeefbdefcf4def0f3dfc389d66b335488976c"}',0,'BLOCK_PARSED',NULL,'ed8cfa900eb514479b7ae2604f8d59b2b9e127d105e9a9b009b38eea845c6f52'); -INSERT INTO messages VALUES(1612,310640,'insert','blocks','{"block_hash":"474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59","block_index":310640,"block_time":310640000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9ffcf0f0264ae40b65b1e653f0b403f9bd3d59a87dcf472a8177f6f40f68f5c0'); -INSERT INTO messages VALUES(1613,310640,'parse','blocks','{"block_index":310640,"ledger_hash":"a4088753ec2b36d7dc750fa73b06d6966119c647887f7d551f0a0063de9b8f6b","messages_hash":"c0f045c019827d5b5cd15a26d32293bad9b32f9e40ad4b5b0f26528695743996","transaction_count":0,"txlist_hash":"41342d146bb15f623738e998c667d3bf2b51966495f1bfc948bfdfef93d27bcf"}',0,'BLOCK_PARSED',NULL,'b249f9bf061dcad18876024db67db6928c14a622508130d393b3ce6bd1f2787f'); -INSERT INTO messages VALUES(1614,310641,'insert','blocks','{"block_hash":"02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b","block_index":310641,"block_time":310641000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cb2fc4f342f2f946f88bb9d7a993c2895f89f9183c70a7e54c3e69caebccef59'); -INSERT INTO messages VALUES(1615,310641,'parse','blocks','{"block_index":310641,"ledger_hash":"4b9dfe1a7e0e1b4b25cf7f9f88491a116e07eba534b3493325d63bd47385b8b1","messages_hash":"1f1d6c3624f88605cab087414e4f6f254a5618b2aae45ea6134e43516a44542d","transaction_count":0,"txlist_hash":"266cbd2f8009b1c950b4a0f5d7b1a9e7fee56a0b60feca824b5f7e4f69334435"}',0,'BLOCK_PARSED',NULL,'b1fc374cff6b2de92432b4290316ff08945926089f97a9ac78a1da61761e5106'); -INSERT INTO messages VALUES(1616,310642,'insert','blocks','{"block_hash":"cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd","block_index":310642,"block_time":310642000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'288487a5bc987d4441fd3cf5cdafc99aef444320a4fa03657af70fe80fadb342'); -INSERT INTO messages VALUES(1617,310642,'parse','blocks','{"block_index":310642,"ledger_hash":"2d86730c1683d1b55e0500c58baac0ccc3b7f1e7cafd4ba91ade00842f04912b","messages_hash":"70266ac82fa8120f8415459950cba5a891f92b185d41949b1109aadc66d7dcf7","transaction_count":0,"txlist_hash":"483e13632b7785262d09bbc9c55ec5ecfae7992d38b44d92b3b7b9dffc979be8"}',0,'BLOCK_PARSED',NULL,'62a672288f6da438638d13a5da6adb635f77bda99f1d72e5067b6f10d21759af'); -INSERT INTO messages VALUES(1618,310643,'insert','blocks','{"block_hash":"b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b","block_index":310643,"block_time":310643000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'728205651c27100dc182fcd1c43089951564c688b3c01ebb661b0d16ecf68236'); -INSERT INTO messages VALUES(1619,310643,'parse','blocks','{"block_index":310643,"ledger_hash":"aff408483481696ed082d4177a3884f24f99b01ea9d89813cda2d2e7fcd34a80","messages_hash":"685e2c0a87db8ea0214c2191429804ff7f11145b3156a0d3425646a4dd7b13e5","transaction_count":0,"txlist_hash":"2d428ebef22ccd8e01c73c47d63ecc37614f5bd34907d6b5e821aa4b3d7a0b07"}',0,'BLOCK_PARSED',NULL,'e2eea44fb1e59cdbc3a980dda8442be8d0333a4151e74effc23d957e364e26c4'); -INSERT INTO messages VALUES(1620,310644,'insert','blocks','{"block_hash":"f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672","block_index":310644,"block_time":310644000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a994b76eeab9a3136043a57915bb76c0e29157a43e53574bca88e04a2676d6a6'); -INSERT INTO messages VALUES(1621,310644,'parse','blocks','{"block_index":310644,"ledger_hash":"ad875d0db986ae2350a0cd34fc3c20e9db9db2259ab1e145ea6d896d968aa105","messages_hash":"40776d6f8094d5b1fecdf694b43142312d6f31c1b5d61e70ec19e70517a1adae","transaction_count":0,"txlist_hash":"848e6511e3651c225508e11808f494e5730bff9072e37c5961b209f6ca5eedb1"}',0,'BLOCK_PARSED',NULL,'572dfeeeed959eb41a23895b40d69ee862c09280ffc27ebb58416415d239dd3a'); -INSERT INTO messages VALUES(1622,310645,'insert','blocks','{"block_hash":"f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3","block_index":310645,"block_time":310645000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5d863772a2fb373e32e9259a2134ac4638cfd07c44fb39fa531b1364a0a01bfa'); -INSERT INTO messages VALUES(1623,310645,'parse','blocks','{"block_index":310645,"ledger_hash":"a92d8611bc794c5d360cb0121223d44928ad0e6612cd6400a06965b670115adb","messages_hash":"282d27b4c64ebbd5fbefb3920cc52ba386922099e50d1faa4e6f96bf49936a8c","transaction_count":0,"txlist_hash":"1e1feae6d6050b88b16c5df26ce029eda5fd272e96bec74d7a6139fd4c38343a"}',0,'BLOCK_PARSED',NULL,'ad2d68cd04fbe02d442558139edc6a9648556f434e591ed6acb47a69b49c4de8'); -INSERT INTO messages VALUES(1624,310646,'insert','blocks','{"block_hash":"839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494","block_index":310646,"block_time":310646000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fa107f982c508b32f2dffdca0ffb2b76a960ad27b7b33b0bc2345a9ebf079a14'); -INSERT INTO messages VALUES(1625,310646,'parse','blocks','{"block_index":310646,"ledger_hash":"f41b95ef2301edbee5b23a9c11044ca8a0fb39cc4a43f277ef7e56eb1d8fa920","messages_hash":"b345dcb4eacd36f8f16e706ea93fcd31f52f9475b6055fd492674f2e1d21e00c","transaction_count":0,"txlist_hash":"d3f50fda8401e46bd75e7d4abe1296363de460d45141da3075342c8bc017f8d1"}',0,'BLOCK_PARSED',NULL,'2061899e625f0e128b2b168abc86e2b6ca59bf34597c2f39622bb42a12567827'); -INSERT INTO messages VALUES(1626,310647,'insert','blocks','{"block_hash":"8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d","block_index":310647,"block_time":310647000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d5e25ef4b79885d0a3d7c9e1ec3b88d4e1b6ba8c238af465ea970f96db829f9c'); -INSERT INTO messages VALUES(1627,310647,'parse','blocks','{"block_index":310647,"ledger_hash":"1dfd0b93adf736f986ceab06a68824b9efeb97291503b05b326f028518569602","messages_hash":"11bd85c511f9acabb48e97cb817dd089b886bf0e5a200014ba54fcfc9dab12b9","transaction_count":0,"txlist_hash":"4fb604a40972ea2e2fe9dc8ffe24f8bfb8d77900c80ff8f33bb7a34b2a0be681"}',0,'BLOCK_PARSED',NULL,'be4219747e6090ceb0c1d6b314c3a6184c68746b4ccce4dd43788052672d4c8d'); -INSERT INTO messages VALUES(1628,310648,'insert','blocks','{"block_hash":"8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f","block_index":310648,"block_time":310648000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b362af5d251bba90bfc7a79e9cee8c34e2b8e410bc3b8c54c0000d5b36bb9aaf'); -INSERT INTO messages VALUES(1629,310648,'parse','blocks','{"block_index":310648,"ledger_hash":"2aa89ef15383a6417e2dfcaf0bf7504b439b0a0270942b86e962d30220f5dd6e","messages_hash":"2db1c60dfc41e2b6868b7258c7abbd1d4d9c5a492c63cafeda0802c8aa51f38f","transaction_count":0,"txlist_hash":"c9ba3aeda8abee31772f8a0f7cb5643a12eeb8c9fe59045bb0c9d49d5c69c3f7"}',0,'BLOCK_PARSED',NULL,'52cf4e4e696fc1b48b220cd4ed443c52720dfbf9f82ed94efa35a7c50c20498f'); -INSERT INTO messages VALUES(1630,310649,'insert','blocks','{"block_hash":"6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb","block_index":310649,"block_time":310649000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3a33472f8ee3a43942febafb546cb4556046ce8975168ded9a2a2f3902328267'); -INSERT INTO messages VALUES(1631,310649,'parse','blocks','{"block_index":310649,"ledger_hash":"7159029d6e74c3eee2fce15ff8dae41263e1c4db016eda0e20ef63b0ba59e07d","messages_hash":"158ba0ba02bf4670c3863c8ba4f17da302454a33a343f0e5417db84e4ede7e07","transaction_count":0,"txlist_hash":"1654a3cbc3954d23e0ca92af18141e3384277e78e664ad40f2867fcbc60a2d70"}',0,'BLOCK_PARSED',NULL,'bdfe05f98cb57221ad02f56844e6191287da3b24af6f202eb8a99d2c5eb7702f'); -INSERT INTO messages VALUES(1632,310650,'insert','blocks','{"block_hash":"630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0","block_index":310650,"block_time":310650000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89804c9ff5312bcae051b512ad1b55e611ed3c41a379acbd1a7fa07bfc2e2e8e'); -INSERT INTO messages VALUES(1633,310650,'parse','blocks','{"block_index":310650,"ledger_hash":"81fb324cdf169e35d7d233ae1f08fa00f880d5cb9e375fd20ff36658e717620c","messages_hash":"bd14debb288ab6760292db9069d4536c449e5cfa1c12a5691f883f197ffe9687","transaction_count":0,"txlist_hash":"d10f8ee8b2a804d4610ea132e890fa11bbfcd9582d059a77ad3b59c9ac93669a"}',0,'BLOCK_PARSED',NULL,'dea163346d5c23289937f0be379cd1cbe1b60fc7c3402ef4951dedecefef4548'); -INSERT INTO messages VALUES(1634,310651,'insert','blocks','{"block_hash":"abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22","block_index":310651,"block_time":310651000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2b23da0c537727d0d093be9ca704c7a91a0c4e61f1c9470731a117809b4cdae9'); -INSERT INTO messages VALUES(1635,310651,'parse','blocks','{"block_index":310651,"ledger_hash":"bfcbf8a4ba790bdf9f7d27b1a20c2acab287830f61523be9b76a4b2645eae966","messages_hash":"fdeccfb491199bce4f48ba5c277a60b25ff9d04c5f5e0444dbd8619812ea4b00","transaction_count":0,"txlist_hash":"d4ca114a2c4e1e43d82c0502548e9f9168e55553df009f846c652477104b3fc8"}',0,'BLOCK_PARSED',NULL,'bc211d75adb82d06ea9c43fa3b463b96bc1f1b7b34a412360b50d8ed620b231c'); -INSERT INTO messages VALUES(1636,310652,'insert','blocks','{"block_hash":"5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6","block_index":310652,"block_time":310652000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ac9e1c9d83d1be280dceb5a17e31f790c2a6cec2620c0a12d369e88eca3e7f76'); -INSERT INTO messages VALUES(1637,310652,'parse','blocks','{"block_index":310652,"ledger_hash":"47dcbad7a555f23477079be3a5ea3ef83913724056381f787dd7771e0a3b4ad5","messages_hash":"58ed559ec63ad18957d120a82cd5f3487be62e8bfd1c7a333fe1f2ddd1c6e58f","transaction_count":0,"txlist_hash":"6491a9bdd162cac7cfadb1930138e1714fef048d0b2b001fcbdcf24413110d42"}',0,'BLOCK_PARSED',NULL,'d60f45683680a2c1e4e3d411b91428b42310f58957548d80264dae9c7c369a05'); -INSERT INTO messages VALUES(1638,310653,'insert','blocks','{"block_hash":"149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0","block_index":310653,"block_time":310653000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'62bd8629653fb60fe77f3a78c13a6760683aad6ba4dd769df87ac68e0a8a2d25'); -INSERT INTO messages VALUES(1639,310653,'parse','blocks','{"block_index":310653,"ledger_hash":"e8721460d27297ca09bf0026c78ed56b505b95d59f922d63ad8ed542a8aa8d66","messages_hash":"e2966788a81db390cfa0317f23743defc5a90b02b2e862a30ce863a00aaf77dc","transaction_count":0,"txlist_hash":"fc791bbbf8c78847cb342bdb1273cb697c513c68ee6d280941031cc38d4d6354"}',0,'BLOCK_PARSED',NULL,'d048e56137e58d14055785f373a271159b998086c03ea5803f8301c0cbf6832a'); -INSERT INTO messages VALUES(1640,310654,'insert','blocks','{"block_hash":"829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569","block_index":310654,"block_time":310654000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89f87e5840479464e5052a60c0df78a0b5c74753589c159dc5e52bca62de2a28'); -INSERT INTO messages VALUES(1641,310654,'parse','blocks','{"block_index":310654,"ledger_hash":"0008b3d669bca8b3790ae93bee813f4fdc302ddc132caf32e51c6539cb316d72","messages_hash":"0b87085b00b5dd73c4a69870e34437e2183e3d55ba50eff7d34fc3f7f923be1c","transaction_count":0,"txlist_hash":"dfaac3f5a38a1b4586cfe3ea5959b3d879d50a231191fcf46f75fec0b8a3329a"}',0,'BLOCK_PARSED',NULL,'431b2d205f29ad47416b14554aa1ca9136298df8410cd5a1cd6790883a37fae9'); -INSERT INTO messages VALUES(1642,310655,'insert','blocks','{"block_hash":"c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55","block_index":310655,"block_time":310655000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'067bd6dc923dd4a4ed1851b226ea18ca3480e06c722880bc1810293b81c7f27c'); -INSERT INTO messages VALUES(1643,310655,'parse','blocks','{"block_index":310655,"ledger_hash":"ecab44b42ca7a0f302ddc87392714a8b842daf98b329edfdb233ffbcb86dd658","messages_hash":"2f9a0d805c031c4ede1170600374c2bf4b5229ac71b5b27a4ab87a3e67e8231c","transaction_count":0,"txlist_hash":"5a9a17b6be46a48a00b986503cc922e945ed3e59a0fffeff477e6953e776ed2a"}',0,'BLOCK_PARSED',NULL,'bb6471809b8dba0431267c50f07cc76a7fe755ba65449445bf8978537c2d16e8'); -INSERT INTO messages VALUES(1644,310656,'insert','blocks','{"block_hash":"5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b","block_index":310656,"block_time":310656000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a2d14dd6ba070180c8acd5bdf7e53c458f989b06ae39ae7321f86bcb128ff9ec'); -INSERT INTO messages VALUES(1645,310656,'parse','blocks','{"block_index":310656,"ledger_hash":"559c96bdf5397b1fbd27e6c67c57ce9e97a95e335288f9bacb03d0b069afa67d","messages_hash":"f9fb148430bcbe08f21820e99843d2762bedd62477e7cbc500e44976462d964c","transaction_count":0,"txlist_hash":"73e8b5247b6daa8b931b1b28610b6fee7e10949a1aa6a62d71e276929fc5ed11"}',0,'BLOCK_PARSED',NULL,'b4b30048bf8d8cb2e2de8b4f8853e6d78774bd9884586ff1069f8ec50a4a0314'); -INSERT INTO messages VALUES(1646,310657,'insert','blocks','{"block_hash":"e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26","block_index":310657,"block_time":310657000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'92bac5d43d4a43070e1ca1e4f6de753ef0bdea990197dce57df2420accaf916e'); -INSERT INTO messages VALUES(1647,310657,'parse','blocks','{"block_index":310657,"ledger_hash":"396ea2b013e7a9bf16b5276990c4102c7385b43c964084c1f5eb6397c2d4e58b","messages_hash":"c9ab3ce79c13bdf00565c06aece7fc7c5a781aafffc05c55a7153db560c3a3dd","transaction_count":0,"txlist_hash":"c426afc816a4d8536d96d8ed39c75dd8145e6d93864259b017c1932bd3bf0687"}',0,'BLOCK_PARSED',NULL,'808d5db12e83e9f673295cd785716cd97faed5305e1861e92767266888a958a1'); -INSERT INTO messages VALUES(1648,310658,'insert','blocks','{"block_hash":"579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501","block_index":310658,"block_time":310658000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'06fa1364664a3f2372e51e43728b11acbc15d9aa228d3f91c8f0e84568dece8b'); -INSERT INTO messages VALUES(1649,310658,'parse','blocks','{"block_index":310658,"ledger_hash":"ff3c16421a8f61a3c56875f8a80cfd670f081f919fc9fc2af8b4f5f9f133f614","messages_hash":"9dc09bd94c9d1657bac3782e1114af0a15056ed8fadde6520d330177a740a852","transaction_count":0,"txlist_hash":"a0a1dbdc2cb08b59bbc105c44ebae0f8776483f2c1dba13a519984ca70a839db"}',0,'BLOCK_PARSED',NULL,'d4db1617e36a0af43c68874bf83f3aefd6a1a7fc06c56b00330607a0b2dc2cd8'); -INSERT INTO messages VALUES(1650,310659,'insert','blocks','{"block_hash":"e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f","block_index":310659,"block_time":310659000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'680a2b5ca1e8f9ce501cad257841d76147a2f3f2695313233e3bcee1fe79a4f2'); -INSERT INTO messages VALUES(1651,310659,'parse','blocks','{"block_index":310659,"ledger_hash":"34b99e29c60046d9a128832e1faedd9e831a71d358cfb914400c13a837370f0d","messages_hash":"0aace83184349717cb211de8992d36fbc6a25a81df46c4f90c3ba6f3f668c974","transaction_count":0,"txlist_hash":"8820d989cad56e3ec4c084d37c7d586355019ea8e5cee7371ff05f4e19972528"}',0,'BLOCK_PARSED',NULL,'5053c32e2f920b618ce66e3d1a2743a99cac2c2bb28297c367885be8a0adc035'); -INSERT INTO messages VALUES(1652,310660,'insert','blocks','{"block_hash":"d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d","block_index":310660,"block_time":310660000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2d908f80c7e8ff72c32316feaffb50e5a06e6b7e251e34d9b9727cd228a4fc4b'); -INSERT INTO messages VALUES(1653,310660,'parse','blocks','{"block_index":310660,"ledger_hash":"e891b77c195003df8d383aa2b6a292153ef421967b48d9ed7058faf2f5cd8392","messages_hash":"654517d01ce79743e41470864e73d95b03c0d95491516189ecb8876ef71ae748","transaction_count":0,"txlist_hash":"f606b03288e72a208f5d44ef49343632cded5a190acc9784e7d44c3ce89e3d6b"}',0,'BLOCK_PARSED',NULL,'f9177657a9d5419d3590c41ad1e43370fcafb745364d384c11767ca66e7ca2a7'); -INSERT INTO messages VALUES(1654,310661,'insert','blocks','{"block_hash":"badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89","block_index":310661,"block_time":310661000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'83ed90debd3f92b88c77216d8b1acd531f25f8e1df59faa17a3ed95743ee7c87'); -INSERT INTO messages VALUES(1655,310661,'parse','blocks','{"block_index":310661,"ledger_hash":"d210c23a7243de978dd217275021a82ab92cde2193eec1ef1f7b51fcb04ee805","messages_hash":"afdaf4562913f50b33e58c46ed749b3a841d1e306c3697dbffbac8631ba7f2b9","transaction_count":0,"txlist_hash":"121ea9d910cd7cd9522a4c21056464d4b5831269d55d3ee93613f9edb80abce8"}',0,'BLOCK_PARSED',NULL,'fc403fbe506d6f61093fd7b8ac122aabb96ccb8dcee9726c681fd267c34ba422'); -INSERT INTO messages VALUES(1656,310662,'insert','blocks','{"block_hash":"952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb","block_index":310662,"block_time":310662000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6b0757b114f0a1acbfed66cab60240d6cbc76470041bfa52671d5de8a11b6803'); -INSERT INTO messages VALUES(1657,310662,'parse','blocks','{"block_index":310662,"ledger_hash":"3aa08456f2d542275957de7c3b11ca112a95cd6f9ef10db7d8b09f15329a5318","messages_hash":"11ceb66f10015594a7e5e5b09390c89155a3d5ba3bb51d6c39d46bd4d9d1e301","transaction_count":0,"txlist_hash":"f2793e5e7ce5de99061d249b7eacd8c31a0b59c839a6f32905aa4fe955458137"}',0,'BLOCK_PARSED',NULL,'f1a082617db05fb3beec1359e105dabb31c675712a3bd12845dbbaef49b34a2f'); -INSERT INTO messages VALUES(1658,310663,'insert','blocks','{"block_hash":"7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028","block_index":310663,"block_time":310663000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1e39fe30a0c2f06859d1ef1fcb16930eae8a8e94cb70ff47f3bba85b04d7b17f'); -INSERT INTO messages VALUES(1659,310663,'parse','blocks','{"block_index":310663,"ledger_hash":"65409754fbd2df007d8f88f589d655e2327f66b0a80054e3f901cfd6064afb0e","messages_hash":"85ba074ba8c0f28418326b310d16e896aefbfb5b8eb3967f167315636c6d4bc5","transaction_count":0,"txlist_hash":"f2f60e0e823edb418f01614f56dc15887f96fec107ed52406627f035c7efdd21"}',0,'BLOCK_PARSED',NULL,'62865cbe463c03d4e096c0ab6f0dddd4ffa198f1aaccc15ed31536ecb3aac74d'); -INSERT INTO messages VALUES(1660,310664,'insert','blocks','{"block_hash":"ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247","block_index":310664,"block_time":310664000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'07e84c5e7e58475d27d117de4a831dc33a6bcbdd6a59d106177b89f3ad63a362'); -INSERT INTO messages VALUES(1661,310664,'parse','blocks','{"block_index":310664,"ledger_hash":"95d04fa70f12ce0dade256651cc11fff8140a46b628966e9b6a51b38ec9e22d8","messages_hash":"12673c03aca38e253579dea035ad95bee24651123d197040093b39982d9e168e","transaction_count":0,"txlist_hash":"229a5edda5a8c504658c57bd7e776fb286c26031658efcc68c0e0bd80566e20a"}',0,'BLOCK_PARSED',NULL,'b618105c4ff1470be8ac038fa4b1adb1cb6055aa3e7bafa3be4c7ddb7a1d6f85'); -INSERT INTO messages VALUES(1662,310665,'insert','blocks','{"block_hash":"8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8","block_index":310665,"block_time":310665000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5a9861a4b5133b1078d32a221e7eea6b13375f88bf4204a5547152d16f424b98'); -INSERT INTO messages VALUES(1663,310665,'parse','blocks','{"block_index":310665,"ledger_hash":"556990a4482613bc6e4b6a0d94969aea4a4f299031c3305aad91ffc2fb5899a0","messages_hash":"3b2be671c2390b0bff63b8f1ed97686a104ae65e2da7eb8d2486b1e6f7d3adf6","transaction_count":0,"txlist_hash":"b3e7615a7e9b22882a5d63ec2c1e4944ffa550aafb856db4dcd03f659eb73d8f"}',0,'BLOCK_PARSED',NULL,'7e7456d1834de1cd539a6472359c732295132998412c687a499fc4e7956ee509'); -INSERT INTO messages VALUES(1664,310666,'insert','blocks','{"block_hash":"de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52","block_index":310666,"block_time":310666000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'778b75dd72741eaa91796d4e66a9c029399002514cc18e3967fd760fd60739d1'); -INSERT INTO messages VALUES(1665,310666,'parse','blocks','{"block_index":310666,"ledger_hash":"f070cb9168ea3002a9facc00f056938659807077a8fe257958829e40dfd7d2d6","messages_hash":"6c65de23f4c8bcb130113144dd7f8c1c12a9ea06683ab0f08c092a25e42fa7df","transaction_count":0,"txlist_hash":"9f5771d6fb484760ae44a0b7141c89e288c483d5408e26e811fa4612ca68a3ad"}',0,'BLOCK_PARSED',NULL,'3ef140ea29b88638ada86c7e4d21d9d5bcc6b54fec91f2a137c1e472d1e10bab'); -INSERT INTO messages VALUES(1666,310667,'insert','blocks','{"block_hash":"c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83","block_index":310667,"block_time":310667000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'745b27c7e3308ca29504184b9bd603895e571b413ce2b7f701afee8318abf00d'); -INSERT INTO messages VALUES(1667,310667,'parse','blocks','{"block_index":310667,"ledger_hash":"ec7fc439acb828fadd36de7918fd6503e978f76330e56b0434d28eeeaf5bebb8","messages_hash":"b914fefa784e1dc61433186e78aad04cd224c3344dc3255b1c6044902fc00a94","transaction_count":0,"txlist_hash":"67d4cee1acc31181740c2f05b12144c7184111c5c12b4c0fcd43455e5b1d1e00"}',0,'BLOCK_PARSED',NULL,'a0370184adf58ee43aff5010c8e32a0fcbb255b6d808c98e20855c7b264deae4'); -INSERT INTO messages VALUES(1668,310668,'insert','blocks','{"block_hash":"699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27","block_index":310668,"block_time":310668000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'171bf146070071e5a8272e03144936f2b0c2853d1b442aa880851c60ad0768b8'); -INSERT INTO messages VALUES(1669,310668,'parse','blocks','{"block_index":310668,"ledger_hash":"03a7ece626bd68fe45114048a0a7a528fb118ce22bbb650c9014e37312d2d75f","messages_hash":"20dc9bc450deef2fd7deff6f38744ab5d1982759ba4d7240569de1d9b17d9b46","transaction_count":0,"txlist_hash":"d352c080a6cd8f5ad10a897a2300f6aa87bee31d8f47ab9477a96b96935c5ef8"}',0,'BLOCK_PARSED',NULL,'9d06c2a8d5fc2681f37d163feda2617d4e5a880fe2be9a7157a32154696084a0'); -INSERT INTO messages VALUES(1670,310669,'insert','blocks','{"block_hash":"c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f","block_index":310669,"block_time":310669000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dc94f7c1ee16cfd715e405190c6e2c16733a6c90c2975b9bf87edb7cb72b95a4'); -INSERT INTO messages VALUES(1671,310669,'parse','blocks','{"block_index":310669,"ledger_hash":"ea0f0c31b8f007d93ea96539e8d922f32c98829017fa79261c5fd077ec9fdae8","messages_hash":"1cd1e93e4867edf77097266bd0b5214ee4910bb461ca282a29e92116091f522d","transaction_count":0,"txlist_hash":"780251573f61009e4ac61ee4879e60ef6cc072785e6c57c2dacdd57fb03520c5"}',0,'BLOCK_PARSED',NULL,'0a644f810b7aa3e31760b133d190c71700af80b5f74a6d32be14520b95c0b7e5'); -INSERT INTO messages VALUES(1672,310670,'insert','blocks','{"block_hash":"9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944","block_index":310670,"block_time":310670000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6bf6da262a1376060b1b32bbc0c565c71ccdfc7390135e9ec746260391d93232'); -INSERT INTO messages VALUES(1673,310670,'parse','blocks','{"block_index":310670,"ledger_hash":"2adad32a5f4e777e309e4e245eb2479a999d3d151c9e8792ce166ea520529076","messages_hash":"b1becce13f8df25d5d9fe5af2bad1637262f13902be2bb2397401c92ed99287c","transaction_count":0,"txlist_hash":"b6a1180e0a158145ea9cad059da2c082e2ae84941d0f90fb11addae85d081964"}',0,'BLOCK_PARSED',NULL,'ccbd811b2c3766cd4a3637192ce5d4751ce7a663ba2a24c99b20e8a079abce18'); -INSERT INTO messages VALUES(1674,310671,'insert','blocks','{"block_hash":"4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522","block_index":310671,"block_time":310671000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dec575ceda84b0219347e572be8fab480c831593a78b1bc21331104143538a9d'); -INSERT INTO messages VALUES(1675,310671,'parse','blocks','{"block_index":310671,"ledger_hash":"50e2196f8189b95d5ecb20aba76f9cab54ea04869c384f537c7790df812ae238","messages_hash":"643ef0ebf5f419385a02b483b3709976d36a01ea7c79ebcd3b05468e2bd7913a","transaction_count":0,"txlist_hash":"bf87e973ededd051c8bd23ccefb1de6528a82b1071aa3b791eb7c9263e2d8ff7"}',0,'BLOCK_PARSED',NULL,'5dbaeb314bf6cb7ee9178bb798730ec4bb96cf996b241d2c67daad27cc77eceb'); -INSERT INTO messages VALUES(1676,310672,'insert','blocks','{"block_hash":"491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa","block_index":310672,"block_time":310672000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4dc5b5115ad53c7ff685935303ce9a71cee67d26ed2dd01b5b5c6c430e881e9b'); -INSERT INTO messages VALUES(1677,310672,'parse','blocks','{"block_index":310672,"ledger_hash":"846e3f8f36a3ae9ee67a0c4c42dd055865128928bf4985a365405922a0084c3c","messages_hash":"600dcdc7484062a7487493c2b8875353d4f20d97d3f5f066384327da53f98165","transaction_count":0,"txlist_hash":"faae8112e80bc60f69dbae4257809ba549b0fc2b4927357945392e3843d34192"}',0,'BLOCK_PARSED',NULL,'ec569cff66861f3685e19cb46a4c856c1218fd7a73c2e1dcc0d0eb614f32542e'); -INSERT INTO messages VALUES(1678,310673,'insert','blocks','{"block_hash":"03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5","block_index":310673,"block_time":310673000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6217a92c1d49e3390fab81b4426b04894db132957448bcbfcde103f0742ec1db'); -INSERT INTO messages VALUES(1679,310673,'parse','blocks','{"block_index":310673,"ledger_hash":"c428b66bf0e998d32add95f1fc2c159ca42a2d8c8e8742a8ba40ae36d56def54","messages_hash":"19df6f4a3edef5cd1b966f694707ee4bb4dd58287f6dbdc4c82782ab335d61cd","transaction_count":0,"txlist_hash":"1614c8d076a5878f09a0755de3d774e2c3334884876b3b6d730ce1dbb910b2f0"}',0,'BLOCK_PARSED',NULL,'0d422468b118f7e4e0d68ca4effa5292f10537ca969cd42155f1dedcaf1ce3fb'); -INSERT INTO messages VALUES(1680,310674,'insert','blocks','{"block_hash":"9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c","block_index":310674,"block_time":310674000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f3cdfee8eef00fe9fc9581f1d3ae767b2fa83b9dad9632b626bbb1547f436332'); -INSERT INTO messages VALUES(1681,310674,'parse','blocks','{"block_index":310674,"ledger_hash":"05cc21de553be3fadaa55748f1fbcc5038d5cf04e68912a4af0b61cf501e5712","messages_hash":"b2fc94b43ba18452dea194dc4e39d4887a305c096a3bfa33100d3c0a061c6524","transaction_count":0,"txlist_hash":"2d25ca16358d0209557c678cd2f9826d9e15f45ee9bb1211adea973da62d0116"}',0,'BLOCK_PARSED',NULL,'34a5be3750291471931c2b4efb6cc17a04af726d6afb0a15354a50eaaa57f513'); -INSERT INTO messages VALUES(1682,310675,'insert','blocks','{"block_hash":"e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21","block_index":310675,"block_time":310675000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'adf1d6458015075f56c377ae9a3dfd596cd21e2a88a40f34170cdeebf51b5a63'); -INSERT INTO messages VALUES(1683,310675,'parse','blocks','{"block_index":310675,"ledger_hash":"b28e9d1b35c5fdc969d79e47f2b909f74dae565b2527d11e7490a13942c6a583","messages_hash":"1b89cf5af3e3242102873babbac0c7fe9ae92a01dc8ed1092dce5d30cfe4a964","transaction_count":0,"txlist_hash":"bc62362dfb5ae26d529f4c5ed88f8096de03718447326cfbad2a807144c1889a"}',0,'BLOCK_PARSED',NULL,'2d9cd77fccab2fd2e4612abf62ee5f612607b57e6bf11d76e6ff6a2409bda0b5'); -INSERT INTO messages VALUES(1684,310676,'insert','blocks','{"block_hash":"312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1","block_index":310676,"block_time":310676000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8be367c60fcb4239363be3c49d5f6572cb85fc48b4c0ddf7ae3db199293e2e04'); -INSERT INTO messages VALUES(1685,310676,'parse','blocks','{"block_index":310676,"ledger_hash":"69a187e7ab5ec16a9cc9fd1a987619c70aeec67b38ac78ee9c0ec9fcca14ac07","messages_hash":"dd6d9b56db66c7da78e06cca8e85ca3d54c2e7a3fc75b1b18e6675668a429559","transaction_count":0,"txlist_hash":"d8bbf9bb6af7bf95569dcf56fb8fdefca64695b5c021bb698a0c6edee9e447c2"}',0,'BLOCK_PARSED',NULL,'030ce57b74c12205a11489f83e6a787ced8658cb6c4dd4ecdbbf5ba317cdaa8e'); -INSERT INTO messages VALUES(1686,310677,'insert','blocks','{"block_hash":"4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a","block_index":310677,"block_time":310677000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'892c3de9d8187f47c7d7d3488d5eccec51f8f0494bb81a1e5fc0df5674bea0d6'); -INSERT INTO messages VALUES(1687,310677,'parse','blocks','{"block_index":310677,"ledger_hash":"b4638a8ac7c0f0adf125162897ab97e40f4a0ad293f8a28b026deef3626a5c8f","messages_hash":"fe3093eec8f0789886747ceb2ffce0e0c0b08f3e653076fc4e5388b4f501e469","transaction_count":0,"txlist_hash":"7c5bc34c11f251b3748c337391be8e8f74a0399b3923627ebf9117e9276af31c"}',0,'BLOCK_PARSED',NULL,'41acba3816baaf4dee44dee004981b291e9f44ac180024b87505d463a1b057ca'); -INSERT INTO messages VALUES(1688,310678,'insert','blocks','{"block_hash":"d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c","block_index":310678,"block_time":310678000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea45b0e03843e5cf9bb0aa595b94b2bf720158eb40a4665ef3f6275329737544'); -INSERT INTO messages VALUES(1689,310678,'parse','blocks','{"block_index":310678,"ledger_hash":"8dd6b6f83315d469df3b87d07afb074b2f0c72cd4e62b3693211d63280d25e2e","messages_hash":"6b720cb22bf2e7b8155262983938bb0c589853b845e598f3ca5fe572bf54671a","transaction_count":0,"txlist_hash":"41eb202a56ae084f3cc1457d3c17cb7eb2214a8cc385574f97a5d0913086f931"}',0,'BLOCK_PARSED',NULL,'2c7ea885aabe6be27dba396af272fac7267ce664de23bc498897b3494aaa13bf'); -INSERT INTO messages VALUES(1690,310679,'insert','blocks','{"block_hash":"be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b","block_index":310679,"block_time":310679000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'25337bb497cf3592155b5f929483f846e2dcdd6debdac02ccd44a07e199747d0'); -INSERT INTO messages VALUES(1691,310679,'parse','blocks','{"block_index":310679,"ledger_hash":"28444f40446d25ba0117dc6c65b276eab758071f664f06e7c8b7a7790f7ae7e2","messages_hash":"57dcdf6ccf9a4718f5fec3a7858e76f1f3324089ba416d10df73039a1ddf9fe4","transaction_count":0,"txlist_hash":"a27ecd72192938a3eda2a91456903b4bd0a1b277166e38937262a7c1a5fab580"}',0,'BLOCK_PARSED',NULL,'c7c20d1f74c1351a7e22d82910806d2af7fd8c3ce1f21c0029e1888731a5fb4a'); -INSERT INTO messages VALUES(1692,310680,'insert','blocks','{"block_hash":"239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8","block_index":310680,"block_time":310680000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'18830ad23c9daf30092f8475bcf8a05b1867c6456648c864a908c045c4c76822'); -INSERT INTO messages VALUES(1693,310680,'parse','blocks','{"block_index":310680,"ledger_hash":"03abd766908511876abb9514cef33bf4a6b133d7d5d872c2e6568efb383d02ec","messages_hash":"df6e1a719dc7966e07baaf047280dbca0f4197a42c41991d33b0906e22a752e5","transaction_count":0,"txlist_hash":"19abea6cb809e0ae492acf291a5dba572a871622f4c5e675557e8d2f37102e09"}',0,'BLOCK_PARSED',NULL,'40a1413dc30113ab87f37edd302a8b6bbf8b6d0ff4cab98f1fabfec6e16fa055'); -INSERT INTO messages VALUES(1694,310681,'insert','blocks','{"block_hash":"0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41","block_index":310681,"block_time":310681000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d862d0b7376d8534a950c169d2697dab69eb2f55296d838cd839bfaf5cd4351d'); -INSERT INTO messages VALUES(1695,310681,'parse','blocks','{"block_index":310681,"ledger_hash":"d2945f562378c9baf4f2572006bc807e93656dfd8743c87c97d010e664318779","messages_hash":"d501616cd190087c222d2a87eb4688069f6839d68b171c482a44b41a0df73fa4","transaction_count":0,"txlist_hash":"7f0276b2f2d61b95e407e95777aa4895e887111b0281099b9c5a44dbcd31f22e"}',0,'BLOCK_PARSED',NULL,'2e0936916c62807791b0a8f538df0997321fcf1441b584ae94e5ae72b32497a5'); -INSERT INTO messages VALUES(1696,310682,'insert','blocks','{"block_hash":"9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55","block_index":310682,"block_time":310682000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9b23978428a878c49aeaf75ccbc9adf6ec9a14d345acbb123682b062263194dc'); -INSERT INTO messages VALUES(1697,310682,'parse','blocks','{"block_index":310682,"ledger_hash":"80de0d2871ef1227030758dd8257f30ac754612734a6e56cd9e078678e3af0f1","messages_hash":"d56eece645a7a7891d0e3b3f2ef8d1cd85777c1fb7fc7795b405f5288016478a","transaction_count":0,"txlist_hash":"e9cd2133c276de01869a39f4c703d2f8236b0b1b79bcfc53a4e3d8967785be9b"}',0,'BLOCK_PARSED',NULL,'e599e5912966339a60c8e1ecf657b7d5a16946205785f9c6e9db412795038852'); -INSERT INTO messages VALUES(1698,310683,'insert','blocks','{"block_hash":"ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511","block_index":310683,"block_time":310683000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'09705f6e19b550768b275a030e74364866fc0a0a62411148781d6fe46fe74b3e'); -INSERT INTO messages VALUES(1699,310683,'parse','blocks','{"block_index":310683,"ledger_hash":"536fb911d46abe4125c8597e0a9a14d374bc83ecf17927e509cec7d3b41004e5","messages_hash":"65d2cba44ecf97dc81f8b80ff8392bac96ff42353e0fe420fb28ba5979b2c9ac","transaction_count":0,"txlist_hash":"267450473f906200e5c2c6912b2ad40150573506e7344e632d338485e3f78192"}',0,'BLOCK_PARSED',NULL,'e165a760de69f13ae56dd25b044e509e9710d3f680a7a1bbf3af81094ce26fb0'); -INSERT INTO messages VALUES(1700,310684,'insert','blocks','{"block_hash":"d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9","block_index":310684,"block_time":310684000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d43a95e6b24ee180cfe5d8330ba84010fde3a29e46198c0b3199d2b20eb37910'); -INSERT INTO messages VALUES(1701,310684,'parse','blocks','{"block_index":310684,"ledger_hash":"87bf3091c4a6839a0e63d0a45b3a5eee0d4f5ccaa84aa9a20703bf0e11ffa914","messages_hash":"8199788e0670df13796f1217e83835358253d56babc33e68a0de05ec95ab0fce","transaction_count":0,"txlist_hash":"80f0ef1728184f040fa9d640aed74db77ff126c31413c88816fc0a3b01c47eb9"}',0,'BLOCK_PARSED',NULL,'29c630c43508bef22935ec686a673abb12f3d2ad3d61a0c13fb34c419a284bb8'); -INSERT INTO messages VALUES(1702,310685,'insert','blocks','{"block_hash":"f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8","block_index":310685,"block_time":310685000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ee39beaabc4bf0e1511bab355d78c0bd3cee0e100a7c8403eaaa0e1e00aa035'); -INSERT INTO messages VALUES(1703,310685,'parse','blocks','{"block_index":310685,"ledger_hash":"ba962d58c2a54938f6c8dc1b64addbb21d13b6e462c6966362a026ddac50af52","messages_hash":"40d834e1006461806415957d6b415a1ddafd2a0972331a237f436c6a72a90e6d","transaction_count":0,"txlist_hash":"b8b940808bcd9e0a6d5d3b0dc001b185c7be5bd862d8ccd5c1860916b7d666d3"}',0,'BLOCK_PARSED',NULL,'c0dddb850af0348a34cb395a56d2cd67c19bd70a0ff4769a79bfb741581adac9'); -INSERT INTO messages VALUES(1704,310686,'insert','blocks','{"block_hash":"a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca","block_index":310686,"block_time":310686000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'71863eec3cedf0b0b81a9ceaa468cd362a01cd20a7028996c213a897eb5ea92b'); -INSERT INTO messages VALUES(1705,310686,'parse','blocks','{"block_index":310686,"ledger_hash":"ca8f687a5dc38643f240018fd6c72963792155e39ae6a7055f8cd7e3265dcb20","messages_hash":"46439879e0eeea01548fa97d7668dbe66d8afaba9fa5dcb9e0f7039bd34951a8","transaction_count":0,"txlist_hash":"8fd8812c2f3696baa9f0f5714aaeba990fb7a1711c583937002babe776964c05"}',0,'BLOCK_PARSED',NULL,'45c6b780edf7d5e9d0b130b30b75a7262a6751802afadd83fb2edad0853c0741'); -INSERT INTO messages VALUES(1706,310687,'insert','blocks','{"block_hash":"c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8","block_index":310687,"block_time":310687000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d022ee7ad4ea3db1b1c984105c4c8e08218c596c25f8a1230e3a98e63fb72fd5'); -INSERT INTO messages VALUES(1707,310687,'parse','blocks','{"block_index":310687,"ledger_hash":"1f3f3f92e37c9cf9f195b70ce9a0e9d0148fd3561f55582e9666b7e69a85673f","messages_hash":"c434fd4daa8af4fc42a9de10183d533b86bfefc1a8c24d9b96787f39d91b163a","transaction_count":0,"txlist_hash":"2215a8448764b62467df6b53cd807cc9410850d73d728a81c753eb70de99e486"}',0,'BLOCK_PARSED',NULL,'f642046fbff216a55e90b819391d3fe3a2d5b6eac11939216f52d35621514f35'); -INSERT INTO messages VALUES(1708,310688,'insert','blocks','{"block_hash":"3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822","block_index":310688,"block_time":310688000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b93099baab911b2b486f5a82396389c0d3dd6a3ca1cf66615796e9ac69285f8d'); -INSERT INTO messages VALUES(1709,310688,'parse','blocks','{"block_index":310688,"ledger_hash":"318fb29772b5e85c71e2ce29cc40c6d3fa191b58ea2ad949c26d2f5eff6441cf","messages_hash":"7aaa6e20153b0aa576bd7759167105314c75f24491d5a04d62e94f81076ea237","transaction_count":0,"txlist_hash":"9312287eb460a866f6c18b0b28dd23fff23d408a84422a87d69a561447c9ffaf"}',0,'BLOCK_PARSED',NULL,'ccce00eacb461d975a7398b32cba04e729f5c086a5bf177fd7cd29e224c21b7a'); -INSERT INTO messages VALUES(1710,310689,'insert','blocks','{"block_hash":"d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df","block_index":310689,"block_time":310689000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ad34620623cff15e43fd91c69a25cdc0a642599f6ee84dfef04136fe124cc3c7'); -INSERT INTO messages VALUES(1711,310689,'parse','blocks','{"block_index":310689,"ledger_hash":"027206a2d51a290c54ee4a2c6207fbcb3452038491704fba8b02bef065596d7c","messages_hash":"5301118c9aa8696231d78808a1d9c8127c5f096cb5e0bd4f3a72d400d5db99d0","transaction_count":0,"txlist_hash":"a7c5b3bc4269d9a63804bdc4e2693fd03e4e529b183510685df746092e94aa5d"}',0,'BLOCK_PARSED',NULL,'3d6633e1a6ca9edb93a87fa04fda932060795511f0f9efec78656b887ebf9811'); -INSERT INTO messages VALUES(1712,310690,'insert','blocks','{"block_hash":"0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462","block_index":310690,"block_time":310690000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'952c4820ddb847f66efefb2b7e8378756144adf4f850aaccd47685d8cbebff3d'); -INSERT INTO messages VALUES(1713,310690,'parse','blocks','{"block_index":310690,"ledger_hash":"0e6ce3eb82baa1aacc53cf8c19e9ba4d11c0d5297d70a1c5bce188e515936ba2","messages_hash":"6b93c3afd6d1b2f3fede8962b6083ed99ee8f731058a5e60b7a43b2594ff65dd","transaction_count":0,"txlist_hash":"6310ce87234c11efea223c58d571cdbb3f04b51a3056236cd0f22cec7bf1e5c1"}',0,'BLOCK_PARSED',NULL,'e73f258dfd6c1e5d9f0860ce715651a8dc032a17e9317225fdcfe466b1df8618'); -INSERT INTO messages VALUES(1714,310691,'insert','blocks','{"block_hash":"07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e","block_index":310691,"block_time":310691000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'57dce2dd100cc6ffb8f65a3e0cc08fa10a1cff810c200ea0d523f1df3008cb09'); -INSERT INTO messages VALUES(1715,310691,'parse','blocks','{"block_index":310691,"ledger_hash":"86d4a3256d111bbb118869227cc3a609a45d7bb8f207e7426420d38d57a96a82","messages_hash":"1ef6bb05942d114320f97145e138b48f8049648fdb7a498ed1190d7e480d9fef","transaction_count":0,"txlist_hash":"774242c764edd3560409137905de9c9d818364aa94f62c47a621afe1087136ac"}',0,'BLOCK_PARSED',NULL,'c456b9da2c65193d24851341b924ee7b4cc358eec22f21fc438ece01c4456525'); -INSERT INTO messages VALUES(1716,310692,'insert','blocks','{"block_hash":"29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932","block_index":310692,"block_time":310692000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c26ee1af8df0d08c278f0d7a687ccc2ed9b2f92ab53752b1c1ac9dfe745e811f'); -INSERT INTO messages VALUES(1717,310692,'parse','blocks','{"block_index":310692,"ledger_hash":"f9c6d31ef1c89ecbe584020acb89d16e343a06db820beb8b3471037bd7bb5a1f","messages_hash":"a13952e453dd31b30c330a9e67aabdb61cc7b9eb28da51007e3a520da1117fca","transaction_count":0,"txlist_hash":"df166db54b869212308c6a48d3ddb80bc0a84be52434c46d5e6e2d6499167bb0"}',0,'BLOCK_PARSED',NULL,'7f1a9221eefe4928271d199948aa71bbadf174f9949158ca50ee3848e03867f9'); -INSERT INTO messages VALUES(1718,310693,'insert','blocks','{"block_hash":"c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1","block_index":310693,"block_time":310693000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'60941910ca111101c043ba1736c82065390f21e80bbb58d6d463bd61f1535895'); -INSERT INTO messages VALUES(1719,310693,'parse','blocks','{"block_index":310693,"ledger_hash":"f3d27993aa304802c36f3deddef3baf81edb04bdf507a2a5e6e739443ea775b5","messages_hash":"95061c25cc54a351a7a22cd4ff4ae7173864bccd1b6ea7d8ead540b8b0587781","transaction_count":0,"txlist_hash":"992af64c887f105b985137b441ef4a3af3ff902f5dbac355b91bf0ebaa234063"}',0,'BLOCK_PARSED',NULL,'05d458c30899df2bfd82ba7da448032e8dd48f3beeb810571bed267fc8c2a83e'); -INSERT INTO messages VALUES(1720,310694,'insert','blocks','{"block_hash":"586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0","block_index":310694,"block_time":310694000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b48dc9862cc2f49eb620a3d38b95179c819c7ac298dfadb12d96342d43abc04e'); -INSERT INTO messages VALUES(1721,310694,'parse','blocks','{"block_index":310694,"ledger_hash":"2571bbddd1991d25250bcd1789cd861bda55aeff5e70c90fd854bf7850b478e8","messages_hash":"4fd7a64e2d1cfea79d942ac7b358740a3c066cd72c8ec30133cf420f51053212","transaction_count":0,"txlist_hash":"52939845593123714b4bd665600642d14b61a384befa3498c7582806448150a1"}',0,'BLOCK_PARSED',NULL,'edd37086c06560ed1160f13a6afbad5a3bdc17e175ca581eb19951f37febf879'); -INSERT INTO messages VALUES(1722,310695,'insert','blocks','{"block_hash":"a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538","block_index":310695,"block_time":310695000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f0556440fd50b512e4b7baaf41c1f87453ac7b17692151904121e7575f186b7b'); -INSERT INTO messages VALUES(1723,310695,'parse','blocks','{"block_index":310695,"ledger_hash":"e6a29a3329dac5849c6019688653cb9179792254ea263d908ee1840812eae1e1","messages_hash":"b0a954ecb6f6b298444e634e0e35c8dc8e642d4cc766e403d18e013081e38552","transaction_count":0,"txlist_hash":"9b08253a46b87ab3df60af60b519dd0c689c0acaca38bcc33f01000bf6b871d3"}',0,'BLOCK_PARSED',NULL,'06946ea0dec7e61331b9b956e9a850a71f6ea328c59f94c36381515e0249506d'); -INSERT INTO messages VALUES(1724,310696,'insert','blocks','{"block_hash":"7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7","block_index":310696,"block_time":310696000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'57d5d0d4fa5c77f1ccd09274b064cb5856ac00295e5159e8c2c05d4595e8e333'); -INSERT INTO messages VALUES(1725,310696,'parse','blocks','{"block_index":310696,"ledger_hash":"122e4a4d499019a24ee9fcb024541d3ad30e06cda616f82b21a5e18bcaf58728","messages_hash":"c65d6968b5674d0faa3ba0ced721c7bb0e452d06db2cd4cc0c87056b42cd81ce","transaction_count":0,"txlist_hash":"deb12f7c45ab5944a6e08fb2933d3a435860f9e1d8a758486b5e5995258ca973"}',0,'BLOCK_PARSED',NULL,'7b5ad02460ba5827030413f0c0d2da1faab3c132f118322645c1b28cc0baa5c6'); -INSERT INTO messages VALUES(1726,310697,'insert','blocks','{"block_hash":"4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304","block_index":310697,"block_time":310697000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dd1690f3c00387f223b61643e5c3f6462d9e27c67805993a5551b49692a6e5cc'); -INSERT INTO messages VALUES(1727,310697,'parse','blocks','{"block_index":310697,"ledger_hash":"ef8ebcfad12ea2bdff5760d7a28fd6e0c9ff1f80c5db666df99daf73bb758584","messages_hash":"1f8c4bf719ff7da97a2ae86354d1d9453f98f772b3302afaf87143d198d2c480","transaction_count":0,"txlist_hash":"663e67da5996a4c9877a6c6cb61730798695aee9d89674823917dee2d1ab9708"}',0,'BLOCK_PARSED',NULL,'8884545ad1fdc4f8ad4cf56659a2a14f6a6a1421ec9a242fb08f872d31da86ba'); -INSERT INTO messages VALUES(1728,310698,'insert','blocks','{"block_hash":"ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53","block_index":310698,"block_time":310698000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d9fc1a58db2a6192f3777621b7c36ca1594498c329888b1d447b3adf9fca6c3d'); -INSERT INTO messages VALUES(1729,310698,'parse','blocks','{"block_index":310698,"ledger_hash":"7a3e7800ae592d461c8d4a90597d65257e14082534f0052e862ea6665151fa65","messages_hash":"124decc91575b2b3b4e5c82252f5bad4c3fbad53d82e2cb387ebdf516582ca73","transaction_count":0,"txlist_hash":"9b6c282c7fb96cbca27fe6b73253cfc31b93ff71dc0d116ebd0d661c33adde58"}',0,'BLOCK_PARSED',NULL,'75aad94ecbd1774c28bd239440496ee75a3bf154563d4b15378ee234e5d0b81c'); -INSERT INTO messages VALUES(1730,310699,'insert','blocks','{"block_hash":"3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d","block_index":310699,"block_time":310699000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da5d21b26031e07555f018ee12f55a00bc0ff7912c814888fa02a1a6cfe0474d'); -INSERT INTO messages VALUES(1731,310699,'parse','blocks','{"block_index":310699,"ledger_hash":"d3ea9e3e4912d71dde006b1f1b2d412d213bee18c8c7606982a08f405c932a12","messages_hash":"b84e80bcae7f2d7d19a8a6deee33b8836bd6bd62b53f9a8d38995bf458c39b06","transaction_count":0,"txlist_hash":"d91fc03fd15e2ca4fc59b7be29586b0c8f2942abca45ccb49f2fc84e3eff8f94"}',0,'BLOCK_PARSED',NULL,'1ef107b44a96b4da09a1bd0c746b05abcd3095919a3adf950797c05145fd101d'); -INSERT INTO messages VALUES(1732,310700,'insert','blocks','{"block_hash":"4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5","block_index":310700,"block_time":310700000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'885a5c06e961cdffb2f6659e43745d166410d2c64262c8b42664b349895fa798'); -INSERT INTO messages VALUES(1733,310700,'parse','blocks','{"block_index":310700,"ledger_hash":"9cac238e8006f150dbd1f09f1743cb50e1870775d67a256ae5c06e0b72fd0b6e","messages_hash":"ab881a7cc3381dbeb809e622050540b87c404a8a723334e4d6b46482d54f325c","transaction_count":0,"txlist_hash":"1977d48057c66abe87f0bdffbcf4d501bd4b9fe138c0bc381409bc44bd503084"}',0,'BLOCK_PARSED',NULL,'e25e6807e3c88cc62a293d3d30bef6a8041d6b6a316699194f78f74fee7f444d'); -INSERT INTO messages VALUES(1734,310701,'insert','blocks','{"block_hash":"9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1","block_index":310701,"block_time":310701000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'be84acb0cfa8f7483b39a50efb780ae9b71f6bef9db97f988a1b1ee92e48182a'); -INSERT INTO messages VALUES(1735,310701,'parse','blocks','{"block_index":310701,"ledger_hash":"562a0f298a796b936c21bf552e6945ed2263b62d4022f7a072dc6a4790173e8d","messages_hash":"965d20b7bbd4c014879731b7ab95f5b38335d80f74c8dc8ccc49e9222144d2c4","transaction_count":0,"txlist_hash":"6b6c62d0facf03efea19bf2e8fa69ecd3c433d45a0ca6b3ed57ed0e5d69b1e2f"}',0,'BLOCK_PARSED',NULL,'cb8bd18c467af6adfee4311dd38aa69469fb5a7a8be88c5a34469dfb79f99752'); -INSERT INTO messages VALUES(1736,310702,'insert','blocks','{"block_hash":"69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8","block_index":310702,"block_time":310702000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'892c3ae138200dfcaf7735bf1ecb087fb3ec5c01c2df6d050470ae89261001c6'); -INSERT INTO messages VALUES(1737,310702,'parse','blocks','{"block_index":310702,"ledger_hash":"7cb406b1ee19e1ecfc41009f312d918ac0574b92809d99dbfd99bac88992a4fe","messages_hash":"2a4a14311bfbe235c7a867c69eeadf9d336667ec2abd8ecd3e9468897b0064c9","transaction_count":0,"txlist_hash":"0b912b59131e6aef7fb3313ef75bc138dc1f612d76e77cf583074564ddb6d35c"}',0,'BLOCK_PARSED',NULL,'65853c91b7f0484a7fce79c8b397ce69137670a7d734e1d85d43af1e6821c2c1'); -INSERT INTO messages VALUES(1738,310703,'insert','blocks','{"block_hash":"b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218","block_index":310703,"block_time":310703000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'73b8b643c738bc1d058359e7ca66e1854193ce6d7d467cc6429f95757896ab9f'); -INSERT INTO messages VALUES(1739,310703,'parse','blocks','{"block_index":310703,"ledger_hash":"cbc22749655ce8e7fb2eeb4d1737a04dec7bc096ce84b00bf83ca4c7040f448a","messages_hash":"704f5a0685b1309b5ba2a9082d9706ae7b9fe4e7b735a008b3c450eeeb2a4460","transaction_count":0,"txlist_hash":"b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786"}',0,'BLOCK_PARSED',NULL,'72f12f8d9225bfe88c43e2561d6e34ff4bb061174f0b025fd2e8f37e204dbf2c'); +INSERT INTO messages VALUES(1300,310506,'insert','issuances','{"asset":"A160361285792733729","asset_events":"fairmint","asset_longname":"","block_index":310506,"call_date":0,"call_price":0.0,"callable":false,"description":"softcap description","description_locked":false,"divisible":true,"fair_minting":true,"fee_paid":0,"issuer":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","locked":false,"msg_index":0,"quantity":20,"reset":false,"source":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","status":"valid","transfer":false,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'ASSET_ISSUANCE','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','4c0057166c0cdb16290d48e49aeeaecb396dc60627c3dd13b775fa32c656fef1'); +INSERT INTO messages VALUES(1301,310506,'parse','transactions','{"supported":true,"tx_hash":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","tx_index":507}',0,'TRANSACTION_PARSED','ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18','24c8a0377a22a9c3ac9deb882492dfcecc7272d2c85fca450386c19861bd28d4'); +INSERT INTO messages VALUES(1302,310506,'parse','blocks','{"block_index":310506,"ledger_hash":"a6482917514b9d828a9981f8f83df92259e751a703f9ae164ef47ff170a19d47","messages_hash":"28e6332ddf3e6b0d879fa141af8cd252b31ee05a93ccb5688ce6ee2d690fd132","transaction_count":1,"txlist_hash":"a6cab6e8bebae804eb791b48d0a484f6526553e3cce266b54b40afb32a02c68e"}',0,'BLOCK_PARSED',NULL,'2b872d5ba7b68b9f6e6681969ec5bea45c77c419952f5acbc32550b42f578c0c'); +INSERT INTO messages VALUES(1303,310507,'insert','blocks','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f7aa4ad6a30158b00a107ef75d3f4f76124e6489995c14b9ce1517fa55370a1a'); +INSERT INTO messages VALUES(1304,310507,'insert','transactions','{"block_hash":"015b45f96ad6b4bfc950934e9c9d8c29a499b837ea7c4c722ff482d8d9896a93","block_index":310507,"block_time":310507000,"btc_amount":0,"data":"646d6e367133645332456e44557833626d795763364434737a4a4e5647746152377a637c346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383a317c5843507c313030","destination":"","fee":10850,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508,"utxos_info":"c7f048b97f07912138691b7d133baafe98a6a10ffb089e0b773f06ef945d5c36:0"}',0,'NEW_TRANSACTION',NULL,'5fe355dbe799ec8db520c97841a29075d0f611d03a8c1194ba28ca1fc1b3c0f8'); +INSERT INTO messages VALUES(1305,310507,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","quantity":10,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','4c9c59be5128e3f4924d4576485ccbff9bb8e725df4d5c5099519c04d1ed71ca'); +INSERT INTO messages VALUES(1306,310507,'insert','destructions','{"asset":"XCP","block_index":310507,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508}',0,'ASSET_DESTRUCTION','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','6513212f3c6f39e30f9a146dc496586a117f53fda9551d1c1c369d45c538cecc'); +INSERT INTO messages VALUES(1307,310507,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310507,"event":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","quantity":100,"tx_index":508,"utxo":null,"utxo_address":null}',0,'DEBIT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','f2e8715bf8c4cc2b2cc62bc042e95ba2e24d6282afd2928802572fec4621f7d7'); +INSERT INTO messages VALUES(1308,310507,'insert','credits','{"address":null,"asset":"XCP","block_index":310507,"calling_function":"attach to utxo","event":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","quantity":100,"tx_index":508,"utxo":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','eaf1d0a762c50322172871ce30579d08a76b3b0269ac903031270af744c26283'); +INSERT INTO messages VALUES(1309,310507,'insert','transaction_count','{"block_index":310507,"count":1,"transaction_id":100}',0,'INCREMENT_TRANSACTION_COUNT','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','2601c615484c624fddb00df8f33f78745710a5cc2d5ae962d08461445ac815c3'); +INSERT INTO messages VALUES(1310,310507,'insert','sends','{"asset":"XCP","block_index":310507,"destination":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","fee_paid":10,"msg_index":0,"quantity":100,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508}',0,'ATTACH_TO_UTXO','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','df9fcee2826e03af7192f4c6ee6de1b1706705c8068e1d4aea2ada95da5a82b2'); +INSERT INTO messages VALUES(1311,310507,'parse','transactions','{"supported":true,"tx_hash":"9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883","tx_index":508}',0,'TRANSACTION_PARSED','9d2243c84df0132061884dfce73f3b7c5262a1cde0d029de472a079f3a1c4883','3a7568756c9765dd1c6c36e9a29fd251df74b3db8246aadfc5b482ad822cff50'); +INSERT INTO messages VALUES(1312,310507,'parse','blocks','{"block_index":310507,"ledger_hash":"46023f1d6accb7aadfeafe56c17609f1d76aa2d6a1dbf123f4b0ff1c095d568d","messages_hash":"f39597e3a242178f633794a4a817394e0cbbacd7e971ef56c7590284ff052454","transaction_count":1,"txlist_hash":"6abb9b0caedb98bc7ad209096e5baba6418d80fb11ab51a8124d2e87e9a591e0"}',0,'BLOCK_PARSED',NULL,'a2b6385b04cf39977dd789726f93996f2cc7792f0a8c7bd9b86ec56a45717717'); +INSERT INTO messages VALUES(1313,310508,'insert','blocks','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2bcd5d65956b137fcd9c188b67034e44e09d49fbe34e785a23e0c307efa2026e'); +INSERT INTO messages VALUES(1314,310508,'insert','transactions','{"block_hash":"40cfaee344032c167d7317bb94d2e514f8dca023302303a908dd994e15d902cf","block_index":310508,"block_time":310508000,"btc_amount":0,"data":"646d6e367133645332456e44557833626d795763364434737a4a4e5647746152377a637c346630343333626138343130333865326531363332383434353933306464376263613335333039623134623064613434353163386639346336333133363862383a317c444956495349424c457c31","destination":"","fee":10850,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","supported":true,"tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509,"utxos_info":"1c6f52a3ca4d5f1698d2db3f107da787153bf686fc049f2792074916249fc27d:0"}',0,'NEW_TRANSACTION',NULL,'164c7df55299533aeeb396a7dcd6aebf1126a3b1dadf9995f9ad0644bf76d778'); +INSERT INTO messages VALUES(1315,310508,'insert','debits','{"action":"attach to utxo fee","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"XCP","block_index":310508,"event":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","quantity":10,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','4855b3e0c820fb13abaec2dea1866fb2012165f33d784ada485328ba94211e64'); +INSERT INTO messages VALUES(1316,310508,'insert','destructions','{"asset":"XCP","block_index":310508,"quantity":10,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tag":"attach to utxo fee","tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509}',0,'ASSET_DESTRUCTION','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','d214f11427dc6cebe849df235acaea007ea86a1a3b070b8c3fafa1043a24b5d4'); +INSERT INTO messages VALUES(1317,310508,'insert','debits','{"action":"attach to utxo","address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","asset":"DIVISIBLE","block_index":310508,"event":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","quantity":1,"tx_index":509,"utxo":null,"utxo_address":null}',0,'DEBIT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','58b4e25d6870d957925452376f02d78da275b68ac72577540eb63f3c8c55df13'); +INSERT INTO messages VALUES(1318,310508,'insert','credits','{"address":null,"asset":"DIVISIBLE","block_index":310508,"calling_function":"attach to utxo","event":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","quantity":1,"tx_index":509,"utxo":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","utxo_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc"}',0,'CREDIT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','c5de6f4bbd1ef3e48d076ed72808968ade8fa609aeb0a47f412b0ab581b89ab2'); +INSERT INTO messages VALUES(1319,310508,'insert','transaction_count','{"block_index":310508,"count":2,"transaction_id":100}',0,'INCREMENT_TRANSACTION_COUNT','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','fee54e2c82f5c1d99c78ffb436e80c6067ae33d485718940d47c720d5f821d61'); +INSERT INTO messages VALUES(1320,310508,'insert','sends','{"asset":"DIVISIBLE","block_index":310508,"destination":"4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1","fee_paid":10,"msg_index":0,"quantity":1,"source":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","status":"valid","tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509}',0,'ATTACH_TO_UTXO','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','003b318ad6f3fb817b98be5c2c1c25dcee4bb0e1fdcb13dede9ba654a37141e3'); +INSERT INTO messages VALUES(1321,310508,'parse','transactions','{"supported":true,"tx_hash":"ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e","tx_index":509}',0,'TRANSACTION_PARSED','ff23dc6911d401e9868b8ac747d31febc2078f004eff7b56a8895c107ed8a73e','5645ad674eabbf0f478524c856fed40616ff6f906e14522b75a1194a89a9e284'); +INSERT INTO messages VALUES(1322,310508,'parse','blocks','{"block_index":310508,"ledger_hash":"42e33693a0b51c869b4d34656ee1c86b3114f0e4f600d577ed2adfe0cefbdc61","messages_hash":"3a5e4f099980b4f437879454741f4fec540c39d3636916607d05db25c4b3f163","transaction_count":1,"txlist_hash":"55c18d8da0b5d415d82b40229995123dcf2151b91a8cf6c4e29e8a03c32a847d"}',0,'BLOCK_PARSED',NULL,'e7ccac37e572914bae84b772d9f1316423def15c058342ecbe8d4edf7cb1e612'); +INSERT INTO messages VALUES(1323,310509,'insert','blocks','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d93604ed0bd0f7710efb4f172ed7b28bd6c6add36597ac87b4709ddcdcae562a'); +INSERT INTO messages VALUES(1324,310509,'insert','transactions','{"block_hash":"4f1c6484120b93634712add03ac12eda4d241ec5132c3108c49c92fb46e8faee","block_index":310509,"block_time":310509000,"btc_amount":0,"data":"0000001400000023ded9aaeb00000000000003e80000000000000000000015546573742064697370656e73657273206173736574","destination":"","fee":6800,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510,"utxos_info":"5b13a8589b5a02abddc9156a2efc53713161a23bc1d149f909dcc079ea9c3af5:0"}',0,'NEW_TRANSACTION',NULL,'31bbedddfb6bf6dc22cd7bc5b6b1586770b6d4bda24b9de4f0aa5c59abdd6a73'); +INSERT INTO messages VALUES(1325,310509,'insert','debits','{"action":"issuance fee","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"XCP","block_index":310509,"event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":50000000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'DEBIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','ff4e04a1d9bbd84efca3252f89a31a1ef4b3072400139ef5540194e4052530d6'); +INSERT INTO messages VALUES(1326,310509,'insert','assets','{"asset_id":"154062662379","asset_longname":null,"asset_name":"TESTDISP","block_index":310509}',0,'ASSET_CREATION','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','595339925744a1e36f2a1e762ccce73fca459a39183ccf73d2e3d5b54b5a720f'); +INSERT INTO messages VALUES(1327,310509,'insert','issuances','{"asset":"TESTDISP","asset_events":"creation","asset_longname":null,"block_index":310509,"call_date":0,"call_price":0.0,"callable":false,"description":"Test dispensers asset","description_locked":false,"divisible":false,"fee_paid":50000000,"issuer":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","locked":false,"quantity":1000,"reset":false,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":"valid","transfer":false,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'ASSET_ISSUANCE','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','a699663ff764af1f83b737bf5ad9caf891fb20b4b78cc075c34021e06e599711'); +INSERT INTO messages VALUES(1328,310509,'insert','credits','{"address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310509,"calling_function":"issuance","event":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","quantity":1000,"tx_index":510,"utxo":null,"utxo_address":null}',0,'CREDIT','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','97f2ea0b721a66bd252db6223a1508035cafeb2387389f9c59cfc84d7a7ed59f'); +INSERT INTO messages VALUES(1329,310509,'parse','transactions','{"supported":true,"tx_hash":"01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1","tx_index":510}',0,'TRANSACTION_PARSED','01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1','e8a3b2ef33d5862a923bfc27c5c6c754469b5ad49a3ca7514111a2eb524c5f61'); +INSERT INTO messages VALUES(1330,310509,'parse','blocks','{"block_index":310509,"ledger_hash":"235d0dc029e4caf127d479107e93a3f46e87aa5827f0f2c0b020d56fe9ece29a","messages_hash":"679dc0bf8b5e96898069b27791cab667ca6bbf5cf070bdff7ef61902c3deb5e8","transaction_count":1,"txlist_hash":"e8a5ca9c861bda1033047cfb0896cc92d694d0d32343e54b78d861ad5daada14"}',0,'BLOCK_PARSED',NULL,'bc296161dbe1f64834a4fc15dfeb29f34f50a1619fc9cd9078432ad0b02d442e'); +INSERT INTO messages VALUES(1331,310510,'insert','blocks','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ff6bff671f11cfa1e9d08270dae356829bdf3b4a7b5a7490fc40e0dd908253b4'); +INSERT INTO messages VALUES(1332,310510,'insert','transactions','{"block_hash":"b2d5e400178d7b2ea52884e3a090fe11874c83d63c342218161a6e666f084fb2","block_index":310510,"block_time":310510000,"btc_amount":0,"data":"0000000c00000023ded9aaeb00000000000000640000000000000064000000000000006400","destination":"","fee":6150,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511,"utxos_info":"b44885994dea259ac03a7c7b46076e05cd217a9f465d8f7c7be9cc831ba47291:1"}',0,'NEW_TRANSACTION',NULL,'a5951b94da45d2ab5954de6363315469a6d262a5670eed7f61b461908931270b'); +INSERT INTO messages VALUES(1333,310510,'insert','debits','{"action":"open dispenser","address":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","asset":"TESTDISP","block_index":310510,"event":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","quantity":100,"tx_index":511,"utxo":null,"utxo_address":null}',0,'DEBIT','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','4f1c26ea4adfc7a5d036065e24a911d06ba95de8d9d83945b1e316c415ad72f6'); +INSERT INTO messages VALUES(1334,310510,'insert','dispensers','{"asset":"TESTDISP","block_index":310510,"dispense_count":0,"escrow_quantity":100,"give_quantity":100,"give_remaining":100,"oracle_address":null,"origin":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","satoshirate":100,"source":"munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b","status":0,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'OPEN_DISPENSER','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','1455e883f0f5b991877872fba68ce5dd0848c912c67d3bae072fd39bf7290757'); +INSERT INTO messages VALUES(1335,310510,'parse','transactions','{"supported":true,"tx_hash":"af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e","tx_index":511}',0,'TRANSACTION_PARSED','af67f6762d4b00b4bf5fb93a9d556e007a147aa80fbf6a84410df05a0182da9e','c9758d99b74e9a498d4be51effdf643a800fcb6c79b18b1fae731ce6c222d0e8'); +INSERT INTO messages VALUES(1336,310510,'parse','blocks','{"block_index":310510,"ledger_hash":"c7f578c09530663c28499e2ee2095e887e79ae469c2296cfb95f0c1dc3920a34","messages_hash":"4210e9160abcdb0b1590a7c151d2086c045e16ef4d28e1daf82736b4bfbcd134","transaction_count":1,"txlist_hash":"58e8efe3ac6c19011d997f77a3f38bfd99ccf17ff15615ceeaa8fd1d02f2b73b"}',0,'BLOCK_PARSED',NULL,'1bc4b92c40616d724de6cf9f544acfdf37c5cc1884cce09c448c3c69725a9844'); +INSERT INTO messages VALUES(1337,310511,'insert','blocks','{"block_hash":"e4f2c553f71be9029a42ba9e1be584123528b3ab83bbaeaed06bdd780c67ca9c","block_index":310511,"block_time":310511000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e625d315bac56f9d85844bcb9b5999ed081fadb5ce6c3ca5de17b3acf3942f3f'); +INSERT INTO messages VALUES(1338,310511,'parse','blocks','{"block_index":310511,"ledger_hash":"6239525a9f6bbc01b5cbe0c5bbec47d77c179c1e03eb07f079902f4be6763124","messages_hash":"c81f12b1a5156c3ac9c4bebf828e3f99b21e05437e107ed7ced5ffac7ae55ec7","transaction_count":0,"txlist_hash":"cb29377641d10173aed43643d32f6935da6948a7fdc854f4c5f7f3bf8d6f9721"}',0,'BLOCK_PARSED',NULL,'1529197882c6cee43d99310f3897b7495d8fb557ee8f9d6b31e401b7e27a1670'); +INSERT INTO messages VALUES(1339,310512,'insert','blocks','{"block_hash":"8837f8d9e91c25e657417fd96f59b61e76da0b0b84106053fca4d96a6e67b0d5","block_index":310512,"block_time":310512000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ddaf3adb7368bfbd0842c7ec3d1ffbc536c9dfcaf28b92047b9e13cd26cdea55'); +INSERT INTO messages VALUES(1340,310512,'parse','blocks','{"block_index":310512,"ledger_hash":"d35febbe0916a862b9ee2c4f251bfd1bfda7c6a646d73baa7cc49c07a6c516c5","messages_hash":"a4130c3b9190ae20f97e4f0fb1b0192e034e16702339a28dfcec4c8d1723679b","transaction_count":0,"txlist_hash":"4f745e593c05074836d20561b50b884ffd4e1c17eb9666ace1c2eea5f51e7d50"}',0,'BLOCK_PARSED',NULL,'20e53542d8726035fe98a906c6d5a1c005c72f762bf31bdbdaea16dd949c6522'); +INSERT INTO messages VALUES(1341,310513,'insert','blocks','{"block_hash":"ba74e3ceba2dc7a61efa53670a372d35c261a059af91ebfc999e653c904dfd66","block_index":310513,"block_time":310513000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f4f9757ee1e943f3c5b577d47819a4f0e5c95137b2cac3c64ddc0cc6aca718e3'); +INSERT INTO messages VALUES(1342,310513,'update','order_matches','{"id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","status":"expired"}',0,'ORDER_MATCH_UPDATE',NULL,'5bd380cacbf0b9e38db7dcaad2ac14261d8491a7c7da7d259ddee5654b461367'); +INSERT INTO messages VALUES(1343,310513,'update','orders','{"fee_required_remaining":900000,"get_remaining":800000,"give_remaining":100000000,"status":"open","tx_hash":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498"}',0,'ORDER_UPDATE',NULL,'68bb7f9c4d20724eff4e75f74f41b77e599c68694f5c62ed4d70a68af9d4d93f'); +INSERT INTO messages VALUES(1344,310513,'update','orders','{"fee_required_remaining":0,"get_remaining":100000000,"give_remaining":800000,"status":"open","tx_hash":"1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81"}',0,'ORDER_UPDATE',NULL,'6f354be6ea3f752fada2ce0cfa036374193b72daaba137dbb67cd1e9d4576aa7'); +INSERT INTO messages VALUES(1345,310513,'insert','order_match_expirations','{"block_index":310513,"order_match_id":"74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498_1b294dd8592e76899b1c106782e4c96e63114abd8e3fa09ab6d2d52496b5bf81","tx0_address":"mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc","tx1_address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns"}',0,'ORDER_MATCH_EXPIRATION',NULL,'415b7fe80da5ccae4b8aac18c88d46e358f22cb3aabf6ba0576389d2aa66a807'); +INSERT INTO messages VALUES(1346,310513,'parse','blocks','{"block_index":310513,"ledger_hash":"cd8114c0a364dd048cdee17ca46eae739f0cb6c627a6643c471700aa346d8acd","messages_hash":"09dc56829f629a2a085e9268064ce0c72680e16c28a3eeedeb2bc2d4612bf89f","transaction_count":0,"txlist_hash":"e82379e2bd481f39e310670c046d855855c476a4bd0dab621ea06ccd2ac136fa"}',0,'BLOCK_PARSED',NULL,'5e3c5ed9e4e7611d097d478d3ac3cb5f3fdf01464a556e6f0c57b762054e8cc4'); +INSERT INTO messages VALUES(1347,310514,'insert','blocks','{"block_hash":"39989817fb26625baf150596d15c164f34a6c34ae7b6ab92539b92052f08a0f7","block_index":310514,"block_time":310514000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'66a436e0f332a8e7412a12af1468faae8a11022eaf9b048344f4474164557dc2'); +INSERT INTO messages VALUES(1348,310514,'parse','blocks','{"block_index":310514,"ledger_hash":"365c48b6ff26da8d5bd9b4437c7aa70821c71d6e7b928010557bef02599084cc","messages_hash":"73bc3d0a3b58d7ce8895a184c23cf15ab6d81851378349e93e4ce1b55cbccb5a","transaction_count":0,"txlist_hash":"c99f21e4275501cdcadb134b8a409da50024832c8ca849deda3161d8b026f1a1"}',0,'BLOCK_PARSED',NULL,'c56359a4b4396cf50ff124d6017fc0a2c18837d89adc096ee52dd8bf5ab11e47'); +INSERT INTO messages VALUES(1349,310515,'insert','blocks','{"block_hash":"57e45ce8b85a3875a55e3477aaae26e56f6bce01c1e422f62acb27850effb4b8","block_index":310515,"block_time":310515000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4001dd0628287bd209a1a258a278ec517f3baefc9d13f60bdb81534c85f3ef4e'); +INSERT INTO messages VALUES(1350,310515,'parse','blocks','{"block_index":310515,"ledger_hash":"8634b0d6d0bca6baff864b0f840df2b07edab19310ad30f09c377d49c4cf31e7","messages_hash":"8e74dd022fbea59b7cd8f19e411d6111f50e5c8210d1bf2d7c5454c9f0d39e3d","transaction_count":0,"txlist_hash":"ee33ce8f40db45f132b15d60daa3935ee8da4593c31f65ea269687594a2c5051"}',0,'BLOCK_PARSED',NULL,'c7669bbdf72cb23fab8b2e54969c4974ac8793b06a35a6baef64794c0b77bc4f'); +INSERT INTO messages VALUES(1351,310516,'insert','blocks','{"block_hash":"ce9bd7438cb256b1e6f8f5061f88804da65cd6d6a7395260d5e75980c30f18d7","block_index":310516,"block_time":310516000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'947461d1a1098e144ce284860ade500a346032901cfcb061a70b55fdc69a6c85'); +INSERT INTO messages VALUES(1352,310516,'parse','blocks','{"block_index":310516,"ledger_hash":"51192dd22fcd1d3e93abb964beebcde830dc1c6f6090f765455367df8c3d3236","messages_hash":"6efa1bb98927a933710b1723a8614d581c29aae3e49c1642efa3ddf66e772f51","transaction_count":0,"txlist_hash":"a461fb607e3e3480b92d679204388b0aa2d2785cf5860e3539be8b41e1702341"}',0,'BLOCK_PARSED',NULL,'171afa1146909cf9518f7d43052a51ae59534afbf3d732c06ebdc219540b4601'); +INSERT INTO messages VALUES(1353,310517,'insert','blocks','{"block_hash":"defccc64a058371ab87b654375e507958ea807694cc8295abd066dc2e4ad1407","block_index":310517,"block_time":310517000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fa3b754d9d44124c4ad6ccbcfb89b65644cb9d63a7570de4548c245d3109eeed'); +INSERT INTO messages VALUES(1354,310517,'parse','blocks','{"block_index":310517,"ledger_hash":"1143898cf831bd8371c3c892d8c8d7606199849ff7a9a1f031f9232d7c411ad4","messages_hash":"0a11cb375044ea73668a1e0c52be2963d368356b31ae5fc99005f17f54075689","transaction_count":0,"txlist_hash":"9bacdf0026c8297570a7d50e6c372bd5a04ed7f748f820b33e7e93340ecb69fd"}',0,'BLOCK_PARSED',NULL,'b7d33b7ffea5b23e8dcf599baadc840c39fb706162c62223728189037327ed06'); +INSERT INTO messages VALUES(1355,310518,'insert','blocks','{"block_hash":"41ef60bfa96648c7db99a621c4acde6b6d1fd91bc21471a0d2f33e2e995e96f5","block_index":310518,"block_time":310518000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'386e7fd3b4bd4582dbafaea6cce970da8f83ccd8acdf5958d3383c38945fae17'); +INSERT INTO messages VALUES(1356,310518,'parse','blocks','{"block_index":310518,"ledger_hash":"dd1f5326fc49b284dacb6d6738599a6b4592e5250c5bbde45b88482a13f74373","messages_hash":"e5b8f337585825b72253026901d1a2ecf732d23c11d236bbc98a5bbfdc7727ad","transaction_count":0,"txlist_hash":"66af0cdab6c52ca6b8ce731143739553d62e1986de0478e346dbc42e570f1503"}',0,'BLOCK_PARSED',NULL,'98eacd907de1f462ec2294bcb5e8c8cf9a3aa7b3cae7fe53e98d4ae6e57d4d41'); +INSERT INTO messages VALUES(1357,310519,'insert','blocks','{"block_hash":"9a9423964e187ac27e57d13611a8c6f9fa409ca79df72d3e7edc0d646099f61a","block_index":310519,"block_time":310519000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'39b02b81b1831217317c6c83ba2707fb2dda0dca0b76d5ced5d9f4ee3a822b72'); +INSERT INTO messages VALUES(1358,310519,'parse','blocks','{"block_index":310519,"ledger_hash":"19f3569d9b1512c42118014c8f6fd1562e61336d7707a0838a35d0e8513f5b5d","messages_hash":"7c8c064400f1fa49c5ecd3f21071a71ba69ed09bf4a616b5a86a8e3ccfb54237","transaction_count":0,"txlist_hash":"67662c882b46c7a5ac62a01e7ca43e1290e1fee20a68ebbd1011b93b9f8d00d8"}',0,'BLOCK_PARSED',NULL,'197fd9b45a0f86aafe80fec3e27fad316f69227fc42f5ae5a332275b092a3b63'); +INSERT INTO messages VALUES(1359,310520,'insert','blocks','{"block_hash":"ac1c820b0a2de1206a2a7558545e20d13a5f507dcc49b31edb00a8579eb27680","block_index":310520,"block_time":310520000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8cace5c772c3a54e04c9d7ce8c07e76f881cd9faf3218c4ace531393b64afe5b'); +INSERT INTO messages VALUES(1360,310520,'insert','debits','{"action":"unescrowed fairmint","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"A160361285792733729","block_index":310520,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":50,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT',NULL,'178ed3d8fba9b9cdf66f1014102e827f91d7b485181ce14ae47bc967b57eb7a9'); +INSERT INTO messages VALUES(1361,310520,'insert','debits','{"action":"unescrowed fairmint payment","address":"mvCounterpartyXXXXXXXXXXXXXXW24Hef","asset":"XCP","block_index":310520,"event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":300,"tx_index":0,"utxo":null,"utxo_address":null}',0,'DEBIT',NULL,'efead171a53302d4208eaad19cd2b85e274ab6fbc0bb1e80fe1f26552cead4f6'); +INSERT INTO messages VALUES(1362,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310520,"calling_function":"fairmint payment","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":100,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'67494ea21e679181ec7c27dede3ad0aad431073be62070b660bd99a42f3e7baa'); +INSERT INTO messages VALUES(1363,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"unescrowed fairmint","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":7,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'8b3d615ea7d3f1524aa4298404a06958c5ec96b593272077ff1c9a9060123719'); +INSERT INTO messages VALUES(1364,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"fairmint commission","event":"6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8","quantity":3,"tx_index":506,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'6dde9e5229c84d263a108fc017f6543e9a2ef140de375986d610ce89468e908f'); +INSERT INTO messages VALUES(1365,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"XCP","block_index":310520,"calling_function":"fairmint payment","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":200,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'a88fa915990ec3da3ea63df7068c9ef80fc4fc9abcac1cb53985527a862254b7'); +INSERT INTO messages VALUES(1366,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"unescrowed fairmint","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":14,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'421aa14bdbc545cb71cd6de256dc4304a73195ef56ae5354eb6c8811d165e419'); +INSERT INTO messages VALUES(1367,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"fairmint commission","event":"ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18","quantity":6,"tx_index":507,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'4b6fafbb329231577f8042cf90ec953d7f07be40b215fcc0c489f632d5fbd5d2'); +INSERT INTO messages VALUES(1368,310520,'insert','credits','{"address":"mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns","asset":"A160361285792733729","block_index":310520,"calling_function":"premint","event":"0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9","quantity":20,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'42dfc5d21af17c4f23493ecc049c08a79831900cc3eb99e02bb8ff605e8c84be'); +INSERT INTO messages VALUES(1369,310520,'parse','blocks','{"block_index":310520,"ledger_hash":"4dc209a7fcabd4ed54f9702acabeb0369cb9872342e101407241c71bf5f5023b","messages_hash":"c0f245b00cc0c997187432e32912d4e72cdbae89a15c62df0763f4d552125a87","transaction_count":0,"txlist_hash":"4ae19f415141f11f6c3b72d24512114ff7c06d201e2ee94aefb58e9f1921964b"}',0,'BLOCK_PARSED',NULL,'a6b6a328219f5db213f3b38622fb198501c727b2362809d7ff9d645bc0be7f95'); +INSERT INTO messages VALUES(1370,310521,'insert','blocks','{"block_hash":"df95500e3cf5ef81703fa42fe0f37a1250ae5da9407197a46745dec0459e6598","block_index":310521,"block_time":310521000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9d7513ccc6daa39401ba798f2bb000d160a2a9ab722a928ff16804972f6956d5'); +INSERT INTO messages VALUES(1371,310521,'parse','blocks','{"block_index":310521,"ledger_hash":"d237ef834b20f71ef49c9f35e1700bcdc59bcea9d340dd1b83b2046fba5c4a49","messages_hash":"9dbc54408689848146690f88c67f212938670b02bc4105b5375dc04e17802e25","transaction_count":0,"txlist_hash":"243a864c8243f71fa9cfbbbb25e23547337dc04b074d1aae2408a82b11ad3c15"}',0,'BLOCK_PARSED',NULL,'44296a650e83b9dfde852bd556f8100df3db3f2132bc0d0654e9feda0eff6ebc'); +INSERT INTO messages VALUES(1372,310522,'insert','blocks','{"block_hash":"6a3cbbd6e28c6273e2c60047c17caec446cb40075ab83d043a2f80d54fe34b21","block_index":310522,"block_time":310522000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'460260cf32220964efbd180348094e83c256e691c003702f2ac89df02bd05692'); +INSERT INTO messages VALUES(1373,310522,'parse','blocks','{"block_index":310522,"ledger_hash":"396fb8702db3ebde1fc334fdb622f37f1a020d6050850ebb424bacbb6acdf163","messages_hash":"d8f9e110a1275167c10ca56de86343c1a2cc6c444214f75566955b01303c0367","transaction_count":0,"txlist_hash":"f8d7f3eeef9c11dbb8c8ec8bf5c06e4eacfc812151526c44a4208bb8d585a973"}',0,'BLOCK_PARSED',NULL,'fbbdab7d892fad19e5542d1c5c97e1eb0bcb4a0cfc3942a9790e0440976120c0'); +INSERT INTO messages VALUES(1374,310523,'insert','blocks','{"block_hash":"0b4de9fd1b5e12553b2450a06ed00086163cac3a5c871cac141fd3f04af5b453","block_index":310523,"block_time":310523000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d04c8e815e7b401c5be2c0526ad245b8da6617406033b6eef653bef5db619fb5'); +INSERT INTO messages VALUES(1375,310523,'parse','blocks','{"block_index":310523,"ledger_hash":"716de5998e8b20af5de5df56a9a881d392481f0b1b261d3fcdb51bf52d6f69f4","messages_hash":"4e1b02274bf01a7e2d08afe62a7f99f5ff4b107d131323bfb7c6b405089c4d6d","transaction_count":0,"txlist_hash":"065b22682abbad6d9076204a74a4be79acb71b8a8fd715ad334c3351f35f75dd"}',0,'BLOCK_PARSED',NULL,'a166be05877341cd4b1a17f0e931f7e4e2bff819f51df803bb7fb3125565a83b'); +INSERT INTO messages VALUES(1376,310524,'insert','blocks','{"block_hash":"b7e16928a86db99f8fb5b6930912f75acb2ae7c6fd6de3c6a2e67c15cb190655","block_index":310524,"block_time":310524000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d2bc745ffb6fc719b172d52cc58b64f2e4bd92e97e78acec222b731c9fdf855'); +INSERT INTO messages VALUES(1377,310524,'parse','blocks','{"block_index":310524,"ledger_hash":"012bb0e462fa1a4a143f13b750bed77ac06885731e04b47e951023a8e749460e","messages_hash":"d071e4d339d393a000a0bb261fe51fffb5da4ec6d8c8f23cb0d868ef45e86594","transaction_count":0,"txlist_hash":"7b1d9d04b71c2b8f7aa31cdef567336e6f1dfba44fcb4915696ab498c72364d0"}',0,'BLOCK_PARSED',NULL,'d97663974dd1eb228f6b2414222b00b3acd85ede4e27121d0ba7525ba418eeac'); +INSERT INTO messages VALUES(1378,310525,'insert','blocks','{"block_hash":"2c9a958715acbd51a756d6b92abb1d9cd8e72cfb90d5bfe7b42fb0a1058753b9","block_index":310525,"block_time":310525000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c6e8a168952d7ee899dce75aeacefe21c14267044f0d04a39c87431f8996cddd'); +INSERT INTO messages VALUES(1379,310525,'parse','blocks','{"block_index":310525,"ledger_hash":"34fb519efe88b96e003c466c03520229ee428f4a9ed3209c07f6889a8b2fd9df","messages_hash":"b0293fbc9f4cc6206069cb15ff54d6f3aba5008397e191ff09200b82751ee9ff","transaction_count":0,"txlist_hash":"52694ea9983ac76659645946334a071b7b5e86e295155526e3a27cd87d81cc87"}',0,'BLOCK_PARSED',NULL,'6052a562c93c943090b280c5c7dd2ab0756dc458918c122021a998124c7d9795'); +INSERT INTO messages VALUES(1380,310526,'insert','blocks','{"block_hash":"07b8e3ffa932912a00aa3e5bc44115c77fd3b4e89c6dd2f678907ef78776766d","block_index":310526,"block_time":310526000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5333a39b266e3663387c8f5d75a400ae40e6fd7aee3798f6ace3c7bd88aa3321'); +INSERT INTO messages VALUES(1381,310526,'parse','blocks','{"block_index":310526,"ledger_hash":"e07a98f8ae58676a9411517423e134d3d1fae321c2b43f51c25333e3c1ff2202","messages_hash":"d2e0aea65d2fbe62274725d05c480ba1bb66d3afaf02afabb2dec9cd170860d2","transaction_count":0,"txlist_hash":"7c47526dba085953aa0d343f0e5b51520d69f92b3046013d0fa0ed6632b74b4b"}',0,'BLOCK_PARSED',NULL,'58909f770d50dbe365b1950748d7d3735b21b1923adea5163952b190f76394a4'); +INSERT INTO messages VALUES(1382,310527,'insert','blocks','{"block_hash":"5140a0c0619c3fc40cc7df171f6d93bbb53add8845828ca08acc7b573dd6d2db","block_index":310527,"block_time":310527000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c219e51e272f104c32adf91ada0883599039c98f762a1c445d17d191471ebf6'); +INSERT INTO messages VALUES(1383,310527,'parse','blocks','{"block_index":310527,"ledger_hash":"bec0659c9057fdca682d4d6ab1064ca6ee5802462d154657a3b276fa1be1f673","messages_hash":"3c436fa842ef6ebd90e6c0794f46b0d5583341a406b7b8712af3ef7c79206aaa","transaction_count":0,"txlist_hash":"8d0d0b180ebfe5738144b9e1f8e81f74a90cd81fc7bbcd6490881b8554ba12b8"}',0,'BLOCK_PARSED',NULL,'999a883eaa71420cfdc958e95792a8a5b3d1362c54d623a103ace25f23e37b4a'); +INSERT INTO messages VALUES(1384,310528,'insert','blocks','{"block_hash":"a70c0d36078e4165903d743e63a5184a69fc79fdd2c251040e2c9d61a83c1cc5","block_index":310528,"block_time":310528000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'50363049ad1cd8a00ecf9e040164bc0fa19a480fbeb01956a5db159a9cb60966'); +INSERT INTO messages VALUES(1385,310528,'parse','blocks','{"block_index":310528,"ledger_hash":"abe61beda3ee6914cc347edfd2ce26a0ab1c5628bddae3327f88043603f29f2f","messages_hash":"6c5e06f8428a1f1d7cb00c06b7b16d53663c6381f5f09f2faa40a0931df666ff","transaction_count":0,"txlist_hash":"6f1b36c493186bfc813d2e3638d0fa2dc68c2ca7f0823bf3935a2c7d2539da9f"}',0,'BLOCK_PARSED',NULL,'68a35a74e1ae82fa8ba63f25b8792df0cc03294a93197761c978b49a61d6a41f'); +INSERT INTO messages VALUES(1386,310529,'insert','blocks','{"block_hash":"7079a2c6f566af16cf9200bd4e210770e2da8a416883b98a8af4554585f4003b","block_index":310529,"block_time":310529000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c6334b0adb6811790818da49b49b8de4bb1b2fb90e9ffac73db2a6e8b160286'); +INSERT INTO messages VALUES(1387,310529,'parse','blocks','{"block_index":310529,"ledger_hash":"088fc3809dd410e8a239e2da6f1938683c437c46f95975a440dcced41f0c73ce","messages_hash":"64d3e101b025913dfeaeb36d526e52f52a16fc846bc1bc85078ab5d5841d6fa6","transaction_count":0,"txlist_hash":"7e4232af9977eb670466868d83e6df5ddcb39d899f33ef653b87d58b422ab64d"}',0,'BLOCK_PARSED',NULL,'1293a66bb99ca96cdaf7d9b325011110860e41af5169a917ec2500d595f1df0f'); +INSERT INTO messages VALUES(1388,310530,'insert','blocks','{"block_hash":"f700e3806dfb2bed8652f19d5900a78a73ebfa5ce0aaae9e7728b426c5667110","block_index":310530,"block_time":310530000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e8ba68cab63d9c150a278c81448947c03dc52bf20ac912feacb79537ccb0cd33'); +INSERT INTO messages VALUES(1389,310530,'parse','blocks','{"block_index":310530,"ledger_hash":"fcbe1d8b65bb77008da77ba5010c8ea58b23bd7789c734961e287e59b4408816","messages_hash":"36b7fd1c927d3b134e688322f0120f5ca7187d3fa7100829bd452f796399817a","transaction_count":0,"txlist_hash":"7e4077941dd95a2b0e51b0ad680935a7232fa5cf31f664150510172e4c2e6da1"}',0,'BLOCK_PARSED',NULL,'6baa76ffc962a3d995c6519b7b11268f4e13b17ecc1d149d668cd3e4e7c2b6e0'); +INSERT INTO messages VALUES(1390,310531,'insert','blocks','{"block_hash":"764b50a1473add7087e9b9a6c07d0a598161f0d2d7c3cb77cd5bf18ab27bdc15","block_index":310531,"block_time":310531000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5e73f843c3c9e23dde2f7e84086e07bbbec6edee5d8980cffe462a230fbf1640'); +INSERT INTO messages VALUES(1391,310531,'parse','blocks','{"block_index":310531,"ledger_hash":"d8e06cd95b4938a8f555867d4a71852bcae6f10c0fa90ae73cc3479ed4930024","messages_hash":"d41b8fcb01d237cc1a742c86825c22547f8e71a0c48df975e3adb13db69efd08","transaction_count":0,"txlist_hash":"1245439b0d3fff0822ebed6e6ca34f99f24194cfb36fb2649ed61b0ac26ed7a8"}',0,'BLOCK_PARSED',NULL,'45ba3b88c4c05fe02f693612eaafe404acbf7c3949866cf17da8e3940da73526'); +INSERT INTO messages VALUES(1392,310532,'insert','blocks','{"block_hash":"4b1dea9bbf41e5834ad893bb4dce0a696313676da42ebef1f6dc9a5d4e9ff836","block_index":310532,"block_time":310532000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'95dd6aa199f429368a7aa3039606a00ea812ae24076c97d15a5de4270ba6614c'); +INSERT INTO messages VALUES(1393,310532,'parse','blocks','{"block_index":310532,"ledger_hash":"3b6b5430613573b986db19a9d39001eaa83c7f894da2c533e4bb507e09790fa5","messages_hash":"e5163e57a82f167d43ea006137dab0ffa9639d988a97bcabcf351525bfabf47a","transaction_count":0,"txlist_hash":"6004fe4cc5ce025759106802ff56bddaf546e7a9d71510e49a4098766a794726"}',0,'BLOCK_PARSED',NULL,'4c6a24b7d833853bff2d4ae825cf8db28085172ca4673e533663dd93b9c36725'); +INSERT INTO messages VALUES(1394,310533,'insert','blocks','{"block_hash":"4fef302404a214c70289d57b900a262ca0e327c810636e03a3e799031cb16912","block_index":310533,"block_time":310533000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7d9f5517cd4e6a02239ccbb8ecf2a4a3e44c9455bacedcb6b8c065834a339d49'); +INSERT INTO messages VALUES(1395,310533,'parse','blocks','{"block_index":310533,"ledger_hash":"16c00e17f045fde4640b38688a680467ce55b8e5da29ae04a1d60f46791c0f5e","messages_hash":"6f857fc829e68f39bd141a2048c736511e6a0a1ee6eb9b2f3e5de5345b0cb5a0","transaction_count":0,"txlist_hash":"b9a73939683499b11ce35245014153232ddde14a49fbcc8cdcac3f02c9265a72"}',0,'BLOCK_PARSED',NULL,'1aedb07231b579180aee797b4b83c383445bd7ab02ac0619c3e945fc38aa5290'); +INSERT INTO messages VALUES(1396,310534,'insert','blocks','{"block_hash":"2812082f86099ba2996b57e874d4aa6e8bcf75765cdb584ab352efd6e28d93ad","block_index":310534,"block_time":310534000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'83af295c62e68fba70083078e5d3f301a441d6aa99b613bd85cb8cac4e3fd4a2'); +INSERT INTO messages VALUES(1397,310534,'parse','blocks','{"block_index":310534,"ledger_hash":"559ab2ee9e5f74830636547b35497f32e54b79a2836a15abcad6d1f7219b134c","messages_hash":"f540e77c6be63630a5ac6037eaa21044fb95b707d9e71d8b1bf60f2f2ca196cd","transaction_count":0,"txlist_hash":"36dfe8e8614a4f5046330df939031d7618e0c5ec9a5e9a23adfb5abf81b17832"}',0,'BLOCK_PARSED',NULL,'fab093bad528eda03d2ef9bab85e02148af6a3d24a800b398d59be1dacb92273'); +INSERT INTO messages VALUES(1398,310535,'insert','blocks','{"block_hash":"0e5efcc3a61487b050dab3f61052bd702a23c382e47fcd9857be6013f81080ce","block_index":310535,"block_time":310535000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d564f3e67764690bccea40ba8e231b1e56b6410a67717c2456f6966a97425d09'); +INSERT INTO messages VALUES(1399,310535,'parse','blocks','{"block_index":310535,"ledger_hash":"6297330a254c027ea604f2866961e47eb7c1ad1d91e14017c5c271fffc124f4f","messages_hash":"487033cfbcd2094f7258e399bafaccf40dea7cc539a7c838973d6512fc001fe0","transaction_count":0,"txlist_hash":"9be9aa1d1972bdb4febf132b2003528501375ed67a70a92efdebdeb4c1b98a90"}',0,'BLOCK_PARSED',NULL,'9b48ae19957ae55e59e08901d714df39e4e1a02a7782c442aa67e8861c81556f'); +INSERT INTO messages VALUES(1400,310536,'insert','blocks','{"block_hash":"dac89c720ba3a2e716a20f7d3207abf7f8229bf3d884962a2502d5e4e4656018","block_index":310536,"block_time":310536000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e39e455df5d7605c0cddf480edd79fc37c1ed4ea658a0907e83d5056e8ae1e4e'); +INSERT INTO messages VALUES(1401,310536,'parse','blocks','{"block_index":310536,"ledger_hash":"2fb53adbae88c7732ff5fcd0d8f1293c77bca3c724a24612518ea4eba8f8c0cd","messages_hash":"1b526baf47b208323ed9dee940b51d3ef9a7cebc65498f9a19024d5993033a8b","transaction_count":0,"txlist_hash":"f2187b1c129b489914599faed5415ba0d52a0bc44e49453df54648a30f505ce2"}',0,'BLOCK_PARSED',NULL,'878e2b94eef585388b239a8bd68cbb7e756cc65ea458b372c5e2cd4c936be266'); +INSERT INTO messages VALUES(1402,310537,'insert','blocks','{"block_hash":"944c68f1de531cd4cc872d355f43e6f82e61596a51e46146ce04d8fbaae39c9d","block_index":310537,"block_time":310537000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'86ea359f58c49992401e5afa61f828a172e93c3fbcfb02c9ad7769e782a584ee'); +INSERT INTO messages VALUES(1403,310537,'parse','blocks','{"block_index":310537,"ledger_hash":"3f00c364eca726cd27673c7800bbc826acd15a2b89856b4761d87afc541da98a","messages_hash":"1e7d95c74d6cf6beb3010a52f78348c609381680e4d485261a35953f202705eb","transaction_count":0,"txlist_hash":"849255d12eb06d2dbf9ebd04fe0a99602216890abe7cb6faae4b13fa3dc0b3fd"}',0,'BLOCK_PARSED',NULL,'318ff9cb17d162caa3a2bb363a3e1a4f0bda48dce81d89867933a00f8d19e994'); +INSERT INTO messages VALUES(1404,310538,'insert','blocks','{"block_hash":"75f6eae30970e4c0fbed85a315a2c2d8f26bd286116c6fb5a6ae74fb1615e1bd","block_index":310538,"block_time":310538000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'457e1c10f7348df0a5677177d6ec16b6be773a5993822b435623a61c5843dea9'); +INSERT INTO messages VALUES(1405,310538,'parse','blocks','{"block_index":310538,"ledger_hash":"3970e5757fff4155578e8887d0afd1b54341522ee330b301efbc6ddfbcccf80e","messages_hash":"792a702f3508262f0551de97be9a4a68f344fbff979a8647aa9c90aa406c7c28","transaction_count":0,"txlist_hash":"8ab5b08a8f5f57d62cc8fdaefb001fb34757bc7dfa355311af7e993338c15e80"}',0,'BLOCK_PARSED',NULL,'307a3d8b5fbed7fcceffd2033f58c8f4487ffdf5e04a004db4182343a6fab054'); +INSERT INTO messages VALUES(1406,310539,'insert','blocks','{"block_hash":"338ec0a15b7867f84ee88042c4c5a5deeb83d7323e2a05a8cae0299cd92373c3","block_index":310539,"block_time":310539000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3e2cd4e914a449ee33b0a43e27490898a17d0ee1c31c67bb8edd4b6537fbc29b'); +INSERT INTO messages VALUES(1407,310539,'parse','blocks','{"block_index":310539,"ledger_hash":"7dcecf391af529114932f3501fe2d1850d8c0d0dde8484ff484a989a14f773cb","messages_hash":"febd20714599577f7b253d99cbb5166bf5d1de6df507709b5ec542ef5debe1d3","transaction_count":0,"txlist_hash":"f889de9308ec0bbca7f214cc8c81030ec5317cb72dddbb97dd3b00a002c4fa64"}',0,'BLOCK_PARSED',NULL,'2c533d0a50124e2f464b778fb10f46f2f91598d47d21d61b76e37e2c39f142db'); +INSERT INTO messages VALUES(1408,310540,'insert','blocks','{"block_hash":"0e65a2d641c89fe837bc520473abf0666ff7aa498f523cde795efcfc7ae1385d","block_index":310540,"block_time":310540000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ceb271d0492f204a12fd456023f5ed50ea8b68280e01005bbb218e23fa1ba9bb'); +INSERT INTO messages VALUES(1409,310540,'parse','blocks','{"block_index":310540,"ledger_hash":"cea510e4d7985dd66e635e41d5565ca3e61e722ebc49e989515f6de67ceb7de4","messages_hash":"73f773b8355f1ebfa8e603d999672a760d7d18fd625f222730f136030e64e85e","transaction_count":0,"txlist_hash":"474f6e2a51277c8f90f02aab78058b6b9c7e3327d0cec325ff6002e058148496"}',0,'BLOCK_PARSED',NULL,'ca2ac1164bfb00f6449c6f016d3dbe64cda89061ac27b6de7255e47f18776824'); +INSERT INTO messages VALUES(1410,310541,'insert','blocks','{"block_hash":"ed808e14b19ac28990a50fb2089f279fcc52bf3fee29618f1d9aeac3ab50d453","block_index":310541,"block_time":310541000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'573f8f1a17db184e1e2a01b1b516261d106f477a9bac850e4c33cffd492cd5c3'); +INSERT INTO messages VALUES(1411,310541,'parse','blocks','{"block_index":310541,"ledger_hash":"54d1e29f86b81368d41f033cc6b32357e20ac3a1deea064917e45e72eb846496","messages_hash":"65f4a7188f6120499aab2c4391a19144cb91e874a8727c17afdf9513304058b3","transaction_count":0,"txlist_hash":"0b004058cd27a1be5261693a5203d69c14f2ca5b3105d21bf28ef3f49273f885"}',0,'BLOCK_PARSED',NULL,'62b27be73fa05b519205e268cd3346b1b5f1d8ee334a642ba6d2f723bf6d14bf'); +INSERT INTO messages VALUES(1412,310542,'insert','blocks','{"block_hash":"7a8e3a931043410b3423e08399ec9f728d3aacfcb012a14b2c5f1599bdb5dad2","block_index":310542,"block_time":310542000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e112f80d68823df1c1199850f93595d53c2db20eef9e7a71de08a4e2cdf46593'); +INSERT INTO messages VALUES(1413,310542,'parse','blocks','{"block_index":310542,"ledger_hash":"33b6c29332fd01db5ad754d5749cb539a0cf5d5d33bcaae36fa672b04deea305","messages_hash":"137becfd281afe3f548c28a90def5d0b48f7be648ee9d05039f59b1445a9f91f","transaction_count":0,"txlist_hash":"7553c0132cfd45b14cbab4f1e59510933069a4f3b82be8a0e2f13d08e3a06cf3"}',0,'BLOCK_PARSED',NULL,'e36af530e41af8da36000473689e2e06ea8e7be42360337d9d85c96f9d29e9eb'); +INSERT INTO messages VALUES(1414,310543,'insert','blocks','{"block_hash":"cfb828d0c86b38af257b41f77c544862c450383bb97640190c97add62b53d4d2","block_index":310543,"block_time":310543000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'89e124b0852295b570d18011e60476981d6057aaba3816db454f29e0b046969b'); +INSERT INTO messages VALUES(1415,310543,'parse','blocks','{"block_index":310543,"ledger_hash":"f4292ee5fca358df10710105815494427470ccfee0f411a84ce53a11d8a05fb9","messages_hash":"ab7557c521506b8d0e4f19247b027764de58fc3bad90fb3ab464be043809dbeb","transaction_count":0,"txlist_hash":"f7e56981d310a7b8a06ea7ce6c4d4091ce35e4a8023ada8890e952453dae8201"}',0,'BLOCK_PARSED',NULL,'7f17d86fe650c191694d2c41d71eb9697c2f615f0c9607cb61a738c96fec540b'); +INSERT INTO messages VALUES(1416,310544,'insert','blocks','{"block_hash":"c9a9e0fe67c824638dc17e9fab5f1b409915fcacdf2dc4f9709b87c9796cc4a6","block_index":310544,"block_time":310544000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e82a123bfe849f027da2c17aa3b097597c4185cd21545f6488d114eb1f862b60'); +INSERT INTO messages VALUES(1417,310544,'parse','blocks','{"block_index":310544,"ledger_hash":"08a08208b1b3c32d6ace3f59d51a9d038f08e993dd2df5f7c88adaeea0b1ef0b","messages_hash":"d064b5c40cc92a4fb4f46da1a72a9c7b8d8fb4365c462eb486b7ccb5f6ca846a","transaction_count":0,"txlist_hash":"bdf0fae7bf5083ddc2a99a4a7efbaece20070f0145e44b67567f71c90b29ca2e"}',0,'BLOCK_PARSED',NULL,'adef9c6a655eac8a735208f52609c8230976e9e42dcb817ba26f6e6d2c69e999'); +INSERT INTO messages VALUES(1418,310545,'insert','blocks','{"block_hash":"aa23fca8fa612e16b5bb4e47e308a3845cd0aac2357e7d93a44dc70ff8c91c8a","block_index":310545,"block_time":310545000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'600bc063a6770631cafbfdc78b8a3e34e270f122f713016a40c1986ce4a3d823'); +INSERT INTO messages VALUES(1419,310545,'parse','blocks','{"block_index":310545,"ledger_hash":"2eae28fa50bead38b3be859f5b5659af380c2aa008bc4c3d19327b0786ce5241","messages_hash":"06aa09de6ff2165e6afffa8255b0dd8977d91e01d8a9bb8cd12a4bf10c3152b1","transaction_count":0,"txlist_hash":"9a25f3b3bb017cd926e1fa8b768324a147979f518208c106ffbad1b5fb8d502d"}',0,'BLOCK_PARSED',NULL,'942438eefb02a5cad1d5be739a85d6911f21e5bdbdcb4afa45ac22d06b7e524f'); +INSERT INTO messages VALUES(1420,310546,'insert','blocks','{"block_hash":"20f37a8d164e14b7f88e06023b81060afee8c1b2b556ac2789b1f6874019791d","block_index":310546,"block_time":310546000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e868524ec246a4d1b6d77bbd1be3d5269f3c6558d5b5e78574e12229ea00c1a3'); +INSERT INTO messages VALUES(1421,310546,'parse','blocks','{"block_index":310546,"ledger_hash":"5d71fc815f19de02f829ef5174847c7248a56dda7440ec3d0faf20c1c0148d1c","messages_hash":"554a964c5f5d6cd19d17bd3a32935755ded976712b81e4a1ce144e95c248a9ad","transaction_count":0,"txlist_hash":"cff6edc9625c136443e036d39b1ed3cc5e76a49b919795f05cb92e508e4cead5"}',0,'BLOCK_PARSED',NULL,'6d8078736714939f880184c99e23d6ad8f7dd512f9ae7624aa302019b23cb392'); +INSERT INTO messages VALUES(1422,310547,'insert','blocks','{"block_hash":"f3d862f560d7abc97f92c3bbf2761de40dd20cc670ba216850c1bcbb0cda31c7","block_index":310547,"block_time":310547000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d33f698d55c776440f75b494b394265cf4b011fde3cfbeb9190262548923cd36'); +INSERT INTO messages VALUES(1423,310547,'parse','blocks','{"block_index":310547,"ledger_hash":"7da146bee7d9b794d48330ebb9613050e063f5414fa4c5072beec6a11394dd21","messages_hash":"6a13b92806ba1bd4bcfeca83c69c0bf1fb33dfccd1c8d1bbbc6e9274777e391f","transaction_count":0,"txlist_hash":"3a305e7a9b8de2e2ec9f43206a08e257a1e17c540f0e47625b64feafc3413daa"}',0,'BLOCK_PARSED',NULL,'10c2f847ead991f5369af03dba541cac5500a310062fbbc69e934d2728b4a9d4'); +INSERT INTO messages VALUES(1424,310548,'insert','blocks','{"block_hash":"bb0b2ff09d831962cc748b4720dc05dc2fd2e3bd3374eacfc066ecd0b7f58ec2","block_index":310548,"block_time":310548000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f59284a7b33e34959b23156277b4878fdc44de1143a5389251f3219f8dc32a35'); +INSERT INTO messages VALUES(1425,310548,'parse','blocks','{"block_index":310548,"ledger_hash":"6b0ada4ad9d4bc710468367b57412f2fe7a5d3b84a7088a48e1388df2ef23956","messages_hash":"17645c84ae7d23bdf7686b243a13665487fffa2b948df52747a219ce30d67577","transaction_count":0,"txlist_hash":"6a9672fcd678d39907e6c01137f2c6514ff99929cf60171c1760e72dea1b1f19"}',0,'BLOCK_PARSED',NULL,'647723c6bd98961bfd647e66bc1f630539da4b3b4b2416735077aa69edb51a12'); +INSERT INTO messages VALUES(1426,310549,'insert','blocks','{"block_hash":"8e8c61f034fdad98962c84dbe90450bc2da62b815d8b4f8084b0dd3d69763979","block_index":310549,"block_time":310549000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'35a27aecbffa8dbed4892bf585a2945c046c90c6a0c6b99673b27cb12e2c3fc8'); +INSERT INTO messages VALUES(1427,310549,'parse','blocks','{"block_index":310549,"ledger_hash":"bed2db4b5cd892b0ec3dd1ae7b17fa183914afa953cf650714a66816b0426702","messages_hash":"64e4861d9bb959e059d64babb52078f7edb6e8e5e7e135898347ded7ef84a514","transaction_count":0,"txlist_hash":"d16823e9ed0b346917aae45cd173cbd173d229f284cb95ec7af7c9b159b2d8c8"}',0,'BLOCK_PARSED',NULL,'a462851f42ff4906922dce3d091eedf35723c4f77d45bff8c06a541b1229c53f'); +INSERT INTO messages VALUES(1428,310550,'insert','blocks','{"block_hash":"08d2fd6eda5baa3c4c9a4e86599577396d4bc333ad9296453e3c537ad8ade914","block_index":310550,"block_time":310550000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fdd5bdc48d3fdd4d31c609550c1164165e003f82e6207943af58f4fc5320aca1'); +INSERT INTO messages VALUES(1429,310550,'parse','blocks','{"block_index":310550,"ledger_hash":"b44be21bf36655ba56d872d923c2cc0d955c274330fe4172318477353451ce66","messages_hash":"781555546e8af008ddb64755b04af7c8ad597894b810bcb2b89af3498c950343","transaction_count":0,"txlist_hash":"6ce86b2a35a931348e98118c7426950ad4ee1a9fa557cd3c1eab0c4fd8d3f144"}',0,'BLOCK_PARSED',NULL,'d54b913c044160a4cd7ae4e2b256f4572a10ba2c16df671208216b7526387c0f'); +INSERT INTO messages VALUES(1430,310551,'insert','blocks','{"block_hash":"cf4365c7971aad6192522a0853a086d4ab24c4ac2b3bdb2a73accd217d8dae7b","block_index":310551,"block_time":310551000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e0e67967008befd4ab4596bbec1364ade01de0809b0f511723aedb23c22fedc6'); +INSERT INTO messages VALUES(1431,310551,'parse','blocks','{"block_index":310551,"ledger_hash":"45fb127ce53800c27854f4a24ee639afac2f164c38b6abe1b521b919fca85c12","messages_hash":"96de7b13565592af3e11f500ef100984a9189b4b663620c32772ff2cdc8d343f","transaction_count":0,"txlist_hash":"49db288f7c65afd8f99a1f8e6edc85dac9c599d27be113df4b6246f9232a6056"}',0,'BLOCK_PARSED',NULL,'a744ec7001e8d86cc3bbca9ab0beb6a12759387683aca8c05393825f76f9b0b2'); +INSERT INTO messages VALUES(1432,310552,'insert','blocks','{"block_hash":"d22b2764d8599549d2fb82f03ea7d5a4c2539ec1c8fe3f55c9832e810a99659d","block_index":310552,"block_time":310552000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2b55083488d2a7238266fea82cce8caec75b0418be66892681ffb0d13cfaf2ea'); +INSERT INTO messages VALUES(1433,310552,'parse','blocks','{"block_index":310552,"ledger_hash":"661f0e7a6bb2808338d7a8e1186d92f3de98a4a7a8d071d7cb3defc0b7322e81","messages_hash":"409b3d49326eefa621b507a156703f6fa88298eaabadaf2d58dd52e84e732354","transaction_count":0,"txlist_hash":"f5ba7a3fdb9394f101d5187b107ad937fa5a224c290119cd76bb37710b1600a6"}',0,'BLOCK_PARSED',NULL,'889ca209f44be5d96f741398a9b3cdd3993463ef5629b5d85e1e42de1e3aa096'); +INSERT INTO messages VALUES(1434,310553,'insert','blocks','{"block_hash":"d1e220ecdac4296140b1fc5789c019ceec1275855b4a47f955782853c9addaf2","block_index":310553,"block_time":310553000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e35708cf19ce02b8758ef191e0129a6aefa6d07ca5b3f47b34a7ebafd543aadf'); +INSERT INTO messages VALUES(1435,310553,'parse','blocks','{"block_index":310553,"ledger_hash":"d1ad6dc986674f2cef38ab916fe5299fe9c91e7559e6f5c90679bb9b14be6e6e","messages_hash":"fd9489d60de15497ded952349d960cee9fde461f22e00417587ff5b1b6a78d68","transaction_count":0,"txlist_hash":"b1777df226b373535e3fff13e4379375cd601d0cbc1a90951cf288d21eb66aff"}',0,'BLOCK_PARSED',NULL,'f437595f4d4cef21835666c52da1a80d7b6324ee52a3816d2c99ddf4632a4fb9'); +INSERT INTO messages VALUES(1436,310554,'insert','blocks','{"block_hash":"7ef603cca521c652eb94ab8dd0e053fcfc09491a9f474098f98294cc8a4a5b65","block_index":310554,"block_time":310554000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'de9afc52dcab4151f9c9f448a2394dd69861bb190807bd6dc87c073a73403f71'); +INSERT INTO messages VALUES(1437,310554,'parse','blocks','{"block_index":310554,"ledger_hash":"d0ea6c81ba15b671216ddbf274af820c8740ed1352c6fa877036c4210fee234b","messages_hash":"cf9b7f176ff36c20a9b655401a5f28e9f8f6e580352246a5ef3b0a3e4ca51ab3","transaction_count":0,"txlist_hash":"870b61238a3e7c740fb52ba62719724cf95250ac22a4705dd88a1870f560fa1c"}',0,'BLOCK_PARSED',NULL,'3c2b938737c9d6e08efdca0eb90079e7079e41cefe101467af1b5a035dc011a6'); +INSERT INTO messages VALUES(1438,310555,'insert','blocks','{"block_hash":"c51aaefdc56f413baf9be7dac61b4afc8497212651e9901c39fb250bcade50fa","block_index":310555,"block_time":310555000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'13bf66816135055b06ed64611b89ccaf23a059685343a2bd6f9d8b961f0850c3'); +INSERT INTO messages VALUES(1439,310555,'parse','blocks','{"block_index":310555,"ledger_hash":"b782c3fcd7ece6e246d994249391222e77b3ba89c4b0e1f8d868588562d9d069","messages_hash":"0739b7e81633938fb3a3c19a1ab2a2992c4be548fff1a8c509368b2820c2f7ec","transaction_count":0,"txlist_hash":"8b3bd64e05150c476d55dd64729b8e20e7b8c345c35c723392b194785472c6a3"}',0,'BLOCK_PARSED',NULL,'4551e20d9ff9778ab00c58a97579f0da1893406c64fb37e428a723e03cb9323a'); +INSERT INTO messages VALUES(1440,310556,'insert','blocks','{"block_hash":"4af11c6d35e142972be016858a06e2ea32b15beed2068be4cc85f3918fa99f3a","block_index":310556,"block_time":310556000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a488b6e7e3856d9bb43a4a8d238ed258fb3b0f1ddeb1ed3a87f9f25b24841825'); +INSERT INTO messages VALUES(1441,310556,'parse','blocks','{"block_index":310556,"ledger_hash":"c23d1bb3810c83bf52f05a305bf2245549f850056fa42b22f533484853b51435","messages_hash":"90d1102e2270d0c4da5ea8776458b88788eae8f3f0782745e8787d9af8cad706","transaction_count":0,"txlist_hash":"a858a0bafa17a74c79b65ca07ad3418ac201e5096c87159bf789f40c3d84679b"}',0,'BLOCK_PARSED',NULL,'c0b7bd08cea89a1b491ba675fd5855eacfc45f516e62b4c4ed6dcfbdaa0351b3'); +INSERT INTO messages VALUES(1442,310557,'insert','blocks','{"block_hash":"0973e14fe07ac8b86345061942ac2a5055fecd867e69d8f2df33195505d87382","block_index":310557,"block_time":310557000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c06bb6c0877e700c0050b39ce4d3645da8d6e161154fdd80420c1d2497232971'); +INSERT INTO messages VALUES(1443,310557,'parse','blocks','{"block_index":310557,"ledger_hash":"0eff1936c008135db443b7c7900c83e244cbe5c13ccc062255309e9e4742c95a","messages_hash":"f8a9faaac3b84d412c9f6841df8d3d9ef459dcca503ba8ee421a8a66049ef2cc","transaction_count":0,"txlist_hash":"6cc6e826d65d96cd9546e3e459934acfac6456a706ed5423da4c4ae0c71feb83"}',0,'BLOCK_PARSED',NULL,'eeaf4beb264075470906f2c631ab6ba1b593a556670fabd814e7cb9bb4e21a1e'); +INSERT INTO messages VALUES(1444,310558,'insert','blocks','{"block_hash":"75d26d503c2b3b71d36644f7de0826d129b4f127ef9713f6f02f498399e28d15","block_index":310558,"block_time":310558000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f53f3158851aee38de16aa2a76b0eef5982e5993706c1ce1bcb860d9e992cd4d'); +INSERT INTO messages VALUES(1445,310558,'parse','blocks','{"block_index":310558,"ledger_hash":"732c122f1fbe6087457e195611c22bdb6a007dc96f9bcad2544472f9f83b1123","messages_hash":"ff416feaface22b7793ed465ce37823983928f7772279500e45c220745f58b5c","transaction_count":0,"txlist_hash":"56c4cf4c2b8562bd4e1721cbcfb9faa7c67e31e6f1abd95525084cc51dabf3b1"}',0,'BLOCK_PARSED',NULL,'797379ee9c14b9ccd872a5984928b1f59f419df1e0f3e15453bb56eeb1e65c3f'); +INSERT INTO messages VALUES(1446,310559,'insert','blocks','{"block_hash":"6538f282374d36af012291b3851474293437b6eadd2793e4706b0edc7fe645dc","block_index":310559,"block_time":310559000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ea42a06b498de965b8f88f47cbd34e6c3bc1d7a35cc146d00781c0b0d56d26e6'); +INSERT INTO messages VALUES(1447,310559,'parse','blocks','{"block_index":310559,"ledger_hash":"41f3711def550b4fa5f9606f5a0e7e9da30decd64b7d0ef7b474480844f86951","messages_hash":"755270e2de4235ca1404d1243515d313deb747f3212a8861f9ca94fe074119d2","transaction_count":0,"txlist_hash":"7d1ba0a6152887e4a66e003c7444c35fd14a9ed3c48455e6ccd8476ff232cb55"}',0,'BLOCK_PARSED',NULL,'b6da6af5df6785facdf7f3f26ea53770d16004ddf3c20fb2d960fcf62f5f1243'); +INSERT INTO messages VALUES(1448,310560,'insert','blocks','{"block_hash":"d3a2ccb3df7c41adc2a36183f9dc3d8f633d1595ae46eb7ad95259a1f7e85fec","block_index":310560,"block_time":310560000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'204990311c6f830955b666b92f02d29b2f88e24d648a22febb7e42930fcfc8fe'); +INSERT INTO messages VALUES(1449,310560,'parse','blocks','{"block_index":310560,"ledger_hash":"73e9502818b90048582a9f5f1cf3fd96b78acaf7cd2289450722c3edfc875b21","messages_hash":"ed86c1d022a5daf1fcc1fa039fab1054e0b1f0b45648544d778ddf10571d7e7e","transaction_count":0,"txlist_hash":"65eb78129546514584c78b914d05644975681daa08d796aab35e3662a4a9f387"}',0,'BLOCK_PARSED',NULL,'8e5df9ab64fcdae5b0fa00be0d4d355e5b0a19e00710c99678475543ceaa8f4b'); +INSERT INTO messages VALUES(1450,310561,'insert','blocks','{"block_hash":"b7b7404021ba9a00688b64289eb8953993ecc0cc75992fb276f2d7048f4b26ee","block_index":310561,"block_time":310561000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'51b8f394c91c4ed87649d6df685d0e3e60572636641f6aad1fb1d45dc358f98c'); +INSERT INTO messages VALUES(1451,310561,'parse','blocks','{"block_index":310561,"ledger_hash":"cf11cf2caeca0523aa3dc552fa0b9457b61b911c29a71ece2d6215d90bf3f344","messages_hash":"f4b42490cf53debc929fefa2320e99ef286fd4a97c36e02421f0f70bb7c76c5f","transaction_count":0,"txlist_hash":"3c09fa18d2fcc72e4afbca9679e46f5bb5f4d56dc2b5d4da3282c758819d5403"}',0,'BLOCK_PARSED',NULL,'af0ee91a9707b59f72d6108e32fec1dd7680f8652911dca605c05987274c0d81'); +INSERT INTO messages VALUES(1452,310562,'insert','blocks','{"block_hash":"4373ec06c32fbae5de86e421e01969d172b1ff84a13c8e0f069b78b0f4e7d405","block_index":310562,"block_time":310562000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'92d4aba3caa43cf7bbf80c47dbe5743114e557fc50bb44fda78f29f9680831d4'); +INSERT INTO messages VALUES(1453,310562,'parse','blocks','{"block_index":310562,"ledger_hash":"e483085d3466d9fc44711ce805c0b179183d24feb0c3b8cf346ea446b460e410","messages_hash":"0726b9f9df3c3f294168afa29fa73432e6f41221f6a5e6cdb9c50a12f04c58e7","transaction_count":0,"txlist_hash":"e06b6edc60212d17694503e28f4d8879a12b5c9f0d75fe281e0ffea001d78c76"}',0,'BLOCK_PARSED',NULL,'ce1d24eb4722ec16bb6a50a58b36e0981d160858d83f91e47435d836e5b3dea2'); +INSERT INTO messages VALUES(1454,310563,'insert','blocks','{"block_hash":"f0083f04073ed8b6cbb2eb674ad397cd7c299fda80e742615ee3751d54304636","block_index":310563,"block_time":310563000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'06a6604b251326090b9e725a55438cfcc2969f936c5c436b3c5ab3253c161c1e'); +INSERT INTO messages VALUES(1455,310563,'parse','blocks','{"block_index":310563,"ledger_hash":"5a82935dd4999d4893a379132d8a65e8f10f5c93f74b25dff1a5b1fe1a95d8e7","messages_hash":"d5a5b596030ca91a997f8b87b3ed1f09e46e168b357a03c2d7c1259b692664c5","transaction_count":0,"txlist_hash":"4df37acbbdd1a1f9c717f58748f170d7ded7f62b686121a9f821275fbb12e25d"}',0,'BLOCK_PARSED',NULL,'62c37533f1cceea74cfe318373a194e84556c59f4dbf7557b686953bd276b3f9'); +INSERT INTO messages VALUES(1456,310564,'insert','blocks','{"block_hash":"cccefa016afff2eaedf9d97a70d88ba3b74b1fa5167923852e3f2b2d4f77a7ea","block_index":310564,"block_time":310564000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'44fa2c2124b569e367b1ac8e89facd865869649103cea11c88f31aac54ea707f'); +INSERT INTO messages VALUES(1457,310564,'parse','blocks','{"block_index":310564,"ledger_hash":"842a96b665bffbaf0545f657527415cc78b1c00db057983343449085cff8d9ee","messages_hash":"4d46ff89ff84e9c35e0bfcc7386bbf0964b402beb89a4c47ea2a6523fd0e23b6","transaction_count":0,"txlist_hash":"f145d6e47e0640e5b13185eeb88286b190884347aaaced30f2a3ccf1d934b75a"}',0,'BLOCK_PARSED',NULL,'29a788e782c9a7b3ca7e296f2654516e318c5fffe6868b81488380a39b16aa5c'); +INSERT INTO messages VALUES(1458,310565,'insert','blocks','{"block_hash":"954cf72e454948ad62bda12cc3aa984191b5063c3a3552b5475f58906ed5b305","block_index":310565,"block_time":310565000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a6a14780e075ff3ef444bd0cd4169241dfab93992fd3f1c633a5c1e4719d006c'); +INSERT INTO messages VALUES(1459,310565,'parse','blocks','{"block_index":310565,"ledger_hash":"f67167b793a276efdd68c04b2dc9c0fd0b7719f2cc02f21695d0a9491a9848f9","messages_hash":"d8ccb3698e95cbbba7b5b59b1cc6d6dd8aa432575d8c1958cbf7e8d3c53288a6","transaction_count":0,"txlist_hash":"db540061e4a8c10001274daf3bd8addd05306a07836ed6369388720544aae941"}',0,'BLOCK_PARSED',NULL,'ad5eb4e4633ca96b2c5e3e7fbebf99f3871944d00957604f499e20c2449390e3'); +INSERT INTO messages VALUES(1460,310566,'insert','blocks','{"block_hash":"3759ea3d906bc1242168e23920ed00a9daac815d9177fdfd954781f3978b2a39","block_index":310566,"block_time":310566000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'83201abca19ae547683f8c8d8ead2cc7dd807efe78c81c29db5632a1d778903b'); +INSERT INTO messages VALUES(1461,310566,'parse','blocks','{"block_index":310566,"ledger_hash":"93d64cc60754b45c9d9f3f2be85c199b4ed839b85e656bf95e3c54194029a950","messages_hash":"8903d2b08fd37027d7231bac8fc5e38db49d44f8fddf7cad2890ccce157c6a7c","transaction_count":0,"txlist_hash":"bc9927aa4bb22304a9ea2edc24e6fe5d8d6b6d6f1083cd64a5098492e811f2c9"}',0,'BLOCK_PARSED',NULL,'87d0f877c6321fbd4c2cd3a7b186a9a4143f6b665435499f3ffbc4f17cdcb0e1'); +INSERT INTO messages VALUES(1462,310567,'insert','blocks','{"block_hash":"499074319cdba25e86c5e7831ddbdf16147893da356dc5d6a24c0458a9e7c431","block_index":310567,"block_time":310567000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a343c2fa4c4aec117b381bdabc89d7a5a83e7c44204735bccd593cb53f064ec4'); +INSERT INTO messages VALUES(1463,310567,'parse','blocks','{"block_index":310567,"ledger_hash":"d248eb8c0c17106c67082cf228215cb93d017bac7a894479d3cb57285686f7ad","messages_hash":"0930464aeb3f3caff5c860b2dad1c373c0dfa3de30c18c678c9da75a58bd9ca1","transaction_count":0,"txlist_hash":"98c790c8b92ac26f828848a06f10408d459b5fe2f54529f3137754d31cb103bd"}',0,'BLOCK_PARSED',NULL,'12b9494d8301ed830927553c2187bd9576774e83e1c11ad314b43816e9332385'); +INSERT INTO messages VALUES(1464,310568,'insert','blocks','{"block_hash":"ef433ae6c5e54f4c3633956efb0bec6a88f6172be961b03cba0974a5b1e8b19e","block_index":310568,"block_time":310568000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b42a947034042df892bae46cf87785d6a05102c1c4c7ea90343e9c79dc17630e'); +INSERT INTO messages VALUES(1465,310568,'parse','blocks','{"block_index":310568,"ledger_hash":"e76a89178d95044d56001e30d85c1f4e1f943d0175fdfac19151227760815bf4","messages_hash":"9608f4babf7db8921d8e83dc1453bf2cdfa416968f01aaca921736b9b9e8fe15","transaction_count":0,"txlist_hash":"570347e1c43a67562eedbef0f6d1a5e9945e293058c5277ec2ae0efb8254eb63"}',0,'BLOCK_PARSED',NULL,'84a42a87dd26a9c61cb57e5db757b07d431f2119d87f4fea658223f7d70e94a2'); +INSERT INTO messages VALUES(1466,310569,'insert','blocks','{"block_hash":"c67107bb5c30b76a2bbe9ac9613c23bdbb55e6ce7f7cde1f03c31ce685cb44de","block_index":310569,"block_time":310569000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'40373084505c3bfeed5baf143df0854fd2479bb7e6b3ff78ca683b855ce23a2d'); +INSERT INTO messages VALUES(1467,310569,'parse','blocks','{"block_index":310569,"ledger_hash":"2c130a13900eef57a42ba1b64b3152e9455eb5499936bf943c206f523990fe63","messages_hash":"27c23180188237755f7380c49637339149a7eb404f611a98114ae7239b0e04b9","transaction_count":0,"txlist_hash":"2efe30e2ed6a9f020f3ae70db81c701cfe07d9bd24451dd80294d0692c63685c"}',0,'BLOCK_PARSED',NULL,'14c370b4ebb65d34eb8577b6cfdb4f29a53bdb5a6405544fdff6bb4b6d413eeb'); +INSERT INTO messages VALUES(1468,310570,'insert','blocks','{"block_hash":"f97ec4487e00fb4a5548eb18d052f6495d01957150046f415c39bbb526e21a55","block_index":310570,"block_time":310570000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a365e90bd011bf44e17981808dc60092a03fcde583acb666d52061d20fb2d08b'); +INSERT INTO messages VALUES(1469,310570,'parse','blocks','{"block_index":310570,"ledger_hash":"23f037f4be56edae25410629cfa7a82245f0517020dc7f64faeeeef4f296bc0d","messages_hash":"6c26f23bc575e1191af502131e010deafa0ba8a1e244147758f6e65f8b6b6e22","transaction_count":0,"txlist_hash":"2ff0d7d5e4fb10d63fdab2561aacdc90f92f0df462bd652fe58f23c076242e82"}',0,'BLOCK_PARSED',NULL,'f4397f970994f8c314dc6ba089fc8843333b6bae03dcb931283c81e55a0d7317'); +INSERT INTO messages VALUES(1470,310571,'insert','blocks','{"block_hash":"b8edd44fa309c2fc1fd327461b37df751dcb713ac8475864c907aac8e79aee73","block_index":310571,"block_time":310571000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a15a690f86408afcafed8f8f61c4b99638e989aba51e785ffdbd80960fd82412'); +INSERT INTO messages VALUES(1471,310571,'parse','blocks','{"block_index":310571,"ledger_hash":"20dd9577da0fc1506c611a941f1c4650372280677c1ecce7463e35b67c0d4b76","messages_hash":"4931e3731a84a7a81aecc0f22af05cf7ef7e25951e3793e399550e48cf7633f8","transaction_count":0,"txlist_hash":"7098b0fe2e0577a4d1ccd090b3b9ffa952b5c1fccb8fbaac6b1a43635084eef8"}',0,'BLOCK_PARSED',NULL,'2276d35544c4bc0ba71994ca9fcc3e5dbefe66e35e53f542983860c66b44a35f'); +INSERT INTO messages VALUES(1472,310572,'insert','blocks','{"block_hash":"6f31bbcbb44d9fecc3fd8c1a9ded8be8c024399286c612bcefe9973ae55127b9","block_index":310572,"block_time":310572000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f296aea4458ccb68b2b6d3ace936e9e746538bc3d00d34da49831b4facbf9f94'); +INSERT INTO messages VALUES(1473,310572,'parse','blocks','{"block_index":310572,"ledger_hash":"0f770f0cf5343224f6c679c4466cd015946c3d52e100c1241b4d145da02b5e57","messages_hash":"9acd5786c5b4f928817bbd1c237a035cdec75bc0207d42fadedd24e30dcaf1e1","transaction_count":0,"txlist_hash":"e7db661177bca11155df203594bdaf815bb537d525084767ac0ed6e9fe99fd5a"}',0,'BLOCK_PARSED',NULL,'ad4fd0764c911819a05c41c0726baca5a27583868c4e9eaea9a4320832badfbf'); +INSERT INTO messages VALUES(1474,310573,'insert','blocks','{"block_hash":"302e7dfa216058a05c000242bffa09f71fb6210c8049ca3ba161b40a1af4aaa5","block_index":310573,"block_time":310573000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4e8f305cd02a67ef3e42daf7536fea83400b5b2390ba86bace84fa435620a854'); +INSERT INTO messages VALUES(1475,310573,'parse','blocks','{"block_index":310573,"ledger_hash":"17c50ede93bc8d19365a29233dd2e3e9e8cbac921c5b3d9c33e58db364fa0570","messages_hash":"3ca201953835e6df7c5b90afd9caf42f47469761ec3ce6964befce768550942b","transaction_count":0,"txlist_hash":"672565a64f687b09950572bb69dc51cc874a34d8808bc861d84bb3d227da1f30"}',0,'BLOCK_PARSED',NULL,'c986426435020150355b2c688e31a46933695f202da5ae558895be5c1f7e594f'); +INSERT INTO messages VALUES(1476,310574,'insert','blocks','{"block_hash":"c1ae52aab03437bebe96bb6eb04db2f0519f3aba4e2336b9f0d08707d92e330d","block_index":310574,"block_time":310574000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'45692b86d50c5dfc0f15a42506a8385785e71a25db6f1a0ebb74cf3b107f4318'); +INSERT INTO messages VALUES(1477,310574,'parse','blocks','{"block_index":310574,"ledger_hash":"9d7e12c5fef9a8fc703a70bb9a9534a6345e92b61ca7b48964e10d0ebb9d95cd","messages_hash":"987b4e247d7b971dfcc893298c3e73a3ec4fbff9538b34d39eee4260312ca7ee","transaction_count":0,"txlist_hash":"c681d31f5e8b1344188913364f2eac845db9d9a936b45f6eada955996b7073c2"}',0,'BLOCK_PARSED',NULL,'7a34a84046d890651843a8d1f68b0e9365de995c04edb65119de817065317a15'); +INSERT INTO messages VALUES(1478,310575,'insert','blocks','{"block_hash":"fae1bd85bf824caece55e7c4f773f6fa0a021c24f01aef4656abba41bdededde","block_index":310575,"block_time":310575000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9bb5dc1e7bdb7ce66d71ff0fc80bacf5e9e9fb8c65770dd9e09f4d8d4b4db781'); +INSERT INTO messages VALUES(1479,310575,'parse','blocks','{"block_index":310575,"ledger_hash":"29c97edbce573c66330f01bf5793928f7dd3e176f34457a4f56bac60234bbacc","messages_hash":"3ef1e9a957078e2eef58b342e1002d04f7213820a7a1b0af690e45574e1848bb","transaction_count":0,"txlist_hash":"3ea5d34d65420a54fd0a1c8424f3afcfa5eb40707eb42088814218583ff36cbd"}',0,'BLOCK_PARSED',NULL,'dd0af465db62462637b601c8cbb708d3d33f7a64be0a45873ae12e53cbdf460a'); +INSERT INTO messages VALUES(1480,310576,'insert','blocks','{"block_hash":"b46dbd0ecf5ba9a7cd8f0a556f418e08d369670a35e96123144dc51c694ae7b5","block_index":310576,"block_time":310576000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'12645ba3aafd49e5e791ba1a73e62b11888269c61c04ff61cb0fcdfd51c1d7e3'); +INSERT INTO messages VALUES(1481,310576,'parse','blocks','{"block_index":310576,"ledger_hash":"f7b2ff06d67c9d0868b628aa07c78f7b17fe8a921a3c6163a4e86661cc6cbe8d","messages_hash":"b0e1a5598b60f79a4897f20ddf6a04ad3bbd4a7bfbd64090d497e13edd2156c7","transaction_count":0,"txlist_hash":"19eafc5f2e2d7ec141f9f2bd1d5c7fb0b380adead15654553498e3af5bba0ea2"}',0,'BLOCK_PARSED',NULL,'a2df3709affbebe220cdeae4689cfc785b4c5f01bca162da083b2d5f6f32bc24'); +INSERT INTO messages VALUES(1482,310577,'insert','blocks','{"block_hash":"a4f1cfcaed69f6ca459db42cd60607aa96b3e593d635bdeabb28fa1875d7a7b3","block_index":310577,"block_time":310577000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9051e63be76807537a0e63c034d81ae13badc03ebe824e7c340a1edf4eea100a'); +INSERT INTO messages VALUES(1483,310577,'parse','blocks','{"block_index":310577,"ledger_hash":"789149426dc48cc79f009d46944ebcb31b188c2ec852de9cf6b16c1f48182aee","messages_hash":"052328d5b1381128509f7f05f0bfd68ce8a0f9ce5ff8ec18f344bfb2f47b4df5","transaction_count":0,"txlist_hash":"be512460315bb9b670cd1b9e78165df49fc17a8851dd7b66bb58a0e83bb4e487"}',0,'BLOCK_PARSED',NULL,'6f0a4f0c23b80ffa02a597e971b34566f626a470488ae5095b39cfc13eb5aa38'); +INSERT INTO messages VALUES(1484,310578,'insert','blocks','{"block_hash":"f28588cb2aa2711238246cdc3400480d672aa6b7746ede9ba963afdae507e1bf","block_index":310578,"block_time":310578000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c876bf3a97c56cb147be26f81e031b5ce3131081c2adab8de2d63ebd878cb40f'); +INSERT INTO messages VALUES(1485,310578,'parse','blocks','{"block_index":310578,"ledger_hash":"f402148b83a28bcc4c11346044f474455e0af66308638f5a67ed3fef0edbe55c","messages_hash":"ed0c8d5d6febf2ee686f5be4c96ab45a58f8e4616716c0bd6b16df5e7741aecf","transaction_count":0,"txlist_hash":"56dee75f67260fc83f55a276ed430bb1c9495d91b54d323a3d0cc427686a85c4"}',0,'BLOCK_PARSED',NULL,'ffa97cec7e666b6d03f9d5bca205ad59908bf8d591c54ef0df876cc187f44dc8'); +INSERT INTO messages VALUES(1486,310579,'insert','blocks','{"block_hash":"672e0101a2b0f7c963627370c590bca6d800483e3b379a774840789eeea36c38","block_index":310579,"block_time":310579000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'67e3bdacac1c332d8116b2f027dfe09f8b3beb4f043a19a928475bad69360daa'); +INSERT INTO messages VALUES(1487,310579,'parse','blocks','{"block_index":310579,"ledger_hash":"2e94dc048ee39dc75874d6221b39d2621702e0f01eb8152adbb1e3799fe95393","messages_hash":"e155d7766cd137fd85712537c0ebfdada610afc05b88c63f84dca3edd64f36c9","transaction_count":0,"txlist_hash":"c9a5cabe5916d0d169e06c7528835c5fcb00af3515e0c44e5e17c567dc52f1ee"}',0,'BLOCK_PARSED',NULL,'aa1b23e7dd2d9bf045d066add03a6578c94236598e90d085398a710e59270f2a'); +INSERT INTO messages VALUES(1488,310580,'insert','blocks','{"block_hash":"e878eff75f69c2a921fd855716f6f19f7122bc62e7bf7a6f24ff5cb44ced9e13","block_index":310580,"block_time":310580000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f565d71513a4d6b0b79304d415d372b1564377d4d3be31409fe2df47ea9e1eba'); +INSERT INTO messages VALUES(1489,310580,'parse','blocks','{"block_index":310580,"ledger_hash":"7ec943a775508a6b3bb37a7d9438da6c76eed1df84d715443c0b001ff5726849","messages_hash":"75bb6e2085e39e86e2a2edff6a698f3adfab3e8f3e00f21ae15d9d1dd1da8838","transaction_count":0,"txlist_hash":"b484963a876ccbf57728287a7cae8ad916cc4523219b7f2fd6c42bbdfaa5ead7"}',0,'BLOCK_PARSED',NULL,'1a001ac91c5c69d0d3773e9495512adc0d88d68240726129fee328ffdca964db'); +INSERT INTO messages VALUES(1490,310581,'insert','blocks','{"block_hash":"baca309aa48d77563c8b563edf6fb0cbba1c155f5e26dca1d2bcc89dce14793a","block_index":310581,"block_time":310581000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9c3f66c68660dcc968eae9dcd6421a77e6a7cfe69b7953c328504af55dfcc57c'); +INSERT INTO messages VALUES(1491,310581,'parse','blocks','{"block_index":310581,"ledger_hash":"6fce0f8faecc5b5438c5ad8d161c013a769483d8a4f0d0f3c5f182529a93bcef","messages_hash":"b57aab80dcd8a1f97d408a2836c0c9a1aa71d39befa8a7e2a91cf2aa39dc7aed","transaction_count":0,"txlist_hash":"301ff101dba0c28f5603b3776bd17f373f30a5e77c8e619dee30e323322e4680"}',0,'BLOCK_PARSED',NULL,'60ac9c4208634ee32a86fa1f5bde0fc88115bc137d23bf3ea52def841bcbf399'); +INSERT INTO messages VALUES(1492,310582,'insert','blocks','{"block_hash":"08710916c8a006532a3c90eb7f9e07270be7f6c9d787e5d5f4bda22fa2e5e34c","block_index":310582,"block_time":310582000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'145bb5e6c7131237b090cf1e9d14fb2850b95814a7a80b437cfe8b9e3a95481f'); +INSERT INTO messages VALUES(1493,310582,'parse','blocks','{"block_index":310582,"ledger_hash":"51b642d4f636ea7df05148acc2c57e16e721585d33f0fc0b33ef9e316e4d6fc8","messages_hash":"cc317aa0f9c053fc633f86c0df716b491e4088bb50662a0e9320eb5200ad27bb","transaction_count":0,"txlist_hash":"3e8a5d33e8340bc7e1c96c95f4eece8320807dd01e7f66a53f9afbcd26b19fa3"}',0,'BLOCK_PARSED',NULL,'18cfa8e4c19ff21f6a7a36996869fb8d3a121c58e7da3f63ec1d84c9373366ce'); +INSERT INTO messages VALUES(1494,310583,'insert','blocks','{"block_hash":"22fa9d567a2e559c2f6b8d951340420df5e1bc5eaf5fbd6dee6c10e60798bfd4","block_index":310583,"block_time":310583000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ad023bbf7c2cf45988a9134954b4a08e482d970f03bef160336808ba29fc78e9'); +INSERT INTO messages VALUES(1495,310583,'parse','blocks','{"block_index":310583,"ledger_hash":"780863ca857e09c578d26c270a2f4d6bf52ac35af375a485fe16ed91eb8a314b","messages_hash":"2302777ed825984d15cd84ae399f6553562a92bf6216d9361df95df95cabcb88","transaction_count":0,"txlist_hash":"60d468a45c64869425508b88e3fbe166690c3009fcf33e3292fb2da145079044"}',0,'BLOCK_PARSED',NULL,'d011f2fc21bc0ca9e843ed2294c21e102c73b569d006731ed6742a4aa1df8276'); +INSERT INTO messages VALUES(1496,310584,'insert','blocks','{"block_hash":"db5a54107f56229edcb84410f79b18d41620ed013f0b51f6889a728663010d9b","block_index":310584,"block_time":310584000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8aba8811fb3e87b7d818db5d9c82b3b5e11ad9c0f7db7d0977560b883c1625cd'); +INSERT INTO messages VALUES(1497,310584,'parse','blocks','{"block_index":310584,"ledger_hash":"43ac9ef4d0ecfc18505524d3aa7ff32d32897b1de8dccaff5ebad42793a087e9","messages_hash":"477704e184f85c58aa8fca58cad4430e0be8d8fce5ec7e47d6fecc88ed2a4dda","transaction_count":0,"txlist_hash":"ebebd15c29221496c6547f786ec67bfe72278cbb8e15fb96737a30094880557a"}',0,'BLOCK_PARSED',NULL,'023ac2c14c859722b5755b9d5488cce68eb500d2d1305f6fdf401a474e0fd90c'); +INSERT INTO messages VALUES(1498,310585,'insert','blocks','{"block_hash":"a12f61691951107df80775a0d8e94642d242ecc70ff8678190f334256fc8decb","block_index":310585,"block_time":310585000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5cedd62f88bf15ed1ee57ebf84d5f77c3160f3c7c208582393a352b078bf9ca7'); +INSERT INTO messages VALUES(1499,310585,'parse','blocks','{"block_index":310585,"ledger_hash":"eaf8b429e88d71173b42debab7bb0ae02a8e6e36e411ad8fdb942400af3c6726","messages_hash":"fd0e263a608f618864f3bfeab5613593e755bcc5388fdb9acedb844ffeb9bdbe","transaction_count":0,"txlist_hash":"733e1df46cad658a76f3ae6bd51acb09be0932fdeb5f92e99b94bd5bec78ecb0"}',0,'BLOCK_PARSED',NULL,'fe581083f8c833bddceabb65d92706da4987e404f960690ee34bf123c13418fb'); +INSERT INTO messages VALUES(1500,310586,'insert','blocks','{"block_hash":"c24fde1785a09cdb7279d4a6328ba9606d7efbdf5d907a5754b26af490ed37a7","block_index":310586,"block_time":310586000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e359b4e6daf25511632be6849c900092dfbb1587a59566a6121c014f21285abc'); +INSERT INTO messages VALUES(1501,310586,'parse','blocks','{"block_index":310586,"ledger_hash":"a80f5b8533d49f0b56499746750033414df96442420cafb186344dee727e5f9d","messages_hash":"c1032a009c3a410ad0b8ffe6eedf2766db9f6e6b548fabfe7951e137c404825c","transaction_count":0,"txlist_hash":"3ead47e29b52236c485f6461d73c47c076f23aa5c96d2462adbf265966426f5d"}',0,'BLOCK_PARSED',NULL,'2b5068cccbf894d2656d1c570162d11b9772619cf4f6a46c7d2b8ff295d64354'); +INSERT INTO messages VALUES(1502,310587,'insert','blocks','{"block_hash":"6fc7eacecf09f9a15212a7ca52cece2438c1d6fe4df61edd36fa82cd0ee82baa","block_index":310587,"block_time":310587000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1a656acb96ade2e91fc09d981f994916a956cbf7d9522fe3ac4b428b7effb96'); +INSERT INTO messages VALUES(1503,310587,'parse','blocks','{"block_index":310587,"ledger_hash":"b9d78fd96468b4739d9739d31ae4d5d3986928428be9e8fb976c78eba53be95c","messages_hash":"1a88a340da7120857a5cd0426c8a21a9f09aca0406c3dda7351e227c68281f84","transaction_count":0,"txlist_hash":"94d69dc7ecb628956923ed4d570fe0da3ef0c367066d76252f656f3774347938"}',0,'BLOCK_PARSED',NULL,'d1036abdc5bbb8eead5b0456d4a0ca1cc74c8e7dc860dea4aa6c3268b59b2cb3'); +INSERT INTO messages VALUES(1504,310588,'insert','blocks','{"block_hash":"d758bd6b4eb728922d4f5f766481b7ba1fd6889cfd047bc6356fee12328457ff","block_index":310588,"block_time":310588000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8380022e9edbb2a3f3b33cc616a668d7afd6ba116c5d33a0c2662ae51a62713'); +INSERT INTO messages VALUES(1505,310588,'update','bets','{"status":"expired","tx_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef"}',0,'BET_UPDATE',NULL,'35f0b9696be44c3f306fd87efd0102f9d7216e0a9b61f6d9e09d8f3f328c4101'); +INSERT INTO messages VALUES(1506,310588,'insert','credits','{"address":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM","asset":"XCP","block_index":310588,"calling_function":"recredit wager remaining","event":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","quantity":9,"tx_index":0,"utxo":null,"utxo_address":null}',0,'CREDIT',NULL,'b6f46609e9c50e2a6c95c893f30810aba0ee1a5c5b6bdf615c0577667f952d8c'); +INSERT INTO messages VALUES(1507,310588,'insert','bet_expirations','{"bet_hash":"41e821ae1c6b553d0fa5d5a807b2e7e9ffaec5d62706d9d2a59c6e65a3ed9cef","bet_index":488,"block_index":310588,"source":"myAtcJEHAsDLbTkai6ipWDZeeL7VkxXsiM"}',0,'BET_EXPIRATION',NULL,'ef0d52247b39e6020b00f560f41d96a9ff0c25b440ac74d89bfbaa2572514470'); +INSERT INTO messages VALUES(1508,310588,'parse','blocks','{"block_index":310588,"ledger_hash":"32a53fd88a5a1ac75fbae59c2435d2675cac767dba28b5292976ba947bebc8da","messages_hash":"e603eb87468f13133af8ee8905cd79b4094edf308f03b768d686f1185b9f8fe8","transaction_count":0,"txlist_hash":"b50620604ec72308ff19abeebe034e9ca8d732d2d21e765ff2ff78940076d62a"}',0,'BLOCK_PARSED',NULL,'a5923cd7766c1ee8cea0a8f4027ad881042ecd1528d603ab128b6200375bd509'); +INSERT INTO messages VALUES(1509,310589,'insert','blocks','{"block_hash":"4574c3f408ae39752054a278d5b2f207153f2d55e5ed9278610285caedbfb5da","block_index":310589,"block_time":310589000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5285e2aaaada6e30919a9209e2d31a4fa48c86f824ac6485c90466b3bace4354'); +INSERT INTO messages VALUES(1510,310589,'parse','blocks','{"block_index":310589,"ledger_hash":"ba48010ee90045481ae3133726ecf28f339883c85d598c32280540a64963addc","messages_hash":"31982deaee21c7fba0d90d4e6807488b037f87fd397b99b48d9008db996e4d25","transaction_count":0,"txlist_hash":"78bdf68341d15bca6e325624feb58f527fd0256d044dc90dfd0c5874dae32f4c"}',0,'BLOCK_PARSED',NULL,'801ae54466eb54871bf3e93eaa1226138141becdce8a62eb4105f84499ddf406'); +INSERT INTO messages VALUES(1511,310590,'insert','blocks','{"block_hash":"7a0fec7523698e15240595c867317fd889c109930cbc688e120af4b990d655d6","block_index":310590,"block_time":310590000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'78472d4d486ed1c09d8811f86d8b90b8950e2282be768a5f61c07a6613fb54ce'); +INSERT INTO messages VALUES(1512,310590,'parse','blocks','{"block_index":310590,"ledger_hash":"793d25ea2df208571c88ddea2cfa75ab242d069dc76a63599cd5fa32ecd16054","messages_hash":"c33903bf84c1f7d868c08ea24c5b92d236374fc8b5685f21ea2b04ba4fad819f","transaction_count":0,"txlist_hash":"c4f9e894ebaaca5ba7bd4c20106b670025db1438df60700fdb4d69032277f740"}',0,'BLOCK_PARSED',NULL,'d551c392a609b467d5311d95831546af20f5358a9f05d4a14b5a8e532b6771c4'); +INSERT INTO messages VALUES(1513,310591,'insert','blocks','{"block_hash":"9824fbb407efff28304111890e995bf3c350f965fb2ff6df988d9a4c8ccd8bf7","block_index":310591,"block_time":310591000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'03f6cea83b49d534401d97f9c8c1633ff4110325fafcdbca6ccd41b6cfa9c6b6'); +INSERT INTO messages VALUES(1514,310591,'parse','blocks','{"block_index":310591,"ledger_hash":"4341b0c328eac2af3b076dd176c2209247a5c06d91a59de1acc286728ca1305d","messages_hash":"69e60840160bafe83b7e5aacf58a1e1b52a0722d583b1df6264d4c27ca9da445","transaction_count":0,"txlist_hash":"a3af6a21611a7407ff02eab2468c377d29814f84add22f19f3fc1bfbe0d9694b"}',0,'BLOCK_PARSED',NULL,'ca60ee15e1076eb64aadf99317f0d4a7e4ab955e78933da73651014ab6145dfe'); +INSERT INTO messages VALUES(1515,310592,'insert','blocks','{"block_hash":"d6adfd9b31ef935e54670c6335145a3b7f57b14f7c028c2467d352e1c5fd4cc3","block_index":310592,"block_time":310592000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a6abb9db3c96a10650ba4bb86f97ff42250fda1fec7031ba436c9dc311ca1a70'); +INSERT INTO messages VALUES(1516,310592,'parse','blocks','{"block_index":310592,"ledger_hash":"8ee09223831cabf92339eb3147f3d4133a6150e2cdc890dea3ae66168ebcd0f6","messages_hash":"0c49857211980bcbd4298cadb68a2686687807f93ccb8e93a4d4ec3e5b020fe0","transaction_count":0,"txlist_hash":"daf91d91dbbe9f77915568b355565696d4da404095e6b547bd2db3587113e403"}',0,'BLOCK_PARSED',NULL,'909ad9da9ee317fa1ede3877cec185ef56158738c0d02d060d812e66df1f33cd'); +INSERT INTO messages VALUES(1517,310593,'insert','blocks','{"block_hash":"97931b3dd08a38f192b673f46ada9365fcbca0b1f63a0a5989f6861062f9c22b","block_index":310593,"block_time":310593000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'704be20e23e38b20cb612176cbb0b7519fadb99ed348a3ce3b3405388b039678'); +INSERT INTO messages VALUES(1518,310593,'parse','blocks','{"block_index":310593,"ledger_hash":"24295e885f53005538cf54b0ddc545ff2c0e7a3e70e3a87de4b9b11178ab80d5","messages_hash":"2f39341e8cd5d2903d72da92c979d55af20b6497ca26357c79d762def34c6f4e","transaction_count":0,"txlist_hash":"b5c3b0df9648788b62ccf2fc881924438c4409b828117e2db502b42f2aa800b8"}',0,'BLOCK_PARSED',NULL,'feaaa30f4cb2526796a0d8422144c1b0ecf37a70b2443ea45d403ec74af6cbd6'); +INSERT INTO messages VALUES(1519,310594,'insert','blocks','{"block_hash":"f8146455e4841830c1bc2265c8f4c8972fbe46a1db89dc0dbf804d1a10bd9015","block_index":310594,"block_time":310594000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'027c84507b48637eaead8fb127509a7904ce3721f82cc3ea5d1aaa33d9427642'); +INSERT INTO messages VALUES(1520,310594,'parse','blocks','{"block_index":310594,"ledger_hash":"0e1eddb36733f22e41d01490e31d8ad8711af485f9644478a2a8820f09793e33","messages_hash":"2eeff5a2d51d740049b0f911825572f02068b682835aae6cfb2512436cfc67ee","transaction_count":0,"txlist_hash":"05b3baac4f1a13d3b2f287b6660be568bde7646bf4d2dcbd58928f8be1b5751e"}',0,'BLOCK_PARSED',NULL,'d19495326381811c85137ec123e110d5f5fa1ddde81ca6aebbd9d2a8d1da48a7'); +INSERT INTO messages VALUES(1521,310595,'insert','blocks','{"block_hash":"0402e45e9adfbb711dcc3a959e07fb2b15082cd724943cb323892cd3a5ac9d66","block_index":310595,"block_time":310595000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1f0f2013e12d2bc3690a0f65247b8c0645b604f09e64032ea130da1fa52dd0ba'); +INSERT INTO messages VALUES(1522,310595,'parse','blocks','{"block_index":310595,"ledger_hash":"8fa3c4593fe914eeb79d9b864761ee7dd5d2c799ff5d1df4f0ec6cc335e93ac1","messages_hash":"4c40ed08ec9690b96c40cea703d7fe4ede60b89e194b059442ee9a4375b80d47","transaction_count":0,"txlist_hash":"2bd0b4f8dcf78006ab0a7aa8dd4d71c6598e9162d772e84c4701bc4c8d45f6d0"}',0,'BLOCK_PARSED',NULL,'2e7d5ffe756bdf073bc2c47e3850832681eeef7388b66832817436c739dcd742'); +INSERT INTO messages VALUES(1523,310596,'insert','blocks','{"block_hash":"1dd4393d2ce505ecff715945e55c1bac040fae5758202c1bdd9c8f67c4d3f688","block_index":310596,"block_time":310596000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'00789ef95cc349d5d9b30c88308be9fd7df97637c8398cd8735b689f460ea3b7'); +INSERT INTO messages VALUES(1524,310596,'parse','blocks','{"block_index":310596,"ledger_hash":"0f02de76564828192ee58fb6f07b3939c53417f50f5df43d741a742ce8c2d8cc","messages_hash":"2a1bb66fde239c20c9d94e667f356c175888fe279addd6d99596a8cc7fabf423","transaction_count":0,"txlist_hash":"c7a197d075a2b5d5bd3267ae10eba1596cbc93bcbf77830b4d32230c27fa72fe"}',0,'BLOCK_PARSED',NULL,'82819083bfd7e80818e422bf0d933ecedf2267d16cabbed59c238f63dad07c1f'); +INSERT INTO messages VALUES(1525,310597,'insert','blocks','{"block_hash":"490dd65dd932906cc5da68c8b37dcd2827a261db1f32c622aa33ceb6000a79dd","block_index":310597,"block_time":310597000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'6f21831fe0165013284f8de70e4f4fa257e6a8213af19321ed5844c99b7fbe39'); +INSERT INTO messages VALUES(1526,310597,'parse','blocks','{"block_index":310597,"ledger_hash":"dfd60db3f37108d2c636a3204e7e32cad4d3c888aeb710e24d24e08731df5097","messages_hash":"650282ef5f9baf8c2c7b9eb59c1d4cbecc202344737aa65568d7e59b4ed0bf4e","transaction_count":0,"txlist_hash":"c648adc37b10d6b7c9fc0e1f2a4b5c8ff9ec86fc035e4124c576d8f118c23503"}',0,'BLOCK_PARSED',NULL,'559084bcf036807fb153331776c84fdea9e4151e8f80ddb659bd5ba20cc58f4b'); +INSERT INTO messages VALUES(1527,310598,'insert','blocks','{"block_hash":"8265b2da5687b7848f740cbbffabc564923b47242e3d64bd058724969323f44a","block_index":310598,"block_time":310598000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'febeb2e845b963a9d894a6ce2d6390abe8331ee55b6ba3bad83508f04f7cd620'); +INSERT INTO messages VALUES(1528,310598,'parse','blocks','{"block_index":310598,"ledger_hash":"870b9172895279ddf0eea7c295ac66ff499b1ad52652f763d6a3935c2dfbed8c","messages_hash":"e0c61e40e47a3fc873b62e088ca9e2801bedbfc90167beb06c941ef58921aa7a","transaction_count":0,"txlist_hash":"b23f0702a5066982b19875ee3aeacce21c97adacc44c5ae6bc1be94f3edcfc93"}',0,'BLOCK_PARSED',NULL,'d57058cdabe4f2b4293fcd03ce238a9a73c4ae6135bfad1f5605650161ccb640'); +INSERT INTO messages VALUES(1529,310599,'insert','blocks','{"block_hash":"71c5bf880161d3c13b2fb887d3d034ffd62ce1962ad91036b75241025baedeb8","block_index":310599,"block_time":310599000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9cb88624b94fad8dbc12ebe52f4af5b2d8fbdb53ea52c5b1852634425414cd1a'); +INSERT INTO messages VALUES(1530,310599,'parse','blocks','{"block_index":310599,"ledger_hash":"58ed63759b5f5d48819d1c924e25036764b728f9d7b83b08fd368fa3e1bdd332","messages_hash":"f119fc4c42d3c05d42aec3d0e5139ea5ab52ba917495e0cd0eb289cbfe7c487f","transaction_count":0,"txlist_hash":"cd5848644ac2a8bf3fe63736a96ce91345ecfc54c943e72e6e24b8cde5ced243"}',0,'BLOCK_PARSED',NULL,'63de3682cbf600fcf8f71ed24b3729c6ceccdc769a3057d1c6b41ef139e0155c'); +INSERT INTO messages VALUES(1531,310600,'insert','blocks','{"block_hash":"f91274374a64d9fabc3b57d401524d00c7559e7277760df594bd856380b7743a","block_index":310600,"block_time":310600000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'86b61256af3179bc85cb21e4cfeaf8ee9baefb604ae0461172aa0b4392b33749'); +INSERT INTO messages VALUES(1532,310600,'parse','blocks','{"block_index":310600,"ledger_hash":"5ba20ac629f2846a58a347946342f086b1529b3d4c19a6a93cb37ce2f6c781b7","messages_hash":"2445d96b5d8a61a70128b03e2cb6fb31a5912bea043a904547964ea28f708839","transaction_count":0,"txlist_hash":"8d9bdfd600f2ab1f9df6b51b3849792e10973ce73b872ab6e8d6da2b5606af53"}',0,'BLOCK_PARSED',NULL,'cf55bd1532f3a0cf83153f4007068bcd3dc49cc9ac52eebafaf88596896443ac'); +INSERT INTO messages VALUES(1533,310601,'insert','blocks','{"block_hash":"7fe9c0f4363e78dda78e932fedab2043c79dbff404e542d13913f3cfe98509cd","block_index":310601,"block_time":310601000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9fb3f91200410053f1b6ce8877aa1271b2b1295a99019dd6979162856003963a'); +INSERT INTO messages VALUES(1534,310601,'parse','blocks','{"block_index":310601,"ledger_hash":"98094278d3706a99b1a5bc02498e33f8c316315a607f014e1a057a2baad922f5","messages_hash":"d19d246c74a88c90808bef18c523c5b3613fa816a895554d839b02c455cfdfb0","transaction_count":0,"txlist_hash":"2acbb771db97fb8e8f0963b813502965908a680d2fd86446a33be34e3744e81f"}',0,'BLOCK_PARSED',NULL,'5f17b9733222f6a506f0e0b90d462425797645b18e63f54ed649a2fbfca146c4'); +INSERT INTO messages VALUES(1535,310602,'insert','blocks','{"block_hash":"c7ef51e67a29cf83317e0ea235c1680749d256a9c0870e560560bd75de63efe2","block_index":310602,"block_time":310602000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e3c1336baaddee92afae07f006f41b1b4e2772ab99d97f843953abb37bbb6103'); +INSERT INTO messages VALUES(1536,310602,'parse','blocks','{"block_index":310602,"ledger_hash":"e3e9805428639bd0806e24007889b60b4f5e3b399bfba6d0ff68ed0c7363140e","messages_hash":"0521d9a32de6ba28d8da96885a70c130a2359283532d29abf3d876131b2a16ee","transaction_count":0,"txlist_hash":"243a393f2fac01b0ee4e10351a0cdd703509ca63d66654bdf578f3eca689421f"}',0,'BLOCK_PARSED',NULL,'cbe7be68fb25d055ba83b78779db4c9397db5544d5194055f54cef81f8b34818'); +INSERT INTO messages VALUES(1537,310603,'insert','blocks','{"block_hash":"44ae66cad2a5f9beff6f9164db3055de3c1e953a3d37a73fa650c013d16ef05c","block_index":310603,"block_time":310603000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'49ae1080db94b9e5a287194942d95866d8c0b685af7a6ab3991c54dbe3093214'); +INSERT INTO messages VALUES(1538,310603,'parse','blocks','{"block_index":310603,"ledger_hash":"3ec5123124b50e2943741319254ebe63d5410a3af3dc56fab3b1d11002453979","messages_hash":"e80209237ba7dd831b0b5abf34da25580b054e7770cdd121938312328dc3ae93","transaction_count":0,"txlist_hash":"6bd040dedbdefeb0e3398fb4533bd2bcd99edcbcaec5319ccde5e7a5403017d7"}',0,'BLOCK_PARSED',NULL,'dd0bbed6fe1753889ef9c81dd3f6427434d8595f741e0eea789a3ceaa3deff16'); +INSERT INTO messages VALUES(1539,310604,'insert','blocks','{"block_hash":"36751b935b0c18b816f86d5a2ca16469a46ea41bf002abde994d15597ae9665f","block_index":310604,"block_time":310604000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a997ad1980da7d674743c6bca6d497e6a5354d89b1b2a908927f1e0b715b2e48'); +INSERT INTO messages VALUES(1540,310604,'parse','blocks','{"block_index":310604,"ledger_hash":"02ce31a767356b8c5c3cfa50aef88e420bc0a0026a6b5a9de323b8b6522ddf26","messages_hash":"ffbc78112dc29cf522659ee62417c9b38dce46ca9cf53540a5c2e8025e38b79f","transaction_count":0,"txlist_hash":"50dfcfb2871929ffce0a82a85a5ee11a125109a774b34a9ec127ab6bfdfa3b8c"}',0,'BLOCK_PARSED',NULL,'c43d1ce44f4fa116596544dff8b935e1531da7891292b2c2b27924780296c90c'); +INSERT INTO messages VALUES(1541,310605,'insert','blocks','{"block_hash":"ffa6edcb68ee2bcb93f121f0a1cb1012559f2e38752f45034b03deb8c8947aa9","block_index":310605,"block_time":310605000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b6edbaf8cd97d48bea1c1e0be52680239bcbddd3843359790e9db54d73614542'); +INSERT INTO messages VALUES(1542,310605,'parse','blocks','{"block_index":310605,"ledger_hash":"cbfc2eb6739bf2d671ac0196c78865612592f7629caad2466e303a7c14af9b46","messages_hash":"54913ed142c2dc6b0aac7b480b4c1ffdeb562702185dd44deff40f2f76117d73","transaction_count":0,"txlist_hash":"3427c9e8c0ec9016a521b4ec842bb5cf3731cd747b514a553f222e44a3d3def3"}',0,'BLOCK_PARSED',NULL,'7844595b57da168b9b2a41fe4ea5559d52ee416a8323e91a83a42280aa1f52d6'); +INSERT INTO messages VALUES(1543,310606,'insert','blocks','{"block_hash":"9f9e9673b0b0fcd2730c3fca4c241b6f506ac17f7768eb40ae1642614c4be93f","block_index":310606,"block_time":310606000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cf9921538a04fbbe1b8f6b5137ba42ed40f8d821cdee10f2af335b4d424c4ccb'); +INSERT INTO messages VALUES(1544,310606,'parse','blocks','{"block_index":310606,"ledger_hash":"2266c4b7443b474124516bf19dc082d2cc547ae7fcf2027bed2b1360eb04296a","messages_hash":"09392d7614905f6795ff899e05eca8e8a332488f1f68772117d36a48e606bf78","transaction_count":0,"txlist_hash":"c11cb503ed27d64acc8b2363a34617edbbf35bb701f21b87c70eb4966f7eb035"}',0,'BLOCK_PARSED',NULL,'5e765dfeaa8fbd4228ababded999d3ca9dfed1f52e6c900babdcf88dd7f217d4'); +INSERT INTO messages VALUES(1545,310607,'insert','blocks','{"block_hash":"ea8eb241c2a5eefc21de5385132dee695fdd7a496679935c4de015a18c2a116d","block_index":310607,"block_time":310607000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'22bf8198fe2f31bd70881e346333dd4fb9ee642af8b94c9ad0029ace8eadc842'); +INSERT INTO messages VALUES(1546,310607,'parse','blocks','{"block_index":310607,"ledger_hash":"8111c3319cff47fec3e4aa7c007516bcc3dc68235e7fd8d192e3894f093c035a","messages_hash":"cea19b754ade705a9372f9866b0438d0c81312035cdbb9d7c778d38c27e95953","transaction_count":0,"txlist_hash":"12b12d0888cd3a82d149f4f8c136000c26a49f97f318c76dc90fcb4996bc3064"}',0,'BLOCK_PARSED',NULL,'8cda5056ea9543c3afceae03fbd63b296a87bc6178f1bdb5518b89e6a800c048'); +INSERT INTO messages VALUES(1547,310608,'insert','blocks','{"block_hash":"ab7b08803f979b35074aee71ce1b0f68bf535632798ffb7c5c5483ef5a16f846","block_index":310608,"block_time":310608000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'99b897a39e9b627ff885ac710ae41468bfcfe6ab05f02d2609393c25130f7c71'); +INSERT INTO messages VALUES(1548,310608,'parse','blocks','{"block_index":310608,"ledger_hash":"399589784086ed7a16699c38c2d9ff69cc2e055fb069f13f073440109ae97c7f","messages_hash":"659f7e678a16e0a5518e51fdffb5b012425308c1b6e9612c7288ec3ee7bbbe3e","transaction_count":0,"txlist_hash":"9fcf0c090ae0aa70fee65fa83a35cd15311ef460f5fa501f6f842c29e2865856"}',0,'BLOCK_PARSED',NULL,'6b48f574ed8a5022163f379fa455b40d8f9da552d514cbf324af40f85fa9ed51'); +INSERT INTO messages VALUES(1549,310609,'insert','blocks','{"block_hash":"83dabb41813634b8dd95b45762989c7a77492fc2ae38b5d0d098fd3fe9946455","block_index":310609,"block_time":310609000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'dfcdcc30d21950919baf2dd3959ef455706c388c46212dd2fc6dab9c2272a815'); +INSERT INTO messages VALUES(1550,310609,'parse','blocks','{"block_index":310609,"ledger_hash":"425f42bd35b0e93e586ba8ca0c58da2c86d8e159d444f2b14908ad44248379da","messages_hash":"2200500287fb87113cec48ac9056dfa4b8f058fa9ce528e418633ee0b2cf4c0b","transaction_count":0,"txlist_hash":"7e09b9bc2a4a6bee758dbee3801455b3c84998bccaa40ba8e1a62eed98fdf40e"}',0,'BLOCK_PARSED',NULL,'f98d20d9b43d54de282ca42d6cf47c6f742451825c355d4eb883357c0b23c620'); +INSERT INTO messages VALUES(1551,310610,'insert','blocks','{"block_hash":"f1372a9d1069265cafe8a06fd5ed5493d7b45f2c2588c0eebf8960c7fb53b7b9","block_index":310610,"block_time":310610000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'84778346e41afb1d6b479375e0960225a2b0b6beacd8e5a8a90d7998b04053c2'); +INSERT INTO messages VALUES(1552,310610,'parse','blocks','{"block_index":310610,"ledger_hash":"791867b9f8ed751e093bf724c48f7c12b387e9264d17028770bc76e6a47c1449","messages_hash":"b8d5744541768ffc79d1039803678428c7f21a5e6284c8a699ea82903e0e77f8","transaction_count":0,"txlist_hash":"b5615378baa3bd212119929c04f03e2ec798efc02eaf92232b393e1cebf21cf4"}',0,'BLOCK_PARSED',NULL,'3e1386adfc6baf4942a0a0d9d72846d2992aad2646b99598dff1e93852af475d'); +INSERT INTO messages VALUES(1553,310611,'insert','blocks','{"block_hash":"6d88122546a07e75804a8c89225b63cdf5fa1a306b0eb720def88aa00d927d89","block_index":310611,"block_time":310611000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1dedea01aa4e2b00624574f803ea3db965f1b3b31fc13e1570765ca360f9d33a'); +INSERT INTO messages VALUES(1554,310611,'parse','blocks','{"block_index":310611,"ledger_hash":"c8ec71e958f8782a2c5b5fbc93750b6b8a5fe444e9bec83b0f58897891cb5b67","messages_hash":"412e5b533055e47a37d8186b21f4ede04e8d2cddb5542be7dd6983c9c6599261","transaction_count":0,"txlist_hash":"f026a93859c733bd910f0341d53802b2443e5efe0a7a7dedd3b0e3bcb7cd6f07"}',0,'BLOCK_PARSED',NULL,'1318826db86121311fac27c11a1233b440b11ca604429f031fadd11c1e8d94b1'); +INSERT INTO messages VALUES(1555,310612,'insert','blocks','{"block_hash":"08df9f68813183cf897db14100b9d6399678437338edc8578dd4998420a3c0fd","block_index":310612,"block_time":310612000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c78a07736d85c2323333f4507ff1e37ba6bea2096466ada9a6e66737fc7c2c58'); +INSERT INTO messages VALUES(1556,310612,'parse','blocks','{"block_index":310612,"ledger_hash":"4594b8baa36eec188227e960a64d42a49fa2c3619cc852486ea09ffab83a8f3c","messages_hash":"d5c41c70c7a4dcaad2d290931426912ae1b18e84a43f1139c658c9bb705eb70b","transaction_count":0,"txlist_hash":"b67528c85ae55a57b1dcf3501d340c280af942e4078a1c9a39e9ea63ee9570b5"}',0,'BLOCK_PARSED',NULL,'d8ad0d725cf6276016d641ed33e639d3d1c0d438ec23360373df83a3240ba617'); +INSERT INTO messages VALUES(1557,310613,'insert','blocks','{"block_hash":"c22021c5e4fd841a5f506df91ae88a4dd0b4edb5c98e6c5ab7ba9ddd8cd0cb53","block_index":310613,"block_time":310613000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8010c0fb1584edfcc35adc8632c22805092dcbcb851702a59bfaf631d61792b3'); +INSERT INTO messages VALUES(1558,310613,'parse','blocks','{"block_index":310613,"ledger_hash":"de0e85bddeac7e267f1e2d5fbcf84f5761acaae0142db35d5c2886f386a1a5bd","messages_hash":"ea1f267b694b4e0ea94c9f43a2dfeea2b52d91351f5095213d69976c0bec4951","transaction_count":0,"txlist_hash":"d6e9204ae7b7c5f887a25fc06ffce731e1c4f3228ff039e35be1d321276f81a2"}',0,'BLOCK_PARSED',NULL,'a3416bf61ee38aaa029a1af3d0740bdd5e7853b6128910e21b726d9c86a18279'); +INSERT INTO messages VALUES(1559,310614,'insert','blocks','{"block_hash":"e20f3fc33885662db862e5f1aa53044b4136e0097e7919f071a0f802c9f9436b","block_index":310614,"block_time":310614000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b9be71fba4807eb57edc3818277e994cae8157e8eec52275f6e6e0e5d0cd2a28'); +INSERT INTO messages VALUES(1560,310614,'parse','blocks','{"block_index":310614,"ledger_hash":"2e74f610c9f8a9d41e23d331f1be5dd73ec34484015a434dfaaffe26ea12d5e9","messages_hash":"d1c8eb5da18f7bb6e6f04f7a211d13c4f75551f63078b280dc48a590d2a86fac","transaction_count":0,"txlist_hash":"d1459bf2b59c0c441b8f00889669c3c6f645f66f608eeb623576ed7044bf37e4"}',0,'BLOCK_PARSED',NULL,'e06636ff3b8ca7e6bc183b4b351bfc8a79cdce1faf70bd53c4578989bd01c8ff'); +INSERT INTO messages VALUES(1561,310615,'insert','blocks','{"block_hash":"fd437e201cc2338bd936bc84f7baba6d100332926bee80f785f9f7bba722c5dc","block_index":310615,"block_time":310615000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ef7ddfe2a6654256eb70060d9562896075529e14c667899576e92ee663b2d0c9'); +INSERT INTO messages VALUES(1562,310615,'parse','blocks','{"block_index":310615,"ledger_hash":"d9f45cb567f34f84c514d22301b2da86908bc253aaa629b6865c2133c206cabb","messages_hash":"a0d491660440f20e3172e31d1a07cf617ee504e64f20527452b6da75e3ff9ce5","transaction_count":0,"txlist_hash":"b35468ce63479f2f7cd17f791e8a66b3a1b42e716a7792a2213bf8742978f9df"}',0,'BLOCK_PARSED',NULL,'9899809feb32ec47d94d5458cc5eb62aa4b2f145f7444950d57501d61e5eb691'); +INSERT INTO messages VALUES(1563,310616,'insert','blocks','{"block_hash":"008b25e6dce1914cecb91055f1bf5d77bf0be6f98b89ff06bfa41c193a321d84","block_index":310616,"block_time":310616000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8dd1d8938a6e2f61dd3e4bc44885fd62ebaf9f3bfc7287e4f6b7b112261f7713'); +INSERT INTO messages VALUES(1564,310616,'parse','blocks','{"block_index":310616,"ledger_hash":"e30e9f61f505ea7f98f2e1f45f9afc9a81fd074f021d2a870dfcae2b9f1cfe9c","messages_hash":"2100a4d4e90036fe1b56a618ba65be80e19ec195c282456ebf591ec61c45ac1a","transaction_count":0,"txlist_hash":"51e2ca4af76f00e81e5f946c53f23e1ee7ba4ea7603832ef77c374bae59afe3c"}',0,'BLOCK_PARSED',NULL,'9285a75df13deea8e4cb1dedaa0421ffe1cbdb95e5bc73320800c7b88b022951'); +INSERT INTO messages VALUES(1565,310617,'insert','blocks','{"block_hash":"cb54e04a81c8bce7eea1866cf83b3f3fc8d8332fbdb41b242cd0bc38ff243c29","block_index":310617,"block_time":310617000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'08deb1a383453b52199dd2cf2084238d0eeba9d95ed1c56d3c34420f13bf03ac'); +INSERT INTO messages VALUES(1566,310617,'parse','blocks','{"block_index":310617,"ledger_hash":"d9384d42da7243395812dab1d950d95a88a0a59429c74b4d4a5176d0be033616","messages_hash":"0697ef9cb30c2a2c5f524e5ab26465988b98173c9b8d082d628e0121ceaf1392","transaction_count":0,"txlist_hash":"55776209dc06de6d494ddf7866b805d94f4371598273d4dcf23b510e72826cc3"}',0,'BLOCK_PARSED',NULL,'42651147d49b80d9fc49663e6713980de90ff0dcc7de5c66250c8ae6a1a02525'); +INSERT INTO messages VALUES(1567,310618,'insert','blocks','{"block_hash":"f9bbaec16de49df3e5ae9af5949a283789c143078a31ed80dd1c22e35d9ff70b","block_index":310618,"block_time":310618000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b852704eda5d40a25274f066f3f8246140794fee65b86d497f4120f10ae27ed0'); +INSERT INTO messages VALUES(1568,310618,'parse','blocks','{"block_index":310618,"ledger_hash":"4ca7c230a3fe6c8ee91bb4bf3152c462dc1e2974a59f2c999064288892d08ea2","messages_hash":"5e1c8f4551237738254dd66979de7472271c5411b1ad66b8d2ac417cfd9adf14","transaction_count":0,"txlist_hash":"cad5af4c24c74aad93c806ae54251b11cd7d13210d68098afb26cbe73e3e120e"}',0,'BLOCK_PARSED',NULL,'f250aee77e43d5cf774945ba11b999b92423aa5b31f0d12d47ba2df2fe9b27bd'); +INSERT INTO messages VALUES(1569,310619,'insert','blocks','{"block_hash":"4c02eca877e9ed946d3b839c08717d48cfa08366f42f8bd9b84d60b20b34826d","block_index":310619,"block_time":310619000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c9a8a4da01690cc498da88d68b9e7b567c32eff8f17819c835e26cbd373f9ce3'); +INSERT INTO messages VALUES(1570,310619,'parse','blocks','{"block_index":310619,"ledger_hash":"61d138e6a8fa305f823286bfed3bb8ffd19459df4a4476f49a4f250d7021f7b1","messages_hash":"1b9e7f31f474711312faf01725f3ae59d78b04eb0343339195d6cd0fd3d67509","transaction_count":0,"txlist_hash":"42704ac1329f6cc2fbae3b8d6113afc679f159b44e007a4268d03cd9a9944721"}',0,'BLOCK_PARSED',NULL,'be96efe94bd27bd8a972ac2bf84ff30cfa61104e49c660cd79a996e9c259099a'); +INSERT INTO messages VALUES(1571,310620,'insert','blocks','{"block_hash":"98120d1d59fd5782e6aeaa785843b42351cc656f59ce10b76f7597202ab54519","block_index":310620,"block_time":310620000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'758edc6b802501bf099e3b0b482cabc1255fbef9033fceaf1058cdeeba543342'); +INSERT INTO messages VALUES(1572,310620,'parse','blocks','{"block_index":310620,"ledger_hash":"00e2a6449915ea1d728032c813d78b236b6042e13b1e3aa9856453a727d4a690","messages_hash":"488fc22e472a0f9b0817d4e30fd8a2fc91f1d502bb7eb67e1108235a545409c9","transaction_count":0,"txlist_hash":"e70c9193269a63eb0ade25f20d608c5ae1d9bfa8d79f7ed50c2f3e7b03945149"}',0,'BLOCK_PARSED',NULL,'aec8472eb14b5c193e16db2c13c550e59a47f0ea0bb22221be461c2292a92952'); +INSERT INTO messages VALUES(1573,310621,'insert','blocks','{"block_hash":"1f1a7124acef608c0effa6d985dee5fb44a42035d310c390512519dcc004cf11","block_index":310621,"block_time":310621000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d3cc9a88aa9a2f6ec64b9c4e5d9eab1f4459b8e0242d1c27645c2c2dfb0ff806'); +INSERT INTO messages VALUES(1574,310621,'parse','blocks','{"block_index":310621,"ledger_hash":"b454bb9ea3b218e1c9a622016aeb5a87f2c3547b164498cf79638ce5c5b9c151","messages_hash":"25b3b0222bc6b3a9ae6e4949da06260499581b313b9fa002d566b16023d9aeb4","transaction_count":0,"txlist_hash":"0993cb53bd6e9ea2635b2ddd58c9a43c5610e9e2a0ed0fa5407616a28e3aa201"}',0,'BLOCK_PARSED',NULL,'b16ac908524cdd198ba8cffba13311e405ac2b5642d99918f4d8d964f098893f'); +INSERT INTO messages VALUES(1575,310622,'insert','blocks','{"block_hash":"3088fa55337f70b4b67b9ec09e4121f30df45211ce7fb248352437630298bc47","block_index":310622,"block_time":310622000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'7ec5096f59cdbd777466b99f027a694c71f76b866d262034610f2bb3783cee27'); +INSERT INTO messages VALUES(1576,310622,'parse','blocks','{"block_index":310622,"ledger_hash":"791b9cd494c96b091f01a0acc1a77762bf062d13eab06d9ef3e7adc4a3ccf303","messages_hash":"75f35e96fb68715336ac80ea86223ed387b574b8bb192726c6707984ddab5b04","transaction_count":0,"txlist_hash":"674ce108f53ec7902c24edac613cfc104e7d08cfde7c8dd3ce65ed9dfd72182a"}',0,'BLOCK_PARSED',NULL,'0bb12183be96eef52e7b1c9648cf9d72b16b49b663a8e71a155049a6bd2cc10f'); +INSERT INTO messages VALUES(1577,310623,'insert','blocks','{"block_hash":"817efbc8f182833c8d19ef29a7b806d402f4fce3d76de1c099c3199b15520dad","block_index":310623,"block_time":310623000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9dc214c1d678394c2d9cf53c8b7b64e650245eb6b071b37ff5bddee365918b23'); +INSERT INTO messages VALUES(1578,310623,'parse','blocks','{"block_index":310623,"ledger_hash":"accd538ac94e49e181ff93568c3c1c06e3a29752d8ea17c61e485e95e77b5b6f","messages_hash":"4d006f3e4a07d9935ace0bd0b3de20e2e9a15eb44c46acecfa0baa17ec41eb91","transaction_count":0,"txlist_hash":"a56c89d0b997d5411cbcf260edcbd409e31a599fe36ac6f20a3e0c031e17e750"}',0,'BLOCK_PARSED',NULL,'d8b514e206aaa05a6bdeed691719817a73e21b4a27071322fb1b5bca7ee2c738'); +INSERT INTO messages VALUES(1579,310624,'insert','blocks','{"block_hash":"3c0ee9ad535b3b4a202367fcf45861eddf7dda7021af3565863f3358666e3cf4","block_index":310624,"block_time":310624000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aa6e34851c6eff6109f83ed198b042483a08c93329c96e46546c0bc24a714e3b'); +INSERT INTO messages VALUES(1580,310624,'parse','blocks','{"block_index":310624,"ledger_hash":"8ca42d0789366c39d92dc830654caad48cabfdff1b739bcaf850390d1a306c91","messages_hash":"08d37c765e8b49d91f9f1146a330fa33d47ddef089eb47b9d5ef4e672feca789","transaction_count":0,"txlist_hash":"daec5678d2803f99becdecb666418513aab7cc9a37f6ab54e675e0a895a3b69a"}',0,'BLOCK_PARSED',NULL,'2a4f251a95e638ad6b4f12531577f90a30ca6603ff9f02e1f99374f52f18b306'); +INSERT INTO messages VALUES(1581,310625,'insert','blocks','{"block_hash":"bc28b31c2032623bb295cdf38d7b4ffcfd20d96c95301122d18463d54c6c11ba","block_index":310625,"block_time":310625000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0ccd688ad2dcdf1331a536374b004bb957217047ee8fa0e188e2a29781eb388d'); +INSERT INTO messages VALUES(1582,310625,'parse','blocks','{"block_index":310625,"ledger_hash":"97ddfd8dfd78b745a1baf90c8fecf0fd4a9bf65682a7900f532756ec9a4345aa","messages_hash":"795c6e583990ec6196489d67ec3f1bab7d7c14430bcda2c0d22fdd148e2db2ec","transaction_count":0,"txlist_hash":"e378650c25e95773a8167e904ce8ff4d10efc57fc2b544054c6b4201f7547537"}',0,'BLOCK_PARSED',NULL,'600c84cb36e14a7f20e2f449313255ed35e2ed7e2a7e1df0740e937ae83318d9'); +INSERT INTO messages VALUES(1583,310626,'insert','blocks','{"block_hash":"b6c172768d20d9c97cff56f083d61920e1ea39a93c7c09afff3767858eab950d","block_index":310626,"block_time":310626000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'11b7a67b2434ca05375e2b0a63eab52fa9f6d0099d28a419c4654daf4ab8fe59'); +INSERT INTO messages VALUES(1584,310626,'parse','blocks','{"block_index":310626,"ledger_hash":"78fecdd210b3b5cf22f7edecc5d8ce31ece4f3ee90a9d1a7e9231353d74378ff","messages_hash":"f40abca9fe7283910e120a1c09969f3445e4c8fba1f85f65fc95bd6db69a8129","transaction_count":0,"txlist_hash":"0d54a79bc7f05e33aefa5fece35ec2902b3da8461e34163b58c2fd3779483614"}',0,'BLOCK_PARSED',NULL,'3abb4b8b1a1b0d558d1047f99c115b28c8309a56e18f9016e9db1685f06aea8b'); +INSERT INTO messages VALUES(1585,310627,'insert','blocks','{"block_hash":"828a91a4b44acfe311e116569ab6856dc528b52ded683df95d390bef4e6c115f","block_index":310627,"block_time":310627000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'473ecd7d7d48556a7b9f98eebc98f1edddc2feefe2e2f64aeba45fe85be95e5f'); +INSERT INTO messages VALUES(1586,310627,'parse','blocks','{"block_index":310627,"ledger_hash":"6a3176840ca189c93d52a64017b774dc5c8789121439d997cfe5ed3785ac2c0a","messages_hash":"6a212e03fc08edbd3207b2b0430c69dbf85d5f84a5fa1b66784c7bd7d4c9e395","transaction_count":0,"txlist_hash":"b4e762b53ffd3d9ba24a34032ba26b048f2c7524008cc3f35c0e44c1eaadf8d1"}',0,'BLOCK_PARSED',NULL,'8b6f679b5e798b6a96f952ed5df17d7e6f11649e77d4af9f05d9f49ce51fdb13'); +INSERT INTO messages VALUES(1587,310628,'insert','blocks','{"block_hash":"f319b382302b18f1bb20205e85c8f938bbf2c643101aa1db30985d36f707494e","block_index":310628,"block_time":310628000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'3ca5c388317f78f1c4e0ae76a816a5309892d0d14ea36664aa5caab48a37cca6'); +INSERT INTO messages VALUES(1588,310628,'parse','blocks','{"block_index":310628,"ledger_hash":"f8271403e2bc0506b46083570d6372b1ab36ca545b7b105fee8bda6a0316d20a","messages_hash":"8606c13be3cafe4d4bddf5701a88bf6a9203bf0589eac1eb098ccbd8449ab343","transaction_count":0,"txlist_hash":"966ab2ff446abb9ad3589034fa23dbc5c467d019cb92803745c8732b05a6bfbb"}',0,'BLOCK_PARSED',NULL,'f9bae0d36b8952496787b7f3255e0dd854df854048bfd5667fd81fef2ef768b4'); +INSERT INTO messages VALUES(1589,310629,'insert','blocks','{"block_hash":"254b0cb0f311451dff00741a8a1d083190d1bb2300029219c26fae1e37ef3a20","block_index":310629,"block_time":310629000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8cc19a4ea5dd4889b8c29c37f597f4abff7424b0ef65fa6475a6a6ac0890882b'); +INSERT INTO messages VALUES(1590,310629,'parse','blocks','{"block_index":310629,"ledger_hash":"89b8d07c2c7c9b9e4d7cbb24fac8b39a02518978470689916fd7109938749327","messages_hash":"d9e2fc746cc7844019a2794192467b6071e0b2a615599ed7f085cd820a94f7ee","transaction_count":0,"txlist_hash":"f739aa66c8acb9c24def7f1febed2189e6cc63361d2f798ed32cc808acf01eec"}',0,'BLOCK_PARSED',NULL,'7107a772c5ed00a55ac1f2d945b35624f941266be2d7a763823154273f1e4e48'); +INSERT INTO messages VALUES(1591,310630,'insert','blocks','{"block_hash":"09122d8e8e5b1e1f6cb5a16b7f0149afb37aa0c9c6a04a9288198854b43b6fde","block_index":310630,"block_time":310630000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'87ca0a1d983669c2151c43d38faec6ba1aa7d9c6e012f5c9d90917cc3c244978'); +INSERT INTO messages VALUES(1592,310630,'parse','blocks','{"block_index":310630,"ledger_hash":"637f978db85998e0852aa7eb022b67c9a0dd80fc8358550bfb2295dec33a27dc","messages_hash":"90af1392b478e6d84da5f26c385a0e8d8f96157df43b7ffaed5040b689d6865e","transaction_count":0,"txlist_hash":"51ee75dd962cc512bcfbdec32657f7439d60f3e613329a313f44970952abc904"}',0,'BLOCK_PARSED',NULL,'a1d2d7fdc2d331880c2848dbf7f178b7bf881ec23c6acd0f22218d802ae92ced'); +INSERT INTO messages VALUES(1593,310631,'insert','blocks','{"block_hash":"b13cf136f0c15602dacf7625e6edb4a66ef804084424c1a01e7c2a2a512619be","block_index":310631,"block_time":310631000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c143b5247124971dff1eee7fe8127017df448f3bf4477a0b5863d54b7bc67ff6'); +INSERT INTO messages VALUES(1594,310631,'parse','blocks','{"block_index":310631,"ledger_hash":"111964dd5de58996c79fed037fa414d3091b24f39162b8b49b1706489fb70de9","messages_hash":"46b710d8cc561e7bd3f5d70a226ad8bf6463246f0125be4e6908390383eb168f","transaction_count":0,"txlist_hash":"c513b62a3d7bd0b4fc649889deb032ffbb9efb6d209e4bf5e14ea24250f147cd"}',0,'BLOCK_PARSED',NULL,'1f6f53d4d828aa062eac1a35a67b9ad5ae92afd069cc813ea6834bbd0b526b00'); +INSERT INTO messages VALUES(1595,310632,'insert','blocks','{"block_hash":"79c10009cf92db94ffc72c6475c65116df5e13d1d31d15462bf6af255857cde1","block_index":310632,"block_time":310632000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'eb8987b4f808accb2b71ad92198da5dae256f9aef7ebad3736cd2f7ff581271f'); +INSERT INTO messages VALUES(1596,310632,'parse','blocks','{"block_index":310632,"ledger_hash":"bac16748526f10796a496c934904ec1531fc346c47f76518effd0fdeab0cbf2d","messages_hash":"439997103b30d1a86cd73abe038c7ecddaea3f2f188486cc986bb9c439b7a6b7","transaction_count":0,"txlist_hash":"6f4ee24d93a37b3686c71e39cc7ce7e3f79a3a9a6397e608d74c3646b9358d62"}',0,'BLOCK_PARSED',NULL,'8880377fc08bbfff5869666e891d407b3e2aeffc74a0f083644054f8dc060d5c'); +INSERT INTO messages VALUES(1597,310633,'insert','blocks','{"block_hash":"e0704c45ceb7db9ddbd7470f41978d6e413d586afc9dfbf8c7726f4ad8eb95f1","block_index":310633,"block_time":310633000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fc9cb13827545f4f6fb03e70c7655bd86ff6a281f537c6089ae750d63d4d769d'); +INSERT INTO messages VALUES(1598,310633,'parse','blocks','{"block_index":310633,"ledger_hash":"429706df8ba85dd7af927bb7d356b608005176b33a0f25e026050467478278d5","messages_hash":"4ce3223f24596151dea3d243f4e0448ee0233d3fc765f2a90be85d684c18119f","transaction_count":0,"txlist_hash":"52825a5f663c03d9d8027057b36564cf4be997fdc15b5b503d1701019e92376e"}',0,'BLOCK_PARSED',NULL,'557af1d24afbc2017583176185a44190f45d7f95fb3d8b0e6f10e0e26223c997'); +INSERT INTO messages VALUES(1599,310634,'insert','blocks','{"block_hash":"c4c66e703e975a6dc90beec42a4fa8de7df296340b408159caf4e7a8193b48af","block_index":310634,"block_time":310634000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'2a64930adfea6fa2f8aa0b99eee381e2ce3c2d606cfadaa9bcff7aa7ea10e601'); +INSERT INTO messages VALUES(1600,310634,'parse','blocks','{"block_index":310634,"ledger_hash":"7f0f383e79def1e3a68337c026ab2a8af69462ad3e450aa9e14e85c197878b2f","messages_hash":"8b51cdafa4e30f307a35d7b150ae2c9f90edccc8b34c73180eb6ad1856ac058c","transaction_count":0,"txlist_hash":"e9c54a989efbd6b8234ca7f0fae5d39b7f83479470c90f2d43dd11288792da1f"}',0,'BLOCK_PARSED',NULL,'95b9e21d9a3aeccd5e2594c1f93c60523afa6c30e5d1d31e30abb650dde23f95'); +INSERT INTO messages VALUES(1601,310635,'insert','blocks','{"block_hash":"8c172e08259774a0d6cf10df2c807f635c37a1d8da2696f2c5dc0b228626004e","block_index":310635,"block_time":310635000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d086e58b340d3d5be20c6dae15426391b7d84dd78afe16b8c336797809625e35'); +INSERT INTO messages VALUES(1602,310635,'parse','blocks','{"block_index":310635,"ledger_hash":"8f7228dc809935d3676b5564f1d66e72eb446c74cc92aa037bf62b5f145bca36","messages_hash":"cf8ce652968d079d7e736e800474590e13cab3ad6ebe1497f57cee48a254c4f3","transaction_count":0,"txlist_hash":"f93c139e303a561ea8d29de69ea04dcdea0ed5ae41ad8ac0f6fdc2fe8817d815"}',0,'BLOCK_PARSED',NULL,'c13e4e3ffd25768aaf356d5fbce5e3b77b18f4d5b81bb024d95bb71c26bf5e71'); +INSERT INTO messages VALUES(1603,310636,'insert','blocks','{"block_hash":"ec48849cd07e997c0ce999c735ccb1439f4a2f59191913f0823a89802d02bc31","block_index":310636,"block_time":310636000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e19ae53f4b30d17f942d05e4423591bcc92d685a19a0157506d0f99073ec9937'); +INSERT INTO messages VALUES(1604,310636,'parse','blocks','{"block_index":310636,"ledger_hash":"de84e3867052961680b29056c07dfc27b6fb2eac814419dfd4e91b43e900c772","messages_hash":"878bc373268caab27574e672a4dee2187b28073f3ae5c86cc126147b9ab707e6","transaction_count":0,"txlist_hash":"63a31a218d2b42aa278be0ff76c71bf572114c281a90431d952010b7e75a0b14"}',0,'BLOCK_PARSED',NULL,'d2703560e37419b9cf0011a5fa7b53b1d7a56a36fcb5511eba63c284ccab1930'); +INSERT INTO messages VALUES(1605,310637,'insert','blocks','{"block_hash":"d38ce45ebe349abe87390200f781f8059bf95b76b82e5fc210f3fb2d47543336","block_index":310637,"block_time":310637000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5586c9838dc4dafbfa90f09521fd5471862352bd335b5dc70b5cb1f160be7c99'); +INSERT INTO messages VALUES(1606,310637,'parse','blocks','{"block_index":310637,"ledger_hash":"8d0b67598fce1b999273f33ec1baf8250887cad0b83459b702ab59034f3086e5","messages_hash":"01e47e5c8364edaab0015cc441caa1145d09c1a1dabed0a03d8e708c644254fa","transaction_count":0,"txlist_hash":"aaf47bc37b85c127d9bedf76b0900a07b29bb2a1300a12d92200e3f006e0b930"}',0,'BLOCK_PARSED',NULL,'f95ee2c1ffb1221b94711995cd681cf312bbc0d42a2a8b52a6f7de1f97fb3e0d'); +INSERT INTO messages VALUES(1607,310638,'insert','blocks','{"block_hash":"672a9e105a3845ad58c393548dcc662a80af17ef0884a4894023f4685302577b","block_index":310638,"block_time":310638000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c4798bda5230820e05bcd3cf965b07c2c1609b9aee6642cce830c9edaa44dc5a'); +INSERT INTO messages VALUES(1608,310638,'parse','blocks','{"block_index":310638,"ledger_hash":"27790f551e94594c6af449e724c10ce357b5dc66bfebee23097afefb4e9f0a12","messages_hash":"8cc0fca3ffad9015927bb212ee5da7d0218490e373e8b22be90a7cbba74f214f","transaction_count":0,"txlist_hash":"eb6e3a68506f9c0bd4c522d5537ea01140273c8b84f376cc95fda0c99c8d8c7f"}',0,'BLOCK_PARSED',NULL,'5e12519e23383f7ed600c996c3e449f849a81fa55ec31dd0672c096b30319bb4'); +INSERT INTO messages VALUES(1609,310639,'insert','blocks','{"block_hash":"d9f5ba015ed8b2eac57c5cca45f9dc1ab54f56632c3a256220c352710d417f1b","block_index":310639,"block_time":310639000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bc3c3624c88a029e410228b835ee39f7f4056379c3191192af984cb7172badc7'); +INSERT INTO messages VALUES(1610,310639,'parse','blocks','{"block_index":310639,"ledger_hash":"67a6aa875f85ee2238c17799eff999fc203dd693b43650eb5fc852ca35e336cc","messages_hash":"9d14f17d509f8281c04e6fe682e9fac6481357563002e13e17e30559784a5596","transaction_count":0,"txlist_hash":"4618a0558955508e24b4e79308cfeefbdefcf4def0f3dfc389d66b335488976c"}',0,'BLOCK_PARSED',NULL,'b7925cad900c9a19442496f70b46e4ec5a3faa592801323214de2fe2f7f944cd'); +INSERT INTO messages VALUES(1611,310640,'insert','blocks','{"block_hash":"474facfd45196931f0bdcf43ed1bc8a7ea14da7e67996a4cc6dc2d6e2b64af59","block_index":310640,"block_time":310640000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'0d40c0ba533e22cb8e1c552a786ba178468338d4b290d75126b8e0730d945b9e'); +INSERT INTO messages VALUES(1612,310640,'parse','blocks','{"block_index":310640,"ledger_hash":"ecf997fef417038221dea2f885b5cf3f39a695f1c5b4301505fba48de4967aed","messages_hash":"fd283dc32d0802e113f6a54d53a8a09f99dfa125590414bddf581f9ad90e3b2e","transaction_count":0,"txlist_hash":"41342d146bb15f623738e998c667d3bf2b51966495f1bfc948bfdfef93d27bcf"}',0,'BLOCK_PARSED',NULL,'087e87a26f7dad8805a6e76fc4e7b5def5d6f9b86dcb58e458a23708fcc220e2'); +INSERT INTO messages VALUES(1613,310641,'insert','blocks','{"block_hash":"02d51592ca3541de38547d4b744cef9c480551456c7cae745ebb9d55d754096b","block_index":310641,"block_time":310641000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'974a250410e6defa9f885752c1b93eab2337becd3f2c0221a85d783acf273742'); +INSERT INTO messages VALUES(1614,310641,'parse','blocks','{"block_index":310641,"ledger_hash":"58459ee74e52e1f17faf04b87d863a7f325a6f3e7119e9b0125a5f524b3f9e5b","messages_hash":"216296aa64be92588f833c4c89c6daa991b4836b482afd9822aceac82c02dc82","transaction_count":0,"txlist_hash":"266cbd2f8009b1c950b4a0f5d7b1a9e7fee56a0b60feca824b5f7e4f69334435"}',0,'BLOCK_PARSED',NULL,'928c328918565de06a39112bcd03ac1aaf85b845199ea657462756317c535df3'); +INSERT INTO messages VALUES(1615,310642,'insert','blocks','{"block_hash":"cb6395d551dceafae515cfa3081473654eb0ee78b79242f6f1d6e5192c116ecd","block_index":310642,"block_time":310642000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'45163c8afcbcf3ed65efd91d31c9fa1cad0ad8de2f97e907549c517c7609810f'); +INSERT INTO messages VALUES(1616,310642,'parse','blocks','{"block_index":310642,"ledger_hash":"7115a073784f629dfa4e75b9332519b2f2646f73b339566891a5a49a51130549","messages_hash":"95ad7e7fdbba30428fafdf81469a915d0d367670c0e432a6b23c947631af62cf","transaction_count":0,"txlist_hash":"483e13632b7785262d09bbc9c55ec5ecfae7992d38b44d92b3b7b9dffc979be8"}',0,'BLOCK_PARSED',NULL,'2097a05b52b2e7a8030820b146d898e047603fd998d656b919da9c47c6295f48'); +INSERT INTO messages VALUES(1617,310643,'insert','blocks','{"block_hash":"b44200d5717e8bafb56daaba83f0b64c24b122aa18d3035cdb1cbab7c473182b","block_index":310643,"block_time":310643000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b3aaeb7b93716439d61a4cd2afb9738d991e1e4b91ba422ff0721d600cce5419'); +INSERT INTO messages VALUES(1618,310643,'parse','blocks','{"block_index":310643,"ledger_hash":"f33f3b1e121dcf510c45a6ae1ebd73cc2225507147578afccb57b510e55dcf3e","messages_hash":"4d68715ad53669493c453de539eacecf0cf9b8d9556782a4e7c3e1721f535f89","transaction_count":0,"txlist_hash":"2d428ebef22ccd8e01c73c47d63ecc37614f5bd34907d6b5e821aa4b3d7a0b07"}',0,'BLOCK_PARSED',NULL,'cf6b9cfb20f6825854fe0a8c5851d8c4231c4759ca0bf1e771514abb897092c8'); +INSERT INTO messages VALUES(1619,310644,'insert','blocks','{"block_hash":"f72c01f09a2f76629efa4f7244703a82e82bda4e9aa4f032025e84a86788c672","block_index":310644,"block_time":310644000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8b4ea9feeee8dd9981e832c52a4291f713e8dbabd8e552a1fd34ae6fff968b7'); +INSERT INTO messages VALUES(1620,310644,'parse','blocks','{"block_index":310644,"ledger_hash":"1fe7deadadb5e69094696d93e4a633a0994819983ad920aff9392ac6738f9fba","messages_hash":"2e5d121afe71f37fc429baf759fa485ab7a47ff490ebcd55fc79105f43c256cc","transaction_count":0,"txlist_hash":"848e6511e3651c225508e11808f494e5730bff9072e37c5961b209f6ca5eedb1"}',0,'BLOCK_PARSED',NULL,'ff5d5539d3dcfb2eaf5259c083a5a42418d131632cb989cb765c2c6590dea5bc'); +INSERT INTO messages VALUES(1621,310645,'insert','blocks','{"block_hash":"f2a2ff3c7036d5a66de602a075aab3343bd9f6027215a79d451967773bfa29a3","block_index":310645,"block_time":310645000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'32e817e0ccb842619c87e6d16cc8316dd2615dfbfe0a277108f1e34a1f4ffdad'); +INSERT INTO messages VALUES(1622,310645,'parse','blocks','{"block_index":310645,"ledger_hash":"e02701b1bf4f3d2b2d9fff9867ae0a7447c730827397c2f1e78a2d522139fbfb","messages_hash":"0d006ea790bba01627155684e74c6a03420c3d299571727e9eea79b57a4f8d2d","transaction_count":0,"txlist_hash":"1e1feae6d6050b88b16c5df26ce029eda5fd272e96bec74d7a6139fd4c38343a"}',0,'BLOCK_PARSED',NULL,'a216a0fdfbb0a9143abd428075ed0e166d4a6c4c9e81a0a66077b9f19445ac4c'); +INSERT INTO messages VALUES(1623,310646,'insert','blocks','{"block_hash":"839ef2ee85d2edc27b4257e50c667b3d0ebb254ada269d6f9bb07e076eb0d494","block_index":310646,"block_time":310646000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c4281ea394558294f441026c2530217e5bbe03fdd875c44af26870057650e9ee'); +INSERT INTO messages VALUES(1624,310646,'parse','blocks','{"block_index":310646,"ledger_hash":"1c921997d09586776036aea36d92e3e57c3e7e148c1f6565c4dcc8b8e72406ee","messages_hash":"bb7b88a53b02a3e1a16860634ff3d02b27096acd8a894fef2ea5319c958803aa","transaction_count":0,"txlist_hash":"d3f50fda8401e46bd75e7d4abe1296363de460d45141da3075342c8bc017f8d1"}',0,'BLOCK_PARSED',NULL,'8300e43df399e62d283bb364a02a6e9e217b65603de0ef67ea06781e5be9b13e'); +INSERT INTO messages VALUES(1625,310647,'insert','blocks','{"block_hash":"8c3fc73a2be40301b82885028a4058923a5849d86cdd0bcf101e615965f0b86d","block_index":310647,"block_time":310647000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e1fc7adfc95765aa0f1842086edaf581ef5f9040bbcf4077648bffb00000a62e'); +INSERT INTO messages VALUES(1626,310647,'parse','blocks','{"block_index":310647,"ledger_hash":"5799deb2c7b95959d2237ddd4566fab7ead35943382921bf738ee3c140e368df","messages_hash":"cfa7db02be77590395c7e288b577f92a38239716d708c6a5d7c088ae8b532b65","transaction_count":0,"txlist_hash":"4fb604a40972ea2e2fe9dc8ffe24f8bfb8d77900c80ff8f33bb7a34b2a0be681"}',0,'BLOCK_PARSED',NULL,'2cf56b9c05d53cd3b4b3eae3eece1a2cf96d475c1cad38912c06f8c838809914'); +INSERT INTO messages VALUES(1627,310648,'insert','blocks','{"block_hash":"8b4b7bd45340942fff7a74b02e2d77f59943a5855e79566ac8f6053b0cf4e14f","block_index":310648,"block_time":310648000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fcceb51b1a8dc20a63f46e16b1d4096a74b4d257c9e7d2aedfb1de42fb056335'); +INSERT INTO messages VALUES(1628,310648,'parse','blocks','{"block_index":310648,"ledger_hash":"9b0c8c0e31e70e67ee396e16ed85766f17552293d2ebbe5566896eccc65688e8","messages_hash":"c615e72bdd350f38281ed3560ec07979e3587cc0a4f5cd8053d4a118a4de6d8f","transaction_count":0,"txlist_hash":"c9ba3aeda8abee31772f8a0f7cb5643a12eeb8c9fe59045bb0c9d49d5c69c3f7"}',0,'BLOCK_PARSED',NULL,'af3f668740ec1d3f795baf6c12f394081d9d23af2b727738e117eb5ad2980374'); +INSERT INTO messages VALUES(1629,310649,'insert','blocks','{"block_hash":"6a5587f8dbe5daf750e6af8ce8d13747c2354e4a83073aeb31eda11e0d5490fb","block_index":310649,"block_time":310649000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'61510491528b5b0d2a970135e42f8d37aa7664e709b6b42ed16302b2c1b2ac55'); +INSERT INTO messages VALUES(1630,310649,'parse','blocks','{"block_index":310649,"ledger_hash":"606c6a44f3fe7dcd230a4fcb137a010b1ba7ce11be94efee7dab2649618fb725","messages_hash":"cd81bd5131e8b4749fc0c0da0102895980e957d7e3bf3bb103b16e0b7a93625a","transaction_count":0,"txlist_hash":"1654a3cbc3954d23e0ca92af18141e3384277e78e664ad40f2867fcbc60a2d70"}',0,'BLOCK_PARSED',NULL,'d90ced88554ac4974236288f742e4e9e7e41421a388316351e85c816b88583d3'); +INSERT INTO messages VALUES(1631,310650,'insert','blocks','{"block_hash":"630772e16127da5b34945d5d2fe6a95a7e0addda3f7ed03aaca0d63526957ac0","block_index":310650,"block_time":310650000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'1c12ff6777664765114f3cf779b74e82fdb6a0bc855e54cf4c2ad9433061eb17'); +INSERT INTO messages VALUES(1632,310650,'parse','blocks','{"block_index":310650,"ledger_hash":"e374080b3f666ea38dd6fae338339e01e5b9a35d7605d0eba6760b17caeac4bd","messages_hash":"065c75442500de5e41928418daba7f3b7952a5709349f6bc547cf324089e20f2","transaction_count":0,"txlist_hash":"d10f8ee8b2a804d4610ea132e890fa11bbfcd9582d059a77ad3b59c9ac93669a"}',0,'BLOCK_PARSED',NULL,'c4cf096bddfb3bd0f3f8e4391f1943c90478b34c466a903d1d5026f26d4cada7'); +INSERT INTO messages VALUES(1633,310651,'insert','blocks','{"block_hash":"abb2d29793c975ba98b914638ffec5642e03424b64c8c949529392de66eaad22","block_index":310651,"block_time":310651000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'87569bbf8121faf591b0b9e9bab1dfe33c49f19bcb8833c6b547cfe52adba478'); +INSERT INTO messages VALUES(1634,310651,'parse','blocks','{"block_index":310651,"ledger_hash":"ab3aa2e64ad8e96d4f10c7c72566e65cf8b6df1d9c59acc9f36ff367276348c5","messages_hash":"ffffce0d2503ba52ef8381e0eb4806d34eb3f2c8c6f829d6cafdbab2b3f49f58","transaction_count":0,"txlist_hash":"d4ca114a2c4e1e43d82c0502548e9f9168e55553df009f846c652477104b3fc8"}',0,'BLOCK_PARSED',NULL,'e5ad144c09b99104e13e676eb4dd2d11ccff37b605a8df727cb3a9858599359c'); +INSERT INTO messages VALUES(1635,310652,'insert','blocks','{"block_hash":"5be0bb5cf3210dbdb37899c13ada53194619fdb844a06788f47cea6ff3f51cb6","block_index":310652,"block_time":310652000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a33f9b03a9090f62b7f883612033f16a1bf1e6e0d5ea0607a44872c3d55e26a9'); +INSERT INTO messages VALUES(1636,310652,'parse','blocks','{"block_index":310652,"ledger_hash":"0041d6f69a3abdcfcd6b79d991f2815f97bd31de1253bd4f4e67f9971e1b38cb","messages_hash":"22f6a085a3c07eedc18222ecb2352f50d6c268b15a137ed318becfd6e02d026e","transaction_count":0,"txlist_hash":"6491a9bdd162cac7cfadb1930138e1714fef048d0b2b001fcbdcf24413110d42"}',0,'BLOCK_PARSED',NULL,'88e58aa9660dc85d114d69f3043bcc92fc3f352f13a75c17f3fd7f8ad6fbc314'); +INSERT INTO messages VALUES(1637,310653,'insert','blocks','{"block_hash":"149b18c77b473184140e2c0a5e890da6beb9d29bfba1e229840836d6a6734bd0","block_index":310653,"block_time":310653000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'c3eb982f328d766820ee4dc911d325e520f1ab8fc783eab8af99c1a64239d761'); +INSERT INTO messages VALUES(1638,310653,'parse','blocks','{"block_index":310653,"ledger_hash":"782004b38c6737fcc6c2575d7eb00f2e364440cb69a4141080ee1960828fd2ac","messages_hash":"8c8a569ce9361127fe0154f7df0828b19adb0eae1afa096bcd0ea46996e945d5","transaction_count":0,"txlist_hash":"fc791bbbf8c78847cb342bdb1273cb697c513c68ee6d280941031cc38d4d6354"}',0,'BLOCK_PARSED',NULL,'9f595d7738eec18b6723e89b72966be4a478ba953fcd1412f6ee63e7a1379c7d'); +INSERT INTO messages VALUES(1639,310654,'insert','blocks','{"block_hash":"829af363584fee40e5e59ce6bcb5c5ceef386d56a7fa1fc8e5f2b26a1c546569","block_index":310654,"block_time":310654000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b4a195622ff42f76b8fe9349730efdfa04a9389b02265801331306bbee117536'); +INSERT INTO messages VALUES(1640,310654,'parse','blocks','{"block_index":310654,"ledger_hash":"77145b6ff93a432aa76c3aa6491ed92b6596da48dd5cd007ec38abdf92a111f6","messages_hash":"8ae82fa7c35e107fbd3ed2f604b09f39ff1a0adfb1ccb9ddcba5d012f511bf60","transaction_count":0,"txlist_hash":"dfaac3f5a38a1b4586cfe3ea5959b3d879d50a231191fcf46f75fec0b8a3329a"}',0,'BLOCK_PARSED',NULL,'c18c56b477b17f96838fcff16af8e1ba5c599bc9dc6e2212336a3f155a8d84a5'); +INSERT INTO messages VALUES(1641,310655,'insert','blocks','{"block_hash":"c0c926058eaf668c26bcb906b00085046ee3a492e66078a2fb04af6712139e55","block_index":310655,"block_time":310655000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'080abb16e83db84a4cc962ff9e575aba06bcdb92e0d9bc0452fe502cf53e8d01'); +INSERT INTO messages VALUES(1642,310655,'parse','blocks','{"block_index":310655,"ledger_hash":"c01c53df2b345e24e6dfa455d588ff353b9245ce6fda1f41972955162b717723","messages_hash":"832d294f7c6bd1c597cf9acf253dc505e4064e881a2f15b049566f105dcefe33","transaction_count":0,"txlist_hash":"5a9a17b6be46a48a00b986503cc922e945ed3e59a0fffeff477e6953e776ed2a"}',0,'BLOCK_PARSED',NULL,'301b3db34f00a6a64c4a77d2109f5bc141600f52401e86195a8acd385013e316'); +INSERT INTO messages VALUES(1643,310656,'insert','blocks','{"block_hash":"5d4c1fc1c92272963ac4b686279ea88fa683be164414c74c87890407001c394b","block_index":310656,"block_time":310656000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'cfc9c0d72b18a454248d9c9347b3d51ced8985c0c22125286eaf62581a77218c'); +INSERT INTO messages VALUES(1644,310656,'parse','blocks','{"block_index":310656,"ledger_hash":"b19e67439b541ffcc7855c5c655e738de7ee0c0429dd9542fd0f871b180f46c0","messages_hash":"9042b44a4a43ad0bce6307ce80238332787e9366001de1661d09a0ee593505cd","transaction_count":0,"txlist_hash":"73e8b5247b6daa8b931b1b28610b6fee7e10949a1aa6a62d71e276929fc5ed11"}',0,'BLOCK_PARSED',NULL,'1d1df3588875ecd1c843dcbb66aaf3ea343e5aafe4f6b93903033e4c9024d523'); +INSERT INTO messages VALUES(1645,310657,'insert','blocks','{"block_hash":"e8d3bd7181ac043c3086f9743d212dafb71a65adfddd813ca8b973158a3fcd26","block_index":310657,"block_time":310657000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'60b0bdb1b52dae1bf37ab9915e848d479600aaf33792bb2582a59e09e3daccca'); +INSERT INTO messages VALUES(1646,310657,'parse','blocks','{"block_index":310657,"ledger_hash":"ba2ab5b79057b6507739a23131ee728dabb73a90041f116903f4a88e7a1566ef","messages_hash":"27c7e86e5c33d10208aab90ba0f7cd808e42c55a1672020332289f97127be6f7","transaction_count":0,"txlist_hash":"c426afc816a4d8536d96d8ed39c75dd8145e6d93864259b017c1932bd3bf0687"}',0,'BLOCK_PARSED',NULL,'236026c1990e3c8a71b88a82c0e9e2ca41913c0d768cea858de0b68e19162be6'); +INSERT INTO messages VALUES(1647,310658,'insert','blocks','{"block_hash":"579c711806538368d38e9337a1459885e9fba0ff1cd335d6bb77ce125bd4f501","block_index":310658,"block_time":310658000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8d0201b4ca9e094d21f6d4f0ed487d89ed00adb150034595834d297243c8020f'); +INSERT INTO messages VALUES(1648,310658,'parse','blocks','{"block_index":310658,"ledger_hash":"55bdf86bedc7787e874b37ff4dfbc3c753873577059b81d91c1d98fb61ab889b","messages_hash":"9fba4351dac2413aa3f32e051cbcde31978eed04aef5eafd8decdeb91cdfee33","transaction_count":0,"txlist_hash":"a0a1dbdc2cb08b59bbc105c44ebae0f8776483f2c1dba13a519984ca70a839db"}',0,'BLOCK_PARSED',NULL,'702dac81f9f4e5142bc15eefef4dc850a751c8f23df47c3b0391c1d3122be377'); +INSERT INTO messages VALUES(1649,310659,'insert','blocks','{"block_hash":"e2916f0a41778f5954dca70fe4a11caa7e06e14fd1f0add437278559bc5fca5f","block_index":310659,"block_time":310659000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f290621d79357ba8e4757c16e0257f63f2540981388a85d1d9fc1aad7371daaa'); +INSERT INTO messages VALUES(1650,310659,'parse','blocks','{"block_index":310659,"ledger_hash":"075b47b96483cb17c8d208e40808aa6b2c6273cb2cac1f954c40323118d319e3","messages_hash":"efe3f9ab71802b576b8327d40e26a1aa23fe6d6d560fe9afa92cb91156cc38c1","transaction_count":0,"txlist_hash":"8820d989cad56e3ec4c084d37c7d586355019ea8e5cee7371ff05f4e19972528"}',0,'BLOCK_PARSED',NULL,'b6a72daadd0489fde4dbf0c77aa1e63205b9b312c1368a44a18965e94c6838d5'); +INSERT INTO messages VALUES(1651,310660,'insert','blocks','{"block_hash":"d09a066cc0cd3672576b8e02733dbb32ddc2ec35d07104edb1c56ba9f2b85c7d","block_index":310660,"block_time":310660000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b2b9b60bb41e786daaf14f1d0675fcb92ef8e68c4097741fa4f054da225f0f69'); +INSERT INTO messages VALUES(1652,310660,'parse','blocks','{"block_index":310660,"ledger_hash":"9b5229606ef138005d260efd23e1dea5787e54a060eb1e06a3b3f20ceb8aa1b2","messages_hash":"ac5d922cc74d59ce471070115b26c90380435bef933a790af23fcfefd7548789","transaction_count":0,"txlist_hash":"f606b03288e72a208f5d44ef49343632cded5a190acc9784e7d44c3ce89e3d6b"}',0,'BLOCK_PARSED',NULL,'c7bd3ef2513273eb7c4c1e94857a9455c1ae2c0eeb44f7a3120cc7e3458d8dc7'); +INSERT INTO messages VALUES(1653,310661,'insert','blocks','{"block_hash":"badefa122129d97ce33ff699b6c63f854cc2ac11e02fde9fa589621d1201ee89","block_index":310661,"block_time":310661000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b8f608f13836c32fde4dc7723d7a0df8afd979ba62a29fbe4098173483fe79d9'); +INSERT INTO messages VALUES(1654,310661,'parse','blocks','{"block_index":310661,"ledger_hash":"fcf6e1cec9e929e90e87aab898f1c6b5f4cae33272a01f8dc4c877a78897ded6","messages_hash":"64b227d576c1f2ab6871d97064988ea02f84d58544e65198e2a45ceb9a782be4","transaction_count":0,"txlist_hash":"121ea9d910cd7cd9522a4c21056464d4b5831269d55d3ee93613f9edb80abce8"}',0,'BLOCK_PARSED',NULL,'dbf56f6ddb1678f35b0975dfa08ffa2dad2cb28f174df7f172eee9bb4eb767f7'); +INSERT INTO messages VALUES(1655,310662,'insert','blocks','{"block_hash":"952fd50a82984ca0b86bd2603400525f8658e33b0aff521cbdc0343e0de2c3fb","block_index":310662,"block_time":310662000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'fb1c88c2551c8c3c05fe734847a4ebec6a0f610062f53fa61330b99d69709697'); +INSERT INTO messages VALUES(1656,310662,'parse','blocks','{"block_index":310662,"ledger_hash":"09d5b89e5eb641c4e6474a2848510151fa3e2d4ea21a227b67739aeb349390f9","messages_hash":"09c3fe8eb995c190aa10ff3a1fb63ecca44e5d3af00e6ddcd2ed9b2f316cd91d","transaction_count":0,"txlist_hash":"f2793e5e7ce5de99061d249b7eacd8c31a0b59c839a6f32905aa4fe955458137"}',0,'BLOCK_PARSED',NULL,'8d727e681a11af0b5f260179544e672f08701190310e92ae78d20e6a6f827fb1'); +INSERT INTO messages VALUES(1657,310663,'insert','blocks','{"block_hash":"7625249e17d88bd2a50e81ae7ffce70b7ee4f712eee316fc67afe1c47c4a4028","block_index":310663,"block_time":310663000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'aeece97be2bbd356b70b3bcee402336a4940b06f610ebcae1603c271d1b5b6e4'); +INSERT INTO messages VALUES(1658,310663,'parse','blocks','{"block_index":310663,"ledger_hash":"7fba57a8ce4fe3e9ab99dae9196c9676179509a970b7441b506ea23b572b7451","messages_hash":"8c7a7287d00026bb5c9e088d7663ecde79aeb0d17da15745c1575ef825828669","transaction_count":0,"txlist_hash":"f2f60e0e823edb418f01614f56dc15887f96fec107ed52406627f035c7efdd21"}',0,'BLOCK_PARSED',NULL,'817b042f1b28b2808a994f8232358e842e702ae2f78b7dba9816b7c6e6e15774'); +INSERT INTO messages VALUES(1659,310664,'insert','blocks','{"block_hash":"ff35b504ee3d48dc4a0ac8b688594d86947e2af92a3188bacfa38aef4dea8247","block_index":310664,"block_time":310664000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4c0fa8ae144d2de322f873a788c096fa0aef18507e69e4fe8eb3531035aca20a'); +INSERT INTO messages VALUES(1660,310664,'parse','blocks','{"block_index":310664,"ledger_hash":"79b688b3fa5dd80ff80ff7ae86ae0a2113a95de65e0abfe8277557335a64f8f9","messages_hash":"57865d5417b51fccb6ac6cc387727060461274be20ab84ead3321f54a0b1923f","transaction_count":0,"txlist_hash":"229a5edda5a8c504658c57bd7e776fb286c26031658efcc68c0e0bd80566e20a"}',0,'BLOCK_PARSED',NULL,'c9cd4dd7d9556564d4dd677da8aacfd9c37915dab2dd7e726dabbbffc523b239'); +INSERT INTO messages VALUES(1661,310665,'insert','blocks','{"block_hash":"8aea5e0436d15a44620d181ee03d789e5bec0aa9c84384919ef35c7ac78999c8","block_index":310665,"block_time":310665000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8fc394a9b1cd77143534e952f494726a1afc0439e28b523467d2a1d6d408b70d'); +INSERT INTO messages VALUES(1662,310665,'parse','blocks','{"block_index":310665,"ledger_hash":"c921ed3cbbfbd30927a531f9ed42e6b3f2982851ccafee096a9d1fbcf74fdcb1","messages_hash":"fe8751576843309c746e5728d805453da4ec617c15f9459bb3cc88f64d1b5442","transaction_count":0,"txlist_hash":"b3e7615a7e9b22882a5d63ec2c1e4944ffa550aafb856db4dcd03f659eb73d8f"}',0,'BLOCK_PARSED',NULL,'7d51f32a93a76bb4df6b6fff54de276b7c0e3545f98ac453d30cd4ccc3a3351c'); +INSERT INTO messages VALUES(1663,310666,'insert','blocks','{"block_hash":"de934d6e2642ccb581002ee650ebe76b2c88e2facd253b73c45b964dcf469c52","block_index":310666,"block_time":310666000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'decede98cf8e799022a3bcf6450ff6fa0b8c6d38d2c91942f62d6c5a21042233'); +INSERT INTO messages VALUES(1664,310666,'parse','blocks','{"block_index":310666,"ledger_hash":"8812fdd368acd947add7a0eca401d0e55f9a5d1d312fd1bc21337f99344c38ec","messages_hash":"4199ce88036411d4f1382993cae587f40a12719031957286cbaaa003352de716","transaction_count":0,"txlist_hash":"9f5771d6fb484760ae44a0b7141c89e288c483d5408e26e811fa4612ca68a3ad"}',0,'BLOCK_PARSED',NULL,'4fa8eb31218eeeea636de5960799db9095871bd7c02cb1d86bcaadcd080ab689'); +INSERT INTO messages VALUES(1665,310667,'insert','blocks','{"block_hash":"c8037bf10c1bdb21df72a9a90db87b11c967d6ae81c5f132ce8e42b1ca888f83","block_index":310667,"block_time":310667000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'5e28eb63fdf643671b5c2adc77949f27a2370341136b90f769dfc297b0b3e569'); +INSERT INTO messages VALUES(1666,310667,'parse','blocks','{"block_index":310667,"ledger_hash":"f447fdf0d4c878d528ec468aceb8c2ff833ddd656933e2ccde2dbb3b0f591756","messages_hash":"17cc943432dfa9ff0b5c8065d76f0a6a504328b34fd7661e9ba8aee853e736ca","transaction_count":0,"txlist_hash":"67d4cee1acc31181740c2f05b12144c7184111c5c12b4c0fcd43455e5b1d1e00"}',0,'BLOCK_PARSED',NULL,'2f96c0288fa0bce5c4cc9a494ac6ae425553fd7bdc098e3200731c8d1cc1c8f9'); +INSERT INTO messages VALUES(1667,310668,'insert','blocks','{"block_hash":"699ae965398fbe98ccbf01384e3ac32d2f778e21998302827010869199aaaf27","block_index":310668,"block_time":310668000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'113dc40a9f0fbcac361bf35f72ccc822cfdd4836b63e2da2f48493e7c2252bf4'); +INSERT INTO messages VALUES(1668,310668,'parse','blocks','{"block_index":310668,"ledger_hash":"a5c44b4e330b04bfb41210684e1c10d6c5b37fdfc60c7693d29e497604efc40d","messages_hash":"d128c60f42a5c5091c0a4983086e97d7a713ba45e77fdab3adf19937f8e3498f","transaction_count":0,"txlist_hash":"d352c080a6cd8f5ad10a897a2300f6aa87bee31d8f47ab9477a96b96935c5ef8"}',0,'BLOCK_PARSED',NULL,'7e3061d8dd5adaa21b6279e9e3d6d5971967364b9525d40367d960338ad6f14e'); +INSERT INTO messages VALUES(1669,310669,'insert','blocks','{"block_hash":"c02a1ff18678c02e906a81ee20511b34be69a577651a763cb7ace89f7b04aa1f","block_index":310669,"block_time":310669000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'68b61abd32b680f1546602460bd31adabcae424f60246c8f245d212043c585e9'); +INSERT INTO messages VALUES(1670,310669,'parse','blocks','{"block_index":310669,"ledger_hash":"487adf783efd74528548f13f83f6bc7dcee66428a47bc9307bfb4da2574b0455","messages_hash":"23c3dedf4c2c995507fa4aee2f67a22dbb1d3bac74ae97135d9bde57db53ae6b","transaction_count":0,"txlist_hash":"780251573f61009e4ac61ee4879e60ef6cc072785e6c57c2dacdd57fb03520c5"}',0,'BLOCK_PARSED',NULL,'7b9b7acf72558bd335ac4e790849ba725f17952d25ee9d19bd93e0d1623cea4d'); +INSERT INTO messages VALUES(1671,310670,'insert','blocks','{"block_hash":"9c043e45204b5463d8138e24b46b57b486f07c264dbd6b09356a75ce15319944","block_index":310670,"block_time":310670000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f9dc3be9d4d23d374615fcaa93839605d533cd509078f7a8b2c53038d3d49c4d'); +INSERT INTO messages VALUES(1672,310670,'parse','blocks','{"block_index":310670,"ledger_hash":"99c788d6b71852b0c120368969b650b105fb1d26b40cdcfa0456f22645d191bb","messages_hash":"cd72d8b6123766cba5fbe61bf283005394bb86119d48a587098ebef16565b3b3","transaction_count":0,"txlist_hash":"b6a1180e0a158145ea9cad059da2c082e2ae84941d0f90fb11addae85d081964"}',0,'BLOCK_PARSED',NULL,'c0bf00bbb6ed2349cddc979ff5f72bae0d40cf3a881175f96a81825990bc4560'); +INSERT INTO messages VALUES(1673,310671,'insert','blocks','{"block_hash":"4c6fa9744f58b8804901b138d7e65070d8339b557a22ed61b4511a401fc90522","block_index":310671,"block_time":310671000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a3a4f71afe4c125652f5951c376844aadc8f466c8746bbd98e9881492ac095b6'); +INSERT INTO messages VALUES(1674,310671,'parse','blocks','{"block_index":310671,"ledger_hash":"dcfd2a27a1aa5c70719cd98c19e05722adfbf433f7cc65f61fe7ad616772107f","messages_hash":"4d25a61a62dfaa35c46d23442c8061082118697ff1f6a2f83a7e93a4c3bef17b","transaction_count":0,"txlist_hash":"bf87e973ededd051c8bd23ccefb1de6528a82b1071aa3b791eb7c9263e2d8ff7"}',0,'BLOCK_PARSED',NULL,'223b8bcb825d0e9053a42d989e673687f8d02d351acff28c6663b55609fc2859'); +INSERT INTO messages VALUES(1675,310672,'insert','blocks','{"block_hash":"491314bee5881d93a5e646d2e911b30fe6b43f0cb7458811f7d9679b2f7074aa","block_index":310672,"block_time":310672000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8a704bb75c556635b8e87902d390d4521945e88b1ae902fc25011a045bf0e780'); +INSERT INTO messages VALUES(1676,310672,'parse','blocks','{"block_index":310672,"ledger_hash":"ffb2a57e077c5bd7203dcd2983d53090c0d274550510108f21731cc5496f9596","messages_hash":"e8f714708ed313b54843d86bce11e14197008782970bda8fd32acfcf992ada3b","transaction_count":0,"txlist_hash":"faae8112e80bc60f69dbae4257809ba549b0fc2b4927357945392e3843d34192"}',0,'BLOCK_PARSED',NULL,'71fd1a125efe5a5480a99fbad561b735ff41da1affe51167730b151c432c3f27'); +INSERT INTO messages VALUES(1677,310673,'insert','blocks','{"block_hash":"03ae6af5afe6e7949bcf4039e122a60c97baf807e7b24bbf95881e0797b9e2c5","block_index":310673,"block_time":310673000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'186ac25fffd6a3f18b7a91c87f075129899e484ff1935165f27f9a7ba1fc8fa5'); +INSERT INTO messages VALUES(1678,310673,'parse','blocks','{"block_index":310673,"ledger_hash":"6afe8838d8bda0874b9bc0f7d569e8571bf4c429933b7291bc0e8d911632870d","messages_hash":"c9b97bf0b419128433c5dc9ab3601a8f2f7548093657fe0139d8a4f7129ba4f1","transaction_count":0,"txlist_hash":"1614c8d076a5878f09a0755de3d774e2c3334884876b3b6d730ce1dbb910b2f0"}',0,'BLOCK_PARSED',NULL,'1c018a05eb95432dbbe5f52a94d6ba8b7d85d653a99c61153e3f81c32f46fc42'); +INSERT INTO messages VALUES(1679,310674,'insert','blocks','{"block_hash":"9e8b0b0ff1bb6fb1c88c7fb75f560e41f4d1e72c890c49a4c794db3508bb193c","block_index":310674,"block_time":310674000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'57b05ddf3b853e2f4fe95a026a2296fe4ae7bff7ee08972ac6ce0594e7c6d7d2'); +INSERT INTO messages VALUES(1680,310674,'parse','blocks','{"block_index":310674,"ledger_hash":"8494a7f9f04fa6e7ca8d3ddc17df63f418a2ec5489e8a1aaa4be40b7961b0636","messages_hash":"020ae0e030f024772bf84bd68ea2fd6b2ddad3d99d41538b934e311bff0db058","transaction_count":0,"txlist_hash":"2d25ca16358d0209557c678cd2f9826d9e15f45ee9bb1211adea973da62d0116"}',0,'BLOCK_PARSED',NULL,'44f6c7ef0a18ca3bcd2177a5041d4bff3fcbfd4e965d9da8df79c9ddbc7ac5bf'); +INSERT INTO messages VALUES(1681,310675,'insert','blocks','{"block_hash":"e84ef8d1cb7d22c4aa9c1d7b7570d6e14c6cdb84e00593a13f5d64a4313c2e21","block_index":310675,"block_time":310675000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'57bd6b8b984269415a0a1109130a7aced56b3779ac6575314d57b5968e576992'); +INSERT INTO messages VALUES(1682,310675,'parse','blocks','{"block_index":310675,"ledger_hash":"5081aed7765bad7d97520bb933cc3578604a0b3c64bc51b6e3853d2fafaa153a","messages_hash":"966422cf3481876c2a8de3c6774043660567acd7616ed0b41a5bac2ef829eb22","transaction_count":0,"txlist_hash":"bc62362dfb5ae26d529f4c5ed88f8096de03718447326cfbad2a807144c1889a"}',0,'BLOCK_PARSED',NULL,'8be43e50e50443bd1799b37afd36c10a3b7a4ba682ae36f441927e0df0eecca9'); +INSERT INTO messages VALUES(1683,310676,'insert','blocks','{"block_hash":"312bbdd1f53a4cfe3fa9c89f4c74b63972466bf2478c434fe7ae775ea3fcfcc1","block_index":310676,"block_time":310676000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4b8ff6590ce240e305cbd2c840ca23fc2e09bf4c2ca1eb7ad2b1df983e0e1c7d'); +INSERT INTO messages VALUES(1684,310676,'parse','blocks','{"block_index":310676,"ledger_hash":"d7907d60b2afd888983618f5b04fd05c23675d76d7b1aa8f0187733e94d86043","messages_hash":"21535ccf00468ff69ea89d28679b6d2f9fe04539eb3fe7ef1bc5b74a56c8e1f9","transaction_count":0,"txlist_hash":"d8bbf9bb6af7bf95569dcf56fb8fdefca64695b5c021bb698a0c6edee9e447c2"}',0,'BLOCK_PARSED',NULL,'7751fd491994f95e368109f2bdba96e3393945b8071262f2ed4c88ab8e63f0c7'); +INSERT INTO messages VALUES(1685,310677,'insert','blocks','{"block_hash":"4b8f11d65385b9ccb23688a124ff536f164014fca6c7d090e6e873acb3e5843a","block_index":310677,"block_time":310677000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e4bb5d987d85954dd93cd155740c3911b00014e5618bfa4fc26358e1c727e406'); +INSERT INTO messages VALUES(1686,310677,'parse','blocks','{"block_index":310677,"ledger_hash":"a8a6093432008f24226584a1491f49355b4be310bece623e5a6f4191790e38b8","messages_hash":"743de8d2c0c43daa862f26d9afcaec030e617679b18d599f21aa07a51f3779f5","transaction_count":0,"txlist_hash":"7c5bc34c11f251b3748c337391be8e8f74a0399b3923627ebf9117e9276af31c"}',0,'BLOCK_PARSED',NULL,'f878d9044f24403cf596a25c9866e34c949f911294b49630835d4ff4455d2bee'); +INSERT INTO messages VALUES(1687,310678,'insert','blocks','{"block_hash":"d9bec9099ab0e267783576ac0d03cb1eeec78a0d892f30843f802d6740bef21c","block_index":310678,"block_time":310678000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'871fb8e3828fef4f3b69b7dcf98549fa6d39937d5eafa2cd3a3d84bb908e3ef6'); +INSERT INTO messages VALUES(1688,310678,'parse','blocks','{"block_index":310678,"ledger_hash":"793feeaffddf01e00020ad32155d6ab5cb9a4fdc4d49f3ab677169d3615b04ed","messages_hash":"3ec1efc8ab70c4a92468aeccc8122a5b35ffcde62e76e2116f0d556dfa86f9e4","transaction_count":0,"txlist_hash":"41eb202a56ae084f3cc1457d3c17cb7eb2214a8cc385574f97a5d0913086f931"}',0,'BLOCK_PARSED',NULL,'1e74a01985cf2b82870850992e3ec0ccf40f02a41526737362059fcec979665b'); +INSERT INTO messages VALUES(1689,310679,'insert','blocks','{"block_hash":"be81f07096cb9815706aa9ddfd6f3765371e83b38576ab135204a632b963e69b","block_index":310679,"block_time":310679000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'a7d62255d5833b8606f7999a451136b54630ac73054cc3c964cd1f0a848968f0'); +INSERT INTO messages VALUES(1690,310679,'parse','blocks','{"block_index":310679,"ledger_hash":"3e07a5e2d4f38398b1d5f218cb8ba6393336e1e3fef63684c4076d5b856d4135","messages_hash":"bb5490deba2ed5b0284ca703457ecfe496e5e8415661f71efd376839460a6da2","transaction_count":0,"txlist_hash":"a27ecd72192938a3eda2a91456903b4bd0a1b277166e38937262a7c1a5fab580"}',0,'BLOCK_PARSED',NULL,'6a1157a582689f910bf2bdb15b8d5479f055036654bf55f2ed66f7d70e54658d'); +INSERT INTO messages VALUES(1691,310680,'insert','blocks','{"block_hash":"239326ce9ae5b46aa361ba49843329b17d5b8145a8c5701e7e482e20736cf9d8","block_index":310680,"block_time":310680000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'29414d486a5107797a2fa3e34abc5699f654afabe221bcaebd1b4c30c77f118e'); +INSERT INTO messages VALUES(1692,310680,'parse','blocks','{"block_index":310680,"ledger_hash":"fdfab5abd301a27e1e91310ea0abde8697cecfed231ce524a5607e8acc6c02d3","messages_hash":"480df2e104312f96e95ff4e4c4cbdff46e60e82c4a9957aff6f9745c3a55faf7","transaction_count":0,"txlist_hash":"19abea6cb809e0ae492acf291a5dba572a871622f4c5e675557e8d2f37102e09"}',0,'BLOCK_PARSED',NULL,'b24d5e5548f06806034606fca289b157ddf2031cdad79e4401c6c4e290a5afb6'); +INSERT INTO messages VALUES(1693,310681,'insert','blocks','{"block_hash":"0697e8d01967b24d7650c3ce1101c90e988a28afd894e1506505a00bf9e69f41","block_index":310681,"block_time":310681000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'9db134aab03fbc0af2f8556bfb1fe8986a8f1c1cbd1af316fd911c4a90bc669b'); +INSERT INTO messages VALUES(1694,310681,'parse','blocks','{"block_index":310681,"ledger_hash":"662517b0bb85a3742a0d81d1b4aaac6f2a8a4dbe7e8a6a20776c5514d9e14a48","messages_hash":"4c75399acf36a3d44bcff773c9697a10def80dedf2743e7e11bf43ef2a7e7b28","transaction_count":0,"txlist_hash":"7f0276b2f2d61b95e407e95777aa4895e887111b0281099b9c5a44dbcd31f22e"}',0,'BLOCK_PARSED',NULL,'9102eb296905076f8cd9762aa043c355ef860610814231af9d29d49fbe98b350'); +INSERT INTO messages VALUES(1695,310682,'insert','blocks','{"block_hash":"9bc8c24f8bbd03ae896235960d75749ae2f9f16525c933ca7f546fc04d334c55","block_index":310682,"block_time":310682000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'82febf89223154354ffea4f987cababa921b2f61dc4e5d22c2e66c734272c0f8'); +INSERT INTO messages VALUES(1696,310682,'parse','blocks','{"block_index":310682,"ledger_hash":"f7a309b6131c802520e6577c3ed7ee05e99f0e231441801a9b1bf2a430950a4c","messages_hash":"d10d85d191a82d37b9a8d350f06a6a67b750d54856174caee570023070f39b9f","transaction_count":0,"txlist_hash":"e9cd2133c276de01869a39f4c703d2f8236b0b1b79bcfc53a4e3d8967785be9b"}',0,'BLOCK_PARSED',NULL,'7b6e38eee29ddc863f342496997d4d176c3c193316c14abd0770ea84168ebb0d'); +INSERT INTO messages VALUES(1697,310683,'insert','blocks','{"block_hash":"ad6e6b13d5c058aadfae019decb3d2c154d538aa8753c9ada94db18e6d499511","block_index":310683,"block_time":310683000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'86a2d651110c66e4806461aa8482b9bef5cb0e1b57f15f469e0bd31748b9beea'); +INSERT INTO messages VALUES(1698,310683,'parse','blocks','{"block_index":310683,"ledger_hash":"2cdd3fd5a05e6fff02a5e0747dc3b28e68c13c0ffc521c85e7de6dfdc22220f0","messages_hash":"49402605fec7d667e6283a02b9fb7f7f614efd582f0253ce1598d65096d22de5","transaction_count":0,"txlist_hash":"267450473f906200e5c2c6912b2ad40150573506e7344e632d338485e3f78192"}',0,'BLOCK_PARSED',NULL,'b2ba63c4bfba3c71b88a085978880954eaed88cad1a4676dd122bcea6b714a27'); +INSERT INTO messages VALUES(1699,310684,'insert','blocks','{"block_hash":"d0d985b69719bb289bc917742a603c3e7d9839d39ef9afdde4a8e0d0739835c9","block_index":310684,"block_time":310684000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'abfa267384c935e704f746fd5f9130ee5be438418d8fdade427b133b09b49681'); +INSERT INTO messages VALUES(1700,310684,'parse','blocks','{"block_index":310684,"ledger_hash":"4b034b1352ed16420f29905e00a54a82d238d2c4bd4d1fbb17a3b09ea9886391","messages_hash":"2efac46039dd7f35bf90c8456118a18c1daf3099a5f2586d20d0f5d14438654f","transaction_count":0,"txlist_hash":"80f0ef1728184f040fa9d640aed74db77ff126c31413c88816fc0a3b01c47eb9"}',0,'BLOCK_PARSED',NULL,'ae5918247a93df0bc8f40e724a728ded533e4173e4107f576034398170c20e1c'); +INSERT INTO messages VALUES(1701,310685,'insert','blocks','{"block_hash":"f5aec0f5dd7cad893104f7704e4a34304fd4e2620517e7f18e993d49ab1a98f8","block_index":310685,"block_time":310685000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'8635a5d4bbc47d72f4677350712b4ebd1619d9586482f404fe9132da89dd403f'); +INSERT INTO messages VALUES(1702,310685,'parse','blocks','{"block_index":310685,"ledger_hash":"af82d0fdff4a89d3b0944673aad1328ba0827ee606d79dd7706e297fc4fc2204","messages_hash":"4a9bdc220cf3a3ccc62d0124a156c6d64be0f26e02e8fcd5ef0cf0baa95bc839","transaction_count":0,"txlist_hash":"b8b940808bcd9e0a6d5d3b0dc001b185c7be5bd862d8ccd5c1860916b7d666d3"}',0,'BLOCK_PARSED',NULL,'10815edb1fbd3bbc4a184cb1c268999a1cac6ffbade57e22dbf2316bf636225c'); +INSERT INTO messages VALUES(1703,310686,'insert','blocks','{"block_hash":"a7466a4c47b167bec3720e7fd69772168d606e4edac7e44e55f411571cc603ca","block_index":310686,"block_time":310686000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b78a858c8ef5c41550808721e7bfbefebcea058b07f4a283f93e66f79b472227'); +INSERT INTO messages VALUES(1704,310686,'parse','blocks','{"block_index":310686,"ledger_hash":"c037ade6c0c1ab3458c4d3bba7d91e0cbed94027e3728e84d9facfe5763ef6a5","messages_hash":"658a28fb1894e654ec06f9eb52f741d780b93fb31f2deea39cf06ac25c3840ee","transaction_count":0,"txlist_hash":"8fd8812c2f3696baa9f0f5714aaeba990fb7a1711c583937002babe776964c05"}',0,'BLOCK_PARSED',NULL,'6c22e013ee1c068dbac9aa741aaa1c172c1f149d0615183a4cfd6231a2e8bc59'); +INSERT INTO messages VALUES(1705,310687,'insert','blocks','{"block_hash":"c33713cb462046341ff116655bdb0614ae7726888f57e6493fae63d5a06d7bb8","block_index":310687,"block_time":310687000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'d96d6c114d9aca626aaa9ecd97da2bab8700b67f4df750f033b5587f96272f3a'); +INSERT INTO messages VALUES(1706,310687,'parse','blocks','{"block_index":310687,"ledger_hash":"630096dcc99d532acf6415bf4504525aa85f460fd177c4bc82fd408efe59415e","messages_hash":"019870609adba0019c90f7dd9f8b17614d261c3cf7a61ae160b86bfa1b25fb37","transaction_count":0,"txlist_hash":"2215a8448764b62467df6b53cd807cc9410850d73d728a81c753eb70de99e486"}',0,'BLOCK_PARSED',NULL,'2fd72834877b83e65375b09836083fe1e39807501ed9a879f4ff8e0c6bf637dc'); +INSERT INTO messages VALUES(1707,310688,'insert','blocks','{"block_hash":"3e802519162b52001ff1cafc7892747054d50f03d642b09a1ab0dcfb9cdbf822","block_index":310688,"block_time":310688000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'21fdbe2a2156d026e5e0b08bbf808e1a23cd77eb47b10e2fe05c96cd9c5039ea'); +INSERT INTO messages VALUES(1708,310688,'parse','blocks','{"block_index":310688,"ledger_hash":"315c5a67d6b9b410a0aa70e0bd8efebe6f78757a09f91863c7f5e1efe47e9a9b","messages_hash":"7396798913c2aa1b4bcd2bbbfe65cdd71e7696a73381ffda432cc15edb0d3dff","transaction_count":0,"txlist_hash":"9312287eb460a866f6c18b0b28dd23fff23d408a84422a87d69a561447c9ffaf"}',0,'BLOCK_PARSED',NULL,'f92d913e16ff4a336d2ef20d99cff94267be95f9adc07ce221f624416212ad73'); +INSERT INTO messages VALUES(1709,310689,'insert','blocks','{"block_hash":"d400463f1c0388bfc6ab6deddb018144f6db53b604c549f1fbda8211de1755df","block_index":310689,"block_time":310689000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'41afcdabb35ba4fcf29cf0ddd4f41d76f15ad20b46129c04599888001bb96cf8'); +INSERT INTO messages VALUES(1710,310689,'parse','blocks','{"block_index":310689,"ledger_hash":"5c6ee4e9df30959f31d2232cdae7b13557e373982a03556ed1fb65aa5e3895c7","messages_hash":"5df7700c6470a74217bd1149ab2f74d95c72a2199afa414e0004ed291a05d26b","transaction_count":0,"txlist_hash":"a7c5b3bc4269d9a63804bdc4e2693fd03e4e529b183510685df746092e94aa5d"}',0,'BLOCK_PARSED',NULL,'cdc7c7af4423e30570f1c16d56cc45965eaf7e9ccea5bac01c7d54084f761429'); +INSERT INTO messages VALUES(1711,310690,'insert','blocks','{"block_hash":"0beb7cc3cd4d229f7c538e98c1f8d9f10f00fc64d91a5acff5ef892e4af65462","block_index":310690,"block_time":310690000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'da489bc528d5b94c41b938361e325fad26ccbfcea66512ab93d3e360f2e4543c'); +INSERT INTO messages VALUES(1712,310690,'parse','blocks','{"block_index":310690,"ledger_hash":"1295c134cbb5678c7a4f70013dfe3eb624bb814ec039303fc10f2c7789e41a03","messages_hash":"4ea45cd902e2b0822366150c090fe0fe6318c45be9863619512eb5931499bf9e","transaction_count":0,"txlist_hash":"6310ce87234c11efea223c58d571cdbb3f04b51a3056236cd0f22cec7bf1e5c1"}',0,'BLOCK_PARSED',NULL,'faa7c534a2f269c47ed521125f0f0d3193bafb20be2a5bab589b376e0529a87e'); +INSERT INTO messages VALUES(1713,310691,'insert','blocks','{"block_hash":"07253277584631d8dd356b4760c8802b1b3f74e39ee13584ee523e0d0fc50b6e","block_index":310691,"block_time":310691000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'4a2479b718d60fc7c1d8e3cb6cc0cae812d5842dcb2496bfea56aaf281de1825'); +INSERT INTO messages VALUES(1714,310691,'parse','blocks','{"block_index":310691,"ledger_hash":"76f74700787e68ae14b3812f53c32417f57de06ed6188b1992ca412570bc1ffb","messages_hash":"f4de1c5339512dcf2b1287e09d8877be2d2ef017f10fade68472c7371cfbf790","transaction_count":0,"txlist_hash":"774242c764edd3560409137905de9c9d818364aa94f62c47a621afe1087136ac"}',0,'BLOCK_PARSED',NULL,'653637369c7eee89df85bbe940bd7dcf9e1b22db79760b20972f63243cb921c2'); +INSERT INTO messages VALUES(1715,310692,'insert','blocks','{"block_hash":"29f6baf3c618e1bcb16cc413890a0b2a458d05a2e60ccaba92fc83096846c932","block_index":310692,"block_time":310692000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'e16a43199c94515468346e9a23dcbf9187952e77cb2984f165a5f34e37721fbe'); +INSERT INTO messages VALUES(1716,310692,'parse','blocks','{"block_index":310692,"ledger_hash":"7c0891d494e5abd9a44a4f7c70e67a547160856119c3ef06113f517e1ab9d390","messages_hash":"508125f63c3de10d645e22ee4cc4f61950c86ad23474ccf5ac2b5e8910df7572","transaction_count":0,"txlist_hash":"df166db54b869212308c6a48d3ddb80bc0a84be52434c46d5e6e2d6499167bb0"}',0,'BLOCK_PARSED',NULL,'ecda8e1a989b6963a4b53e8e21039f7867b38dfe6020fb776bf73afaea64921a'); +INSERT INTO messages VALUES(1717,310693,'insert','blocks','{"block_hash":"c7520c5e5a5f19c4aa0859c399a1288c1c357d29a6a4446855bca61af38277e1","block_index":310693,"block_time":310693000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'ac5978bca25a97c9fffe1bfad81dfc47eb251b9008e0970c8b3b656b8b66ae38'); +INSERT INTO messages VALUES(1718,310693,'parse','blocks','{"block_index":310693,"ledger_hash":"0d30c6bb764b32d0ec856145453de6d0e15ec0b8a94f978f2d96c3c5d134912f","messages_hash":"cac03fdc5399fe770bc905b3ec76aa9a46a8808b520426f319aa7faf455146c1","transaction_count":0,"txlist_hash":"992af64c887f105b985137b441ef4a3af3ff902f5dbac355b91bf0ebaa234063"}',0,'BLOCK_PARSED',NULL,'fa9b7e385cb1c6ac2f0f30f36a5dfafb2c197f387fde183d0de09e62a23e3de1'); +INSERT INTO messages VALUES(1719,310694,'insert','blocks','{"block_hash":"586e9f2ece2b1d03767d82fe988632d69a7827333860c58460abc7a5b9b396a0","block_index":310694,"block_time":310694000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'27faba44fcf336ca3a4dc43d11e4a2e20bcfbdaa7edf20fb2f47020a60343f51'); +INSERT INTO messages VALUES(1720,310694,'parse','blocks','{"block_index":310694,"ledger_hash":"582bf82bf4bf07a0d20259ae9026e726afcfff035ce715d13a473313dacaa5f1","messages_hash":"44f8b452d9ac57fee090eb5d5626b32a388955bb30c5bca995ec3175e87bb4d0","transaction_count":0,"txlist_hash":"52939845593123714b4bd665600642d14b61a384befa3498c7582806448150a1"}',0,'BLOCK_PARSED',NULL,'78563ecd61311a0d3c58f73b10b8315531500f90e574c7762169c253273ee57f'); +INSERT INTO messages VALUES(1721,310695,'insert','blocks','{"block_hash":"a1803237d72105847b97a31294e91e7374ff47bdbc4e374744a8754a41423538","block_index":310695,"block_time":310695000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'59e7a8cf2bce9b04109835d493e03d79e612139ec5373356646fe4ac4acead2c'); +INSERT INTO messages VALUES(1722,310695,'parse','blocks','{"block_index":310695,"ledger_hash":"d5ca4a21b2fbe8121c241c097d9f76156106b345296426b5b55bc4885fba4b80","messages_hash":"cdb61ca3479bf5ad207d85590e721983539e58188ddf7f8b539e0e7a02b6463d","transaction_count":0,"txlist_hash":"9b08253a46b87ab3df60af60b519dd0c689c0acaca38bcc33f01000bf6b871d3"}',0,'BLOCK_PARSED',NULL,'ab9cbddeef0ec6238b801110a241a4ea54391952bbdd68c98fa1022ff425ac8b'); +INSERT INTO messages VALUES(1723,310696,'insert','blocks','{"block_hash":"7ac8080d89c8a8245703603c294c5df90a342bb4a325462e65827fd709ab0fa7","block_index":310696,"block_time":310696000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'13c5c3fa4603789ec0589d734dbb0588d3af2d56bc3c6febb8fc865fd5187836'); +INSERT INTO messages VALUES(1724,310696,'parse','blocks','{"block_index":310696,"ledger_hash":"75b37c234c5951fb06761175db6d2a9584aa779f35f2f1516ec828230b6b1383","messages_hash":"ffd24c9a2503318daab14dd046c526ed11ed3bfd5bb8207cf0048bc689ed4366","transaction_count":0,"txlist_hash":"deb12f7c45ab5944a6e08fb2933d3a435860f9e1d8a758486b5e5995258ca973"}',0,'BLOCK_PARSED',NULL,'ecf5ded13674a94bc13e9246076025047de75ea1653f8496b42d92546856fbd2'); +INSERT INTO messages VALUES(1725,310697,'insert','blocks','{"block_hash":"4fcf90ea3f5b4f6c003475c22f583053b5f7b6e0ffe12341b0993ede4fa8f304","block_index":310697,"block_time":310697000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'f042e22c5995602cf5dc7d29dda74a27c5265f921c45e1974dcb8d10e11a6fc9'); +INSERT INTO messages VALUES(1726,310697,'parse','blocks','{"block_index":310697,"ledger_hash":"ae9aa7c4e06059f148a8ed8bf2a4f69c492fac7109a778afbf6cc4d96d36dc55","messages_hash":"b6a66a5e44254ed9459a2fa8a198d060e218db5dce05a6e3904336be3ec5d0f3","transaction_count":0,"txlist_hash":"663e67da5996a4c9877a6c6cb61730798695aee9d89674823917dee2d1ab9708"}',0,'BLOCK_PARSED',NULL,'06db022189b7650549c4400f6f776283435fabb1572e79f4f979cc91b41c91a4'); +INSERT INTO messages VALUES(1727,310698,'insert','blocks','{"block_hash":"ab4521982489ec4c2011e8f374ab83f249eeee42f51009b1b5647b998d854c53","block_index":310698,"block_time":310698000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'77ae646c3924ee2722490da742435e08c45920b8ffe89b5cd77bd8031bd2ac8f'); +INSERT INTO messages VALUES(1728,310698,'parse','blocks','{"block_index":310698,"ledger_hash":"aa8b6ca04c8551bacd6f964f2521c07b30d3c07978c992dc59633894ad1baedc","messages_hash":"6b61c09bd220de51ea7ce3730d0fb6562e321e30c180ed71088da4b2cc1bd71f","transaction_count":0,"txlist_hash":"9b6c282c7fb96cbca27fe6b73253cfc31b93ff71dc0d116ebd0d661c33adde58"}',0,'BLOCK_PARSED',NULL,'6c9c94e1f5eb797422a18ef5a68f71acec1b221a57926b1164d08abd08c71e9a'); +INSERT INTO messages VALUES(1729,310699,'insert','blocks','{"block_hash":"3f34102183af409ce39d0ebd3be002cc38e973a0b3492fc9c1e0dd5813941d1d","block_index":310699,"block_time":310699000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'41153eac52c3c57bd96d507a516796b797d6e7b23f1a3364fa9dad2e2636c859'); +INSERT INTO messages VALUES(1730,310699,'parse','blocks','{"block_index":310699,"ledger_hash":"66cf0537b2abf572ae579fdb3512d125c181e2a1835b38f89cfee64113922cd7","messages_hash":"f9a65859e75811f5fff2ece7af021acfbe3f359717c438b682fbfee5c178a0ea","transaction_count":0,"txlist_hash":"d91fc03fd15e2ca4fc59b7be29586b0c8f2942abca45ccb49f2fc84e3eff8f94"}',0,'BLOCK_PARSED',NULL,'03baebc0ec312e935fece52fded073b92e15903e84cfa007600d2d53620124b7'); +INSERT INTO messages VALUES(1731,310700,'insert','blocks','{"block_hash":"4f928d25664bb6ac693dd70e408dedc257abcd4cfb1f7ab6fabd8970cb663fa5","block_index":310700,"block_time":310700000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'bc2f39fbdaa05e839c98f107cc6f590ec32827f00ae787e85aeeb9cf5870f188'); +INSERT INTO messages VALUES(1732,310700,'parse','blocks','{"block_index":310700,"ledger_hash":"43196ba8bf43fd138dd117cb0a9c1738d3a2c8917c2ea73893647a2ac0fbe0b8","messages_hash":"a6aed16c4649d912789340a2a6a297058790efbf230facad044428560dc5836f","transaction_count":0,"txlist_hash":"1977d48057c66abe87f0bdffbcf4d501bd4b9fe138c0bc381409bc44bd503084"}',0,'BLOCK_PARSED',NULL,'a67f474d4b232e389a8c8bfbf36419aca577081deaa2f6bf1d1e1d21c6461677'); +INSERT INTO messages VALUES(1733,310701,'insert','blocks','{"block_hash":"9e2377aa8ebc26294dce0ed34dc1a071c67505a0cea36e0bec20d9ab0997f6e1","block_index":310701,"block_time":310701000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'652219318a210bb6b5f50a5d9e8aeeae1ee414367f65bd016a759872289de508'); +INSERT INTO messages VALUES(1734,310701,'parse','blocks','{"block_index":310701,"ledger_hash":"f235ba99322c9bf8dc115d7fe2b5e51db41b06026ac193718e47e89398c621f5","messages_hash":"b7a4328312125afc3fb1ea33e0d2bb7b8fae879670b170208355a4a27dc48150","transaction_count":0,"txlist_hash":"6b6c62d0facf03efea19bf2e8fa69ecd3c433d45a0ca6b3ed57ed0e5d69b1e2f"}',0,'BLOCK_PARSED',NULL,'4403c489ecab18b429700a3bea1c71f720c0c149f1030dd50e3e58790d335846'); +INSERT INTO messages VALUES(1735,310702,'insert','blocks','{"block_hash":"69cb443673c221a8e157d61707d52cf980c87faf5c3b31a5850ff43be70883c8","block_index":310702,"block_time":310702000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'82e90a84cea8c462f787d8b7a2c5f46e156ad0c94340671feb41d16c2db6461a'); +INSERT INTO messages VALUES(1736,310702,'parse','blocks','{"block_index":310702,"ledger_hash":"059893c8ed0250380ad8102a8a17d60a92f1abf09000ff41766cbd846aa1efa2","messages_hash":"5a3dfae16547617feeeaed1657c4375f36a5cd2dbbbd2fa22e4faf759f3c15b4","transaction_count":0,"txlist_hash":"0b912b59131e6aef7fb3313ef75bc138dc1f612d76e77cf583074564ddb6d35c"}',0,'BLOCK_PARSED',NULL,'b186094d3b4f3532ab157fced1068f83722bed6babcf00e698d4da98a0b4c918'); +INSERT INTO messages VALUES(1737,310703,'insert','blocks','{"block_hash":"b8b21ab596ed7ad84e449d098c04d86cbb6623c5e88af7772166882efbd91218","block_index":310703,"block_time":310703000,"difficulty":null,"ledger_hash":null,"previous_block_hash":null,"txlist_hash":null}',0,'NEW_BLOCK',NULL,'b3d6eee2ea836efb2e6712f661762cdc36f877bfa1531572d1fe6f98c58f5e4c'); +INSERT INTO messages VALUES(1738,310703,'parse','blocks','{"block_index":310703,"ledger_hash":"1734f9eb30868d2383fdb38bbda66b1b937209c143632aabc05bf1de167eda66","messages_hash":"afb721e64a36bca838751fa2eca929a4fe485fbe69f8fc944e90de74019fd629","transaction_count":0,"txlist_hash":"b5cae1a9f44982ed3dd38f90d95cba93efbe9fd1e55b0f367e45336f3e68f786"}',0,'BLOCK_PARSED',NULL,'fedce5d97e17f27770b0093b4c37deaa145b777afe9ffb057cc2d02664686ee6'); -- Triggers and indices on messages CREATE TRIGGER block_update_messages BEFORE UPDATE ON messages BEGIN @@ -3680,7 +3679,7 @@ INSERT INTO issuances VALUES(503,'9830e28496bb94f7e9f829abd26fd2cdce24ccb637e554 INSERT INTO issuances VALUES(504,'c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7',0,310503,'QAIDFAIRMIN',20,1,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc',0,0,0,0.0,'',50000000,0,'valid','',0,NULL,1); INSERT INTO issuances VALUES(505,'0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',0,310504,'A160361285792733729',20,1,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',0,0,0,0.0,'softcap description',0,0,'valid','',0,NULL,1); INSERT INTO issuances VALUES(506,'6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8',0,310505,'A160361285792733729',10,1,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',0,0,0,0.0,'softcap description',0,0,'valid','',0,0,1); -INSERT INTO issuances VALUES(507,'ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',0,310506,'A160361285792733729',20,1,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',0,0,0,0.0,'softcap description',0,1,'valid','',0,1,0); +INSERT INTO issuances VALUES(507,'ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18',0,310506,'A160361285792733729',20,1,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns',0,0,0,0.0,'softcap description',0,0,'valid','',0,0,1); INSERT INTO issuances VALUES(510,'01e52e3770a932827a4b4e5db193eef916fcf69bda1a7944298210a74f1633a1',0,310509,'TESTDISP',1000,0,'munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b','munimLLHjPhGeSU5rYB2HN79LJa8bRZr5b',0,0,0,0.0,'Test dispensers asset',50000000,0,'valid',NULL,0,0,0); -- Triggers and indices on issuances CREATE TRIGGER block_update_issuances @@ -4241,7 +4240,6 @@ INSERT INTO fairminters VALUES('13e642d78db80af715cdce12a9fca81965752bbfb5954934 INSERT INTO fairminters VALUES('9830e28496bb94f7e9f829abd26fd2cdce24ccb637e55488537a7080979ad9c1',503,310502,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','RAIDFAIRMIN','','','',10,1,30,0,10,20,0,0,0,0,0,0,0,1,1,'open'); INSERT INTO fairminters VALUES('c3d10301a50c49b3c9515f88847b92ce969729c194c064f411d610bc3b3704e7',504,310503,'mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc','QAIDFAIRMIN','','','',10,1,50,0,0,20,0,0,50000000,20,400000,0,0,1,0,'open'); INSERT INTO fairminters VALUES('0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',505,310504,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729','','','softcap description',10,1,50,0,0,20,0,0,30000000,20,310520,1,1,1,0,'open'); -INSERT INTO fairminters VALUES('0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9',505,310506,'mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns','A160361285792733729','','','softcap description',10,1,50,0,0,20,0,0,30000000,20,310520,1,1,1,0,'closed'); -- Triggers and indices on fairminters CREATE TRIGGER block_update_fairminters BEFORE UPDATE ON fairminters BEGIN diff --git a/counterparty-core/counterpartycore/test/parse_block_test.py b/counterparty-core/counterpartycore/test/parse_block_test.py index 2a2c1bfcda..e99998b216 100644 --- a/counterparty-core/counterpartycore/test/parse_block_test.py +++ b/counterparty-core/counterpartycore/test/parse_block_test.py @@ -18,9 +18,9 @@ def test_parse_block(server_db): test_outputs = blocks.parse_block(server_db, DP["default_block_index"], 1420914478) outputs = ( - "43a41365f86dad22e5fd750f826435564f637d284edef60771239d3110a85625", + "d8df3ad79b55cb37b404222bf4ba7005107b902b3e5e7738e933c858acbaafde", "4faefbcea82c4bea47a948e61f544290ad80aae7786afe521c57e0ab007cea5b", - "14bf365035558df77ec4890cb113a4c52a5428baf41a8d9e4a2c4632ae94744e", + "8bdc6176426f1778fa9ee00bb7f83eac7d036a0ef523d8ad0fce46869e64edf1", ) try: assert outputs == test_outputs From 9c6688847e1b4fb17e21609ee0d37e1a6a9f6d5d Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sun, 20 Oct 2024 08:56:51 +0000 Subject: [PATCH 17/37] Mandatory Reparse for All Alphas and Betas for Minor Version Bumps --- .../counterpartycore/lib/check.py | 42 +++++++++++++------ .../counterpartycore/lib/database.py | 29 +++++++++++++ 2 files changed, 58 insertions(+), 13 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/check.py b/counterparty-core/counterpartycore/lib/check.py index 6a492055af..89abe9712c 100644 --- a/counterparty-core/counterpartycore/lib/check.py +++ b/counterparty-core/counterpartycore/lib/check.py @@ -1009,6 +1009,22 @@ def __init__(self, message, required_action, from_block_index=None): self.from_block_index = from_block_index +def check_need_reparse(version_minor, message): + need_reparse_from = ( + config.NEED_REPARSE_IF_MINOR_IS_LESS_THAN_TESTNET + if config.TESTNET + else config.NEED_REPARSE_IF_MINOR_IS_LESS_THAN + ) + if need_reparse_from is not None: + for min_version_minor, min_version_block_index in need_reparse_from: + if version_minor < min_version_minor: + raise DatabaseVersionError( + message=message, + required_action="reparse", + from_block_index=min_version_block_index, + ) + + def database_version(db): if config.FORCE: return @@ -1024,18 +1040,18 @@ def database_version(db): ) elif version_minor != config.VERSION_MINOR: # Reparse transactions from the vesion block if minor version has changed. - message = f"Client minor version number mismatch. Triggering a reparse... ({version_minor} ≠ {config.VERSION_MINOR})" - need_reparse_from = ( - config.NEED_REPARSE_IF_MINOR_IS_LESS_THAN_TESTNET - if config.TESTNET - else config.NEED_REPARSE_IF_MINOR_IS_LESS_THAN + message = ( + f"Client minor version number mismatch: ({version_minor} ≠ {config.VERSION_MINOR}). " ) - if need_reparse_from is not None: - for min_version_minor, min_version_block_index in need_reparse_from: - if version_minor < min_version_minor: - raise DatabaseVersionError( - message=message, - required_action="reparse", - from_block_index=min_version_block_index, - ) + message += "Checking if a reparse is needed..." + check_need_reparse(version_minor, message) raise DatabaseVersionError(message=message, required_action=None) + else: + version_string = database.get_config_value(db, "VERSION_STRING") + if version_string: + version_pre_release = "-".join(version_string.split("-")[1:]) + if version_pre_release == config.VERSION_PRE_RELEASE: + return + message = f"Client pre-release version number mismatch: {version_pre_release} ≠ {config.VERSION_PRE_RELEASE}. " + message += "Checking if a reparse is needed..." + check_need_reparse(version_minor, message) diff --git a/counterparty-core/counterpartycore/lib/database.py b/counterparty-core/counterpartycore/lib/database.py index 69990a1714..b7752113ce 100644 --- a/counterparty-core/counterpartycore/lib/database.py +++ b/counterparty-core/counterpartycore/lib/database.py @@ -203,10 +203,39 @@ def version(db): return version_major, version_minor +def init_config_table(db): + sql = """ + CREATE TABLE IF NOT EXISTS config ( + name TEXT PRIMARY KEY, + value TEXT + ) + """ + cursor = db.cursor() + cursor.execute(sql) + cursor.execute("CREATE INDEX IF NOT EXISTS config_config_name_idx ON config (name)") + + +def set_config_value(db, name, value): + init_config_table(db) + cursor = db.cursor() + cursor.execute("INSERT OR REPLACE INTO config (name, value) VALUES (?, ?)", (name, value)) + + +def get_config_value(db, name): + init_config_table(db) + cursor = db.cursor() + cursor.execute("SELECT value FROM config WHERE name = ?", (name,)) + rows = cursor.fetchall() + if rows: + return rows[0]["value"] + return None + + def update_version(db): cursor = db.cursor() user_version = (config.VERSION_MAJOR * 1000) + config.VERSION_MINOR cursor.execute(f"PRAGMA user_version = {user_version}") # Syntax?! + set_config_value(db, "VERSION_STRING", config.VERSION_STRING) logger.info("Database version number updated.") From a39802e3be261a99104d98dce2b6d1ac401d3620 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sun, 20 Oct 2024 09:33:26 +0000 Subject: [PATCH 18/37] More endpoints to get fairmints --- apiary.apib | 3732 +++++++++-------- .../counterpartycore/lib/api/queries.py | 22 + .../counterpartycore/lib/api/routes.py | 3 + .../counterpartycore/test/api_v2_test.py | 4 +- .../test/fixtures/api_v2_fixtures.json | 459 +- .../test/regtest/apidoc/apicache.json | 3356 ++++++++------- .../test/regtest/genapidoc.py | 5 + .../test/regtest/testscenarios.py | 8 +- dredd.yml | 2 + release-notes/release-notes-v10.5.0.md | 3 + 10 files changed, 4099 insertions(+), 3495 deletions(-) diff --git a/apiary.apib b/apiary.apib index 2823e0b64f..a0662a1dcf 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-10-19 09:10:14.329389. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-10-20 09:24:32.717662. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -26,6 +26,7 @@ API routes are divided into groups: - [`sweeps`](#/reference/sweeps) - [`broadcasts`](#/reference/broadcasts) - [`fairminters`](#/reference/fairminters) +- [`fairmints`](#/reference/fairmints) - [`bitcoin`](#/reference/bitcoin) - [`mempool`](#/reference/mempool) - [`routes`](#/reference/routes) @@ -179,15 +180,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 550, "event": "NEW_BLOCK", "params": { - "block_hash": "6cc2b82f06aeb0c72e06479a6b4c738aa8b77e6f9950befce25b29af7462b71a", + "block_hash": "6507d71596a5bde486e1a5c1e33be2c96c037acf161f1c5cb41cd6e966e2d3a2", "block_index": 196, - "block_time": 1729328997, + "block_time": 1729416251, "difficulty": 545259519, - "previous_block_hash": "077fdc319fd71dd9c240c75deca71a0d77e058a388264622e922d44c1245be33" + "previous_block_hash": "3ecdd06511d985f7dd0ec1b9070e68ab57bd0c147b76d85bc1ac386a188c75a3" }, "tx_hash": null, "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 } ], "next_cursor": 544, @@ -204,17 +205,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 551, "event": "NEW_TRANSACTION", "params": { - "block_hash": "6cc2b82f06aeb0c72e06479a6b4c738aa8b77e6f9950befce25b29af7462b71a", + "block_hash": "6507d71596a5bde486e1a5c1e33be2c96c037acf161f1c5cb41cd6e966e2d3a2", "block_index": 196, - "block_time": 1729328997, + "block_time": 1729416251, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "destination": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "fee": 0, - "source": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "source": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62, - "utxos_info": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1:1 5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", + "utxos_info": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1 9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -224,9 +225,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 } ], "next_cursor": 545, @@ -245,16 +246,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "destination": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "out_index": 0, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62, - "block_time": 1729328997, + "block_time": 1729416251, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 } ], "next_cursor": 277, @@ -272,15 +273,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "4b0e19998a70ce7a0bf7b637c8174fbba5baf085312ac2097891dcb834d889b7", - "messages_hash": "a3ca428483eaef8fb902f7d899a2fdd680f956bb01f834d0be6d2348137b737e", + "ledger_hash": "f94b9a0cde6ac7ff4c57657df4d33d9a8f1dae9ef5de975f5df1dcc5cc851ece", + "messages_hash": "90707f8a533719986dc3f0949bda3f2eb1e3b12b4d1113e9caccbd9b4d5efb63", "transaction_count": 1, - "txlist_hash": "fc196af6b16a0cd8b7630d9935290587a5303e9610b40774b561bb6efd0d5833", - "block_time": 1729328997 + "txlist_hash": "41aa08840203abe0c1883ea81febef8fdb9238af22a71a5495b39bfc7c1db71b", + "block_time": 1729416251 }, "tx_hash": null, "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 } ], "next_cursor": 549, @@ -298,12 +299,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62 }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 } ], "next_cursor": 548, @@ -326,12 +327,12 @@ Here is a list of events classified by theme and for each an example response: "address": null, "asset": "XCP", "block_index": 196, - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "quantity": 1500000000, "tx_index": 62, - "utxo": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1:1", - "utxo_address": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", - "block_time": 1729328997, + "utxo": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", + "utxo_address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -341,9 +342,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 } ], "next_cursor": 553, @@ -360,16 +361,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -379,9 +380,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 } ], "next_cursor": 557, @@ -400,14 +401,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 189, - "destination": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "memo": null, "quantity": 10000, - "source": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "status": "valid", - "tx_hash": "e07e301352fc03f3fa32de1f8c0b07f8817a96104c5a64171cff40e24d3ed90e", + "tx_hash": "41940d57c4a9b1f5d0a22cb937643b5a48181fabeb27a4fe2ae5e3b102045d0f", "tx_index": 55, - "block_time": 1729328963, + "block_time": 1729416215, "asset_info": { "divisible": true, "asset_longname": null, @@ -417,9 +418,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00010000" }, - "tx_hash": "e07e301352fc03f3fa32de1f8c0b07f8817a96104c5a64171cff40e24d3ed90e", + "tx_hash": "41940d57c4a9b1f5d0a22cb937643b5a48181fabeb27a4fe2ae5e3b102045d0f", "block_index": 189, - "block_time": 1729328963 + "block_time": 1729416215 } ], "next_cursor": null, @@ -438,15 +439,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 190, - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "status": "valid", - "tx_hash": "0db25b816b9c26ff7c0412f71dd828e22496d1003d9ad2febad4f57e9edf125f", + "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", "tx_index": 56, - "block_time": 1729328967, + "block_time": 1729416220, "asset_info": { "divisible": true, "asset_longname": null, @@ -456,9 +457,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "0db25b816b9c26ff7c0412f71dd828e22496d1003d9ad2febad4f57e9edf125f", + "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", "block_index": 190, - "block_time": 1729328967 + "block_time": 1729416220 } ], "next_cursor": 509, @@ -496,20 +497,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 194, - "destination": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "status": "valid", - "tx_hash": "75becfa6beb8ad5af35ed1fb85254b67d1fab4fb19f4e745446677c859461e60", + "tx_hash": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", "tx_index": 60, - "block_time": 1729328983, + "block_time": 1729416237, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "75becfa6beb8ad5af35ed1fb85254b67d1fab4fb19f4e745446677c859461e60", + "tx_hash": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", "block_index": 194, - "block_time": 1729328983 + "block_time": 1729416237 } ], "next_cursor": null, @@ -531,15 +532,15 @@ Here is a list of events classified by theme and for each an example response: "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "status": "valid", - "tx_hash": "51eed6917af775e4fdffc81b0eb1484ad7ae4677e2905bb9966e8de45f9a683d", + "tx_hash": "0c95334ce0b328f2ff4e1e44c4e96d503ba60b7b2b1fbabeabef5f3ac971b288", "tx_index": 41, - "block_time": 1729328809, + "block_time": 1729416070, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -553,9 +554,9 @@ Here is a list of events classified by theme and for each an example response: "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "51eed6917af775e4fdffc81b0eb1484ad7ae4677e2905bb9966e8de45f9a683d", + "tx_hash": "0c95334ce0b328f2ff4e1e44c4e96d503ba60b7b2b1fbabeabef5f3ac971b288", "block_index": 154, - "block_time": 1729328809 + "block_time": 1729416070 } ], "next_cursor": null, @@ -588,11 +589,11 @@ Here is a list of events classified by theme and for each an example response: "asset_longname": "A95428959745315388.SUBNUMERIC", "asset_name": "A95428956980101314", "block_index": 161, - "block_time": 1729328839 + "block_time": 1729416112 }, - "tx_hash": "ad7cd24a91d670e0fb520c404cfc2fa0df0ee9a9f8bf4092b67790f6ca07c072", + "tx_hash": "bb2aa89179834fafe03acecbbade4d6fd928251f2923a59b4656957ab3685976", "block_index": 161, - "block_time": 1729328839 + "block_time": 1729416112 } ], "next_cursor": 381, @@ -620,22 +621,22 @@ Here is a list of events classified by theme and for each an example response: "description_locked": false, "divisible": true, "fee_paid": 0, - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "status": "valid", "transfer": false, - "tx_hash": "ad7cd24a91d670e0fb520c404cfc2fa0df0ee9a9f8bf4092b67790f6ca07c072", + "tx_hash": "bb2aa89179834fafe03acecbbade4d6fd928251f2923a59b4656957ab3685976", "tx_index": 48, - "block_time": 1729328839, + "block_time": 1729416112, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "ad7cd24a91d670e0fb520c404cfc2fa0df0ee9a9f8bf4092b67790f6ca07c072", + "tx_hash": "bb2aa89179834fafe03acecbbade4d6fd928251f2923a59b4656957ab3685976", "block_index": 161, - "block_time": 1729328839 + "block_time": 1729416112 } ], "next_cursor": 388, @@ -655,12 +656,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 195, "quantity": 1, - "source": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "status": "valid", "tag": "64657374726f79", - "tx_hash": "a2796a7a01cac72fd1b2e54ffda7f4880fcc653db5d80725a8ec6499d028f44c", + "tx_hash": "849f54d8426192c0270d4d240627ba157876e3601948aed0ac24e730dcab52d7", "tx_index": 61, - "block_time": 1729328988, + "block_time": 1729416242, "asset_info": { "divisible": true, "asset_longname": null, @@ -670,9 +671,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "a2796a7a01cac72fd1b2e54ffda7f4880fcc653db5d80725a8ec6499d028f44c", + "tx_hash": "849f54d8426192c0270d4d240627ba157876e3601948aed0ac24e730dcab52d7", "block_index": 195, - "block_time": 1729328988 + "block_time": 1729416242 } ], "next_cursor": 157, @@ -704,11 +705,11 @@ Here is a list of events classified by theme and for each an example response: "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "status": "open", - "tx_hash": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee", + "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", "tx_index": 59, - "block_time": 1729328980, + "block_time": 1729416233, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -732,9 +733,9 @@ Here is a list of events classified by theme and for each an example response: "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee", + "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", "block_index": 193, - "block_time": 1729328980 + "block_time": 1729416233 } ], "next_cursor": 516, @@ -757,20 +758,20 @@ Here is a list of events classified by theme and for each an example response: "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a_3ac7858b4e6053388907f40c38e43800f7856d7dd4d00aa2a49e1bc8cdb2c407", + "id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", "match_expire_index": 208, "status": "pending", - "tx0_address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "tx0_block_index": 186, "tx0_expiration": 21, - "tx0_hash": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a", + "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", "tx0_index": 51, - "tx1_address": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "tx1_address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "tx1_block_index": 188, "tx1_expiration": 21, - "tx1_hash": "3ac7858b4e6053388907f40c38e43800f7856d7dd4d00aa2a49e1bc8cdb2c407", + "tx1_hash": "e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", "tx1_index": 54, - "block_time": 1729328949, + "block_time": 1729416201, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -789,9 +790,9 @@ Here is a list of events classified by theme and for each an example response: "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "3ac7858b4e6053388907f40c38e43800f7856d7dd4d00aa2a49e1bc8cdb2c407", + "tx_hash": "e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", "block_index": 188, - "block_time": 1729328949 + "block_time": 1729416201 } ], "next_cursor": 475, @@ -809,11 +810,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "0c2af3b2417a07ed4648e73879edfec272c01513088c21273c745f504ee68731" + "tx_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d" }, - "tx_hash": "2b0f3f831aaf9342b4b2729c9f9ae4017edf58e751e2073a2025d0a7c1d8856a", + "tx_hash": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa", "block_index": 192, - "block_time": 1729328976 + "block_time": 1729416229 } ], "next_cursor": 490, @@ -831,11 +832,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "8dc06a5357ff8379528e48e73da07324302ec9fdcfc37f03305d0f9f0cfe28d5" + "tx_hash": "34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80" }, - "tx_hash": "f0f47bb2d44ffbcf2807d16bbeb95fd0d7ccba0a4666bb553e30490b0fb1ef31", + "tx_hash": "e6ca911a0b08aa83675667b9ca8e02c32aeb2da53061aba62dde2da5b66b8fe8", "block_index": 187, - "block_time": 1729328944 + "block_time": 1729416196 } ], "next_cursor": null, @@ -852,13 +853,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 481, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a_8dc06a5357ff8379528e48e73da07324302ec9fdcfc37f03305d0f9f0cfe28d5", - "order_match_id": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a_8dc06a5357ff8379528e48e73da07324302ec9fdcfc37f03305d0f9f0cfe28d5", + "id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", + "order_match_id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", "status": "completed" }, - "tx_hash": "f0f47bb2d44ffbcf2807d16bbeb95fd0d7ccba0a4666bb553e30490b0fb1ef31", + "tx_hash": "e6ca911a0b08aa83675667b9ca8e02c32aeb2da53061aba62dde2da5b66b8fe8", "block_index": 187, - "block_time": 1729328944 + "block_time": 1729416196 } ], "next_cursor": 454, @@ -877,18 +878,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 187, "btc_amount": 2000, - "destination": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "order_match_id": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a_8dc06a5357ff8379528e48e73da07324302ec9fdcfc37f03305d0f9f0cfe28d5", - "source": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "destination": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "order_match_id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "status": "valid", - "tx_hash": "f0f47bb2d44ffbcf2807d16bbeb95fd0d7ccba0a4666bb553e30490b0fb1ef31", + "tx_hash": "e6ca911a0b08aa83675667b9ca8e02c32aeb2da53061aba62dde2da5b66b8fe8", "tx_index": 53, - "block_time": 1729328944, + "block_time": 1729416196, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "f0f47bb2d44ffbcf2807d16bbeb95fd0d7ccba0a4666bb553e30490b0fb1ef31", + "tx_hash": "e6ca911a0b08aa83675667b9ca8e02c32aeb2da53061aba62dde2da5b66b8fe8", "block_index": 187, - "block_time": 1729328944 + "block_time": 1729416196 } ], "next_cursor": null, @@ -906,16 +907,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "0c2af3b2417a07ed4648e73879edfec272c01513088c21273c745f504ee68731", - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "offer_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "status": "valid", - "tx_hash": "2b0f3f831aaf9342b4b2729c9f9ae4017edf58e751e2073a2025d0a7c1d8856a", + "tx_hash": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa", "tx_index": 58, - "block_time": 1729328976 + "block_time": 1729416229 }, - "tx_hash": "2b0f3f831aaf9342b4b2729c9f9ae4017edf58e751e2073a2025d0a7c1d8856a", + "tx_hash": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa", "block_index": 192, - "block_time": 1729328976 + "block_time": 1729416229 } ], "next_cursor": null, @@ -933,13 +934,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 184, - "order_hash": "45de60b281c8ad2f70758c63cf0bb0b4f5e0f5015692a304541527b7f52bc82f", - "source": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", - "block_time": 1729328864 + "order_hash": "31f95069423c6c4ddfe0a4574c1a3369fb58dac7a6652ba054558eb83930ed0b", + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "block_time": 1729416128 }, "tx_hash": null, "block_index": 184, - "block_time": 1729328864 + "block_time": 1729416128 } ], "next_cursor": 460, @@ -957,14 +958,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 184, - "order_match_id": "417b7585cb70e5e9f3850385defa712ecae11bac8afe116a63861a98648f1b11_45de60b281c8ad2f70758c63cf0bb0b4f5e0f5015692a304541527b7f52bc82f", - "tx0_address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "tx1_address": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", - "block_time": 1729328864 + "order_match_id": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8_31f95069423c6c4ddfe0a4574c1a3369fb58dac7a6652ba054558eb83930ed0b", + "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "tx1_address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "block_time": 1729416128 }, "tx_hash": null, "block_index": 184, - "block_time": 1729328864 + "block_time": 1729416128 } ], "next_cursor": null, @@ -989,14 +990,14 @@ Here is a list of events classified by theme and for each an example response: "escrow_quantity": 10000, "give_quantity": 1, "give_remaining": 10000, - "oracle_address": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", - "origin": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "oracle_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "origin": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "satoshirate": 1, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "status": 0, - "tx_hash": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b", + "tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", "tx_index": 33, - "block_time": 1729328765, + "block_time": 1729416035, "asset_info": { "divisible": true, "asset_longname": null, @@ -1009,9 +1010,9 @@ Here is a list of events classified by theme and for each an example response: "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b", + "tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", "block_index": 146, - "block_time": 1729328765 + "block_time": 1729416035 } ], "next_cursor": 254, @@ -1031,9 +1032,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "status": 0, - "tx_hash": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b", + "tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", "asset_info": { "divisible": true, "asset_longname": null, @@ -1043,9 +1044,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 } ], "next_cursor": 302, @@ -1064,13 +1065,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "n4ZsbPM25kFYFpE2f9V3tLtN4rhmQvv1nR", + "destination": "mxn9viJTMZ952ierCiR5GaQwzaXBTAAdFh", "dispense_quantity": 10, - "dispenser_tx_hash": "1e35417090f653a2903741ab9faa6151e1f08e891076183013511c2edfef26ca", - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "tx_hash": "e2ad17b52b9ef53dbf15e1fee1272c70afb2adc61638c05992799a0d8c6df1d9", + "dispenser_tx_hash": "8463aade5566a0f1e8c8f67bc3a36514814d844fa9a8925b244600e282392b52", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "tx_hash": "6a06e123de94dc01dda7d60f67d09fe6d4a304f0b7fcb2ddd6642b6895f8bf8a", "tx_index": 31, - "block_time": 1729328756, + "block_time": 1729416026, "asset_info": { "divisible": true, "asset_longname": null, @@ -1080,9 +1081,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "e2ad17b52b9ef53dbf15e1fee1272c70afb2adc61638c05992799a0d8c6df1d9", + "tx_hash": "6a06e123de94dc01dda7d60f67d09fe6d4a304f0b7fcb2ddd6642b6895f8bf8a", "block_index": 144, - "block_time": 1729328756 + "block_time": 1729416026 } ], "next_cursor": null, @@ -1102,14 +1103,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "destination": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b", - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -1120,9 +1121,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 } ], "next_cursor": 280, @@ -1144,19 +1145,19 @@ Here is a list of events classified by theme and for each an example response: "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "c6c3f4f28cd8a39b7cdeec66e5741c0733c6e50a40d6c9104d561d7dc89fd0f3", + "tx_hash": "1945e07d63301090025795858c49fef361dfc2d9851d9e074cc4215d9d91255f", "tx_index": 25, "value": 66600.0, - "block_time": 1729328730, + "block_time": 1729416000, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "c6c3f4f28cd8a39b7cdeec66e5741c0733c6e50a40d6c9104d561d7dc89fd0f3", + "tx_hash": "1945e07d63301090025795858c49fef361dfc2d9851d9e074cc4215d9d91255f", "block_index": 138, - "block_time": 1729328730 + "block_time": 1729416000 } ], "next_cursor": 213, @@ -1194,16 +1195,16 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "start_block": 0, "status": "open", - "tx_hash": "f3cd8ee918135e3b1b1660a69a127e57520bdc3a177d301e4f4786d619538ba5", + "tx_hash": "68455c81e91976b50973996dd5e3b1bafeb9009b2ca1a238e4a1897afbef2d46", "tx_index": 42, - "block_time": 1729328813 + "block_time": 1729416085 }, - "tx_hash": "f3cd8ee918135e3b1b1660a69a127e57520bdc3a177d301e4f4786d619538ba5", + "tx_hash": "68455c81e91976b50973996dd5e3b1bafeb9009b2ca1a238e4a1897afbef2d46", "block_index": 155, - "block_time": 1729328813 + "block_time": 1729416085 } ], "next_cursor": 196, @@ -1221,11 +1222,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "c625b42b58b9d8785ff1002e4c734b8e720b7fc7cef912557d0c76850bd363f4" + "tx_hash": "9f887ea5403be9aa383402f97d0e8f856de8951ba3327060b3af17321c9478ad" }, "tx_hash": null, "block_index": 130, - "block_time": 1729328697 + "block_time": 1729415965 } ], "next_cursor": 110, @@ -1246,24 +1247,24 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "c34eba9dc88240af07608224d29e4ac423e6b2a0fb83407b5a51c795fdef2d81", + "fairminter_tx_hash": "251c310af851cba2ce4a58932e7cb803aeb6a9f7a55bac9bbf688ba85a48ef28", "paid_quantity": 34, - "source": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "status": "valid", - "tx_hash": "2015c6155642a55cbbd4b5fecfe861da6677293d1bc2d945a04daacd6ab34357", + "tx_hash": "6b50dfb9f0288a39497978e107102a20fca9269f60c348a7d3252a97951c3dfa", "tx_index": 23, - "block_time": 1729328722, + "block_time": 1729415991, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false } }, - "tx_hash": "2015c6155642a55cbbd4b5fecfe861da6677293d1bc2d945a04daacd6ab34357", + "tx_hash": "6b50dfb9f0288a39497978e107102a20fca9269f60c348a7d3252a97951c3dfa", "block_index": 136, - "block_time": 1729328722 + "block_time": 1729415991 } ], "next_cursor": 190, @@ -1284,28 +1285,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 152, - "destination": "e630b15a8dd1629ee5d8c712ceeb4baaa1f861580e65556651bd38e7509e0463:1", + "destination": "aebd60a74f16beb780629243965a4832b6c9e75043be78503b78cb904acba5d6:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "status": "valid", - "tx_hash": "e630b15a8dd1629ee5d8c712ceeb4baaa1f861580e65556651bd38e7509e0463", + "tx_hash": "aebd60a74f16beb780629243965a4832b6c9e75043be78503b78cb904acba5d6", "tx_index": 39, - "block_time": 1729328801, + "block_time": 1729416061, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "e630b15a8dd1629ee5d8c712ceeb4baaa1f861580e65556651bd38e7509e0463", + "tx_hash": "aebd60a74f16beb780629243965a4832b6c9e75043be78503b78cb904acba5d6", "block_index": 152, - "block_time": 1729328801 + "block_time": 1729416061 } ], "next_cursor": 296, @@ -1324,28 +1325,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qg0yp2a86t6cxyuw2efl4ceq3tjecjled3vscyk", + "destination": "bcrt1qkgcujj6uea6hshreznk6fw8e22utgsdyqd02hg", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "735e2f5c7e85a8477cf81a6916a9e0f65e434d97b273863af40b880a489e4b43:0", + "source": "cdcf917d341dcb5152a735abf3e6fbe5c3f3df03e327bdacc1f0c3f858ddbbeb:0", "status": "valid", - "tx_hash": "b13446e62c4017231e1ac95bfb722cf296127f85ebbb20d2fbf187c4bf74dce3", + "tx_hash": "e755d7b8872d3d225da4d98c83eb4694a52915378b4b246272aff784b230d963", "tx_index": 38, - "block_time": 1729328796, + "block_time": 1729416057, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "b13446e62c4017231e1ac95bfb722cf296127f85ebbb20d2fbf187c4bf74dce3", + "tx_hash": "e755d7b8872d3d225da4d98c83eb4694a52915378b4b246272aff784b230d963", "block_index": 151, - "block_time": 1729328796 + "block_time": 1729416057 } ], "next_cursor": null, @@ -1364,14 +1365,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 196, - "destination": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", + "destination": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", "msg_index": 1, "quantity": 1500000000, - "source": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1:1", + "source": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", "status": "valid", - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -1381,9 +1382,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 } ], "next_cursor": 555, @@ -1405,17 +1406,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qz2w3wldndc072gvryyfcpvdy7a26k66sdr05zz", + "source": "bcrt1qwhyc990hruyqf3e7r3ee9xx3g558uugekpa3kw", "status": "valid", - "tx_hash": "8f228d4a4b728a07b0a601ef5af6cb6676382b151868640417028e76c715139d", + "tx_hash": "3c708852d4951ec7994feec5ab282528777c9dbf169290986261472cf1fb27fa", "tx_index": 9, - "block_time": 1729328659, + "block_time": 1729415925, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "8f228d4a4b728a07b0a601ef5af6cb6676382b151868640417028e76c715139d", + "tx_hash": "3c708852d4951ec7994feec5ab282528777c9dbf169290986261472cf1fb27fa", "block_index": 121, - "block_time": 1729328659 + "block_time": 1729415925 } ], "next_cursor": 65, @@ -1472,61 +1473,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 196, - "block_hash": "6cc2b82f06aeb0c72e06479a6b4c738aa8b77e6f9950befce25b29af7462b71a", - "block_time": 1729328997, - "previous_block_hash": "077fdc319fd71dd9c240c75deca71a0d77e058a388264622e922d44c1245be33", + "block_hash": "6507d71596a5bde486e1a5c1e33be2c96c037acf161f1c5cb41cd6e966e2d3a2", + "block_time": 1729416251, + "previous_block_hash": "3ecdd06511d985f7dd0ec1b9070e68ab57bd0c147b76d85bc1ac386a188c75a3", "difficulty": 545259519, - "ledger_hash": "4b0e19998a70ce7a0bf7b637c8174fbba5baf085312ac2097891dcb834d889b7", - "txlist_hash": "fc196af6b16a0cd8b7630d9935290587a5303e9610b40774b561bb6efd0d5833", - "messages_hash": "a3ca428483eaef8fb902f7d899a2fdd680f956bb01f834d0be6d2348137b737e", + "ledger_hash": "f94b9a0cde6ac7ff4c57657df4d33d9a8f1dae9ef5de975f5df1dcc5cc851ece", + "txlist_hash": "41aa08840203abe0c1883ea81febef8fdb9238af22a71a5495b39bfc7c1db71b", + "messages_hash": "90707f8a533719986dc3f0949bda3f2eb1e3b12b4d1113e9caccbd9b4d5efb63", "transaction_count": 1, "confirmed": true }, { "block_index": 195, - "block_hash": "077fdc319fd71dd9c240c75deca71a0d77e058a388264622e922d44c1245be33", - "block_time": 1729328988, - "previous_block_hash": "5fb2486e81e7eb7273a991ebc737803d9beb57e5fa432f56b0e137fa5f8b605b", + "block_hash": "3ecdd06511d985f7dd0ec1b9070e68ab57bd0c147b76d85bc1ac386a188c75a3", + "block_time": 1729416242, + "previous_block_hash": "728a813061fac83aa7ba84782106a41b12625043d7d6bfa23a9c143df030f128", "difficulty": 545259519, - "ledger_hash": "ede9b898c72bf40ce0c75ef3c7b1fb6d0cbe35ce2ec65ddb72505eeb2875548c", - "txlist_hash": "d080f2b64c4b565e2f303231da3c41f524fce08925e2042ce9f064dd0e1e19f8", - "messages_hash": "31f61043e26c26a1bb3fe84f42333513366b9fbe4269d83a7fb6b9d4e94da007", + "ledger_hash": "cc718c23e625491aee2fc62a05bc61a9757c4a93b694ef86bc4ce5156e1d95e4", + "txlist_hash": "a07cf4e2952739cbc92e3c6ab24d5641f416fc170b9760e7c474d9f39f5aea26", + "messages_hash": "9091c829a5aa11609cd32fe2f67938ba0dbcf5bcf4a65e90c10e54461f9f80cf", "transaction_count": 1, "confirmed": true }, { "block_index": 194, - "block_hash": "5fb2486e81e7eb7273a991ebc737803d9beb57e5fa432f56b0e137fa5f8b605b", - "block_time": 1729328983, - "previous_block_hash": "09f548e451b21449feb36715f104d87137e3b88a81d8b30c5306820791308f83", + "block_hash": "728a813061fac83aa7ba84782106a41b12625043d7d6bfa23a9c143df030f128", + "block_time": 1729416237, + "previous_block_hash": "4711586e156dc07bc446b0d13bd07197fb6073457f04e8c962b18601d7aab73c", "difficulty": 545259519, - "ledger_hash": "f0dc2c97395182e16bb5a37c621fd581653b554ab2c088248ad356dc5c361343", - "txlist_hash": "21622279870102069c75369c3a58eb7a29750dba07ca6b4fcedb38b8c7a4bc98", - "messages_hash": "0067d200e9473a722c70eeda7334c0001191ca2e76177fad28f581810f964c79", + "ledger_hash": "16819ea6b16871368675990819b6ee38eaf09dd756eb3266992d9bbcbfb612e0", + "txlist_hash": "cf42fdd132d3436f7c386a132cbf5f28490b0d2a730f870efeb94abc5c539730", + "messages_hash": "5924462778e58daed75d47fc78480ebda5c1e5c0253ed48c30ce5e9981a12f86", "transaction_count": 1, "confirmed": true }, { "block_index": 193, - "block_hash": "09f548e451b21449feb36715f104d87137e3b88a81d8b30c5306820791308f83", - "block_time": 1729328980, - "previous_block_hash": "5897bcdb0e687832bd9b5458582ce9d410e0c01f5ff26964538751a9e645b4db", + "block_hash": "4711586e156dc07bc446b0d13bd07197fb6073457f04e8c962b18601d7aab73c", + "block_time": 1729416233, + "previous_block_hash": "7ed678c7467e7efadcf543e389f591346431c76c567638ba2fc748d67b102781", "difficulty": 545259519, - "ledger_hash": "a3f1d036f9e12f188e22d2b27f298c2b8e2c0c79a98b3afeff0a1952c73979a5", - "txlist_hash": "c5b6cc497a6980d9e26044ae28d6040f9e6366a569d5b29887d1d16382aea1f8", - "messages_hash": "407ca9af7ebf96fcd710ecd67d589e88e25ec7469557829313a2d6fb59390971", + "ledger_hash": "0d713822dd49df58abf0df8423b2b429ac36d2da7e181df4fa32919413307a8b", + "txlist_hash": "7f95f439866514d156baead34f58896d8ed0dd87c5730eef21ff376b9d7d322e", + "messages_hash": "665d3418c0246f5af0c06d3668b67a110dd798d17bfae6384e9b309030c754af", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "5897bcdb0e687832bd9b5458582ce9d410e0c01f5ff26964538751a9e645b4db", - "block_time": 1729328976, - "previous_block_hash": "0826a6c8402128526d9748611755dc61663b39f77909517585100318a72b2dcc", + "block_hash": "7ed678c7467e7efadcf543e389f591346431c76c567638ba2fc748d67b102781", + "block_time": 1729416229, + "previous_block_hash": "2fb7daac12d57d03a72504b4a83dcdcf2526bf0ddd4ef79a494697e3933b3d32", "difficulty": 545259519, - "ledger_hash": "b1bc52340c62bb9131b7d6b51da6cb88eac4a43d143f760b299093e8a90ca795", - "txlist_hash": "8b9ff4e44233b9654c638efe0a02071a260a756c889f3fb66d3a09624b078c5c", - "messages_hash": "c81a44ee751b07fa0481450a707a148a4b8a52f3938162587c6cc88c091e5556", + "ledger_hash": "a4b01c2e43a0d3d158d89eb1daf965eefb4587fd04080947c4915581c1f9fb75", + "txlist_hash": "5eefd74579a8915f71f7aa0d2b2140c088ed41c582e39ac3ec356ac23561ea7b", + "messages_hash": "d341d3e3d54cb95d6ac5eda6bd925d32cb00afa9ed7b6cc05e227c6bad69e92e", "transaction_count": 1, "confirmed": true } @@ -1563,13 +1564,13 @@ Return the information of a block { "result": { "block_index": 196, - "block_hash": "6cc2b82f06aeb0c72e06479a6b4c738aa8b77e6f9950befce25b29af7462b71a", - "block_time": 1729328997, - "previous_block_hash": "077fdc319fd71dd9c240c75deca71a0d77e058a388264622e922d44c1245be33", + "block_hash": "6507d71596a5bde486e1a5c1e33be2c96c037acf161f1c5cb41cd6e966e2d3a2", + "block_time": 1729416251, + "previous_block_hash": "3ecdd06511d985f7dd0ec1b9070e68ab57bd0c147b76d85bc1ac386a188c75a3", "difficulty": 545259519, - "ledger_hash": "4b0e19998a70ce7a0bf7b637c8174fbba5baf085312ac2097891dcb834d889b7", - "txlist_hash": "fc196af6b16a0cd8b7630d9935290587a5303e9610b40774b561bb6efd0d5833", - "messages_hash": "a3ca428483eaef8fb902f7d899a2fdd680f956bb01f834d0be6d2348137b737e", + "ledger_hash": "f94b9a0cde6ac7ff4c57657df4d33d9a8f1dae9ef5de975f5df1dcc5cc851ece", + "txlist_hash": "41aa08840203abe0c1883ea81febef8fdb9238af22a71a5495b39bfc7c1db71b", + "messages_hash": "90707f8a533719986dc3f0949bda3f2eb1e3b12b4d1113e9caccbd9b4d5efb63", "transaction_count": 1, "confirmed": true } @@ -1581,7 +1582,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `6cc2b82f06aeb0c72e06479a6b4c738aa8b77e6f9950befce25b29af7462b71a` (str, required) - The index of the block to return + + block_hash: `6507d71596a5bde486e1a5c1e33be2c96c037acf161f1c5cb41cd6e966e2d3a2` (str, required) - The index of the block to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -1593,13 +1594,13 @@ Return the information of a block { "result": { "block_index": 196, - "block_hash": "6cc2b82f06aeb0c72e06479a6b4c738aa8b77e6f9950befce25b29af7462b71a", - "block_time": 1729328997, - "previous_block_hash": "077fdc319fd71dd9c240c75deca71a0d77e058a388264622e922d44c1245be33", + "block_hash": "6507d71596a5bde486e1a5c1e33be2c96c037acf161f1c5cb41cd6e966e2d3a2", + "block_time": 1729416251, + "previous_block_hash": "3ecdd06511d985f7dd0ec1b9070e68ab57bd0c147b76d85bc1ac386a188c75a3", "difficulty": 545259519, - "ledger_hash": "4b0e19998a70ce7a0bf7b637c8174fbba5baf085312ac2097891dcb834d889b7", - "txlist_hash": "fc196af6b16a0cd8b7630d9935290587a5303e9610b40774b561bb6efd0d5833", - "messages_hash": "a3ca428483eaef8fb902f7d899a2fdd680f956bb01f834d0be6d2348137b737e", + "ledger_hash": "f94b9a0cde6ac7ff4c57657df4d33d9a8f1dae9ef5de975f5df1dcc5cc851ece", + "txlist_hash": "41aa08840203abe0c1883ea81febef8fdb9238af22a71a5495b39bfc7c1db71b", + "messages_hash": "90707f8a533719986dc3f0949bda3f2eb1e3b12b4d1113e9caccbd9b4d5efb63", "transaction_count": 1, "confirmed": true } @@ -1630,17 +1631,17 @@ Returns the transactions of a block "result": [ { "tx_index": 62, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_hash": "6cc2b82f06aeb0c72e06479a6b4c738aa8b77e6f9950befce25b29af7462b71a", - "block_time": 1729328997, - "source": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", - "destination": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "block_hash": "6507d71596a5bde486e1a5c1e33be2c96c037acf161f1c5cb41cd6e966e2d3a2", + "block_time": 1729416251, + "source": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "destination": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1:1 5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", + "utxos_info": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1 9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1686,11 +1687,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "4b0e19998a70ce7a0bf7b637c8174fbba5baf085312ac2097891dcb834d889b7", - "messages_hash": "a3ca428483eaef8fb902f7d899a2fdd680f956bb01f834d0be6d2348137b737e", + "ledger_hash": "f94b9a0cde6ac7ff4c57657df4d33d9a8f1dae9ef5de975f5df1dcc5cc851ece", + "messages_hash": "90707f8a533719986dc3f0949bda3f2eb1e3b12b4d1113e9caccbd9b4d5efb63", "transaction_count": 1, - "txlist_hash": "fc196af6b16a0cd8b7630d9935290587a5303e9610b40774b561bb6efd0d5833", - "block_time": 1729328997 + "txlist_hash": "41aa08840203abe0c1883ea81febef8fdb9238af22a71a5495b39bfc7c1db71b", + "block_time": 1729416251 }, "tx_hash": null }, @@ -1699,10 +1700,10 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62 }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857" + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287" }, { "event_index": 561, @@ -1711,14 +1712,14 @@ Returns the events of a block "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "destination": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b", - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -1729,7 +1730,7 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857" + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287" }, { "event_index": 560, @@ -1738,9 +1739,9 @@ Returns the events of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "status": 0, - "tx_hash": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b", + "tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", "asset_info": { "divisible": true, "asset_longname": null, @@ -1750,22 +1751,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857" + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287" }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -1775,7 +1776,7 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857" + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287" } ], "next_cursor": 558, @@ -1858,16 +1859,16 @@ Returns the events of a block filtered by event "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -1877,7 +1878,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857" + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287" }, { "event_index": 557, @@ -1887,12 +1888,12 @@ Returns the events of a block filtered by event "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "quantity": 1500000000, "tx_index": 62, - "utxo": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", - "utxo_address": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", - "block_time": 1729328997, + "utxo": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -1902,7 +1903,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857" + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287" }, { "event_index": 554, @@ -1912,22 +1913,22 @@ Returns the events of a block filtered by event "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "quantity": 1500000000, "tx_index": 62, - "utxo": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", - "utxo_address": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", - "block_time": 1729328997, + "utxo": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "block_time": 1729416251, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857" + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287" } ], "next_cursor": null, @@ -1990,16 +1991,16 @@ Returns the credits of a block "result": [ { "block_index": 196, - "address": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -2015,12 +2016,12 @@ Returns the credits of a block "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62, - "utxo": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", - "utxo_address": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "utxo": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "confirmed": true, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -2036,16 +2037,16 @@ Returns the credits of a block "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62, - "utxo": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", - "utxo_address": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "utxo": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "confirmed": true, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -2105,12 +2106,12 @@ Returns the debits of a block "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62, - "utxo": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1:1", - "utxo_address": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "utxo": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", + "utxo_address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "confirmed": true, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -2126,16 +2127,16 @@ Returns the debits of a block "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62, - "utxo": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1:1", - "utxo_address": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "utxo": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", + "utxo_address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "confirmed": true, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -2171,24 +2172,24 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "45de60b281c8ad2f70758c63cf0bb0b4f5e0f5015692a304541527b7f52bc82f", + "object_id": "31f95069423c6c4ddfe0a4574c1a3369fb58dac7a6652ba054558eb83930ed0b", "block_index": 184, "confirmed": true, - "block_time": 1729328864 + "block_time": 1729416128 }, { "type": "order", - "object_id": "417b7585cb70e5e9f3850385defa712ecae11bac8afe116a63861a98648f1b11", + "object_id": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8", "block_index": 184, "confirmed": true, - "block_time": 1729328864 + "block_time": 1729416128 }, { "type": "order_match", - "object_id": "417b7585cb70e5e9f3850385defa712ecae11bac8afe116a63861a98648f1b11_45de60b281c8ad2f70758c63cf0bb0b4f5e0f5015692a304541527b7f52bc82f", + "object_id": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8_31f95069423c6c4ddfe0a4574c1a3369fb58dac7a6652ba054558eb83930ed0b", "block_index": 184, "confirmed": true, - "block_time": 1729328864 + "block_time": 1729416128 } ], "next_cursor": null, @@ -2220,13 +2221,13 @@ Returns the cancels of a block "result": [ { "tx_index": 58, - "tx_hash": "2b0f3f831aaf9342b4b2729c9f9ae4017edf58e751e2073a2025d0a7c1d8856a", + "tx_hash": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa", "block_index": 192, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "offer_hash": "0c2af3b2417a07ed4648e73879edfec272c01513088c21273c745f504ee68731", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "offer_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", "status": "valid", "confirmed": true, - "block_time": 1729328976 + "block_time": 1729416229 } ], "next_cursor": null, @@ -2258,15 +2259,15 @@ Returns the destructions of a block "result": [ { "tx_index": 61, - "tx_hash": "a2796a7a01cac72fd1b2e54ffda7f4880fcc653db5d80725a8ec6499d028f44c", + "tx_hash": "849f54d8426192c0270d4d240627ba157876e3601948aed0ac24e730dcab52d7", "block_index": 195, - "source": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1729328988, + "block_time": 1729416242, "asset_info": { "divisible": true, "asset_longname": null, @@ -2306,14 +2307,14 @@ Returns the issuances of a block "result": [ { "tx_index": 48, - "tx_hash": "ad7cd24a91d670e0fb520c404cfc2fa0df0ee9a9f8bf4092b67790f6ca07c072", + "tx_hash": "bb2aa89179834fafe03acecbbade4d6fd928251f2923a59b4656957ab3685976", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "transfer": false, "callable": false, "call_date": 0, @@ -2328,7 +2329,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729328839, + "block_time": 1729416112, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -2362,10 +2363,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 62, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "source": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1:1", - "destination": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", + "source": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", + "destination": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -2373,7 +2374,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -2386,10 +2387,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 62, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "source": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1:1", - "destination": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", + "source": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", + "destination": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -2397,11 +2398,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -2439,27 +2440,27 @@ Returns the dispenses of a block { "tx_index": 62, "dispense_index": 0, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", - "destination": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "destination": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b", + "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "oracle_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "last_status_tx_hash": null, - "origin": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "origin": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2474,7 +2475,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -2515,16 +2516,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 60, - "tx_hash": "75becfa6beb8ad5af35ed1fb85254b67d1fab4fb19f4e745446677c859461e60", + "tx_hash": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", "block_index": 194, - "source": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", - "destination": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729328983, + "block_time": 1729416237, "fee_paid_normalized": "0.00600000" } ], @@ -2558,17 +2559,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "c6c3f4f28cd8a39b7cdeec66e5741c0733c6e50a40d6c9104d561d7dc89fd0f3", + "tx_hash": "1945e07d63301090025795858c49fef361dfc2d9851d9e074cc4215d9d91255f", "block_index": 138, - "block_hash": "2809ddd8cf5cb8bb60bd86ae56dc0b77f92127044b47ec88934c3c4565519b83", - "block_time": 1729328730, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "block_hash": "48b6ee7734dac157a347a776c990f4ea080e743d11d49a0c8fd2e4d5f6e43a4b", + "block_time": 1729416000, + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "c6c3f4f28cd8a39b7cdeec66e5741c0733c6e50a40d6c9104d561d7dc89fd0f3:1", + "utxos_info": "1945e07d63301090025795858c49fef361dfc2d9851d9e074cc4215d9d91255f:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2593,25 +2594,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 53, - "tx_hash": "f0f47bb2d44ffbcf2807d16bbeb95fd0d7ccba0a4666bb553e30490b0fb1ef31", + "tx_hash": "e6ca911a0b08aa83675667b9ca8e02c32aeb2da53061aba62dde2da5b66b8fe8", "block_index": 187, - "block_hash": "2ee8db9051c2041e237748fbd65fd96939e3193f4bd6b4aeed752123d2afea1f", - "block_time": 1729328944, - "source": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", - "destination": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "block_hash": "73fddac4584bdd33b80d2b73fe415da9f48d23e506dfb7ba55e3e91b4449e625", + "block_time": 1729416196, + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "destination": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "btc_amount": 2000, "fee": 10000, - "data": "0bfda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a8dc06a5357ff8379528e48e73da07324302ec9fdcfc37f03305d0f9f0cfe28d5", + "data": "0b0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da3934797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", "supported": true, - "utxos_info": "f0f47bb2d44ffbcf2807d16bbeb95fd0d7ccba0a4666bb553e30490b0fb1ef31:0", + "utxos_info": "e6ca911a0b08aa83675667b9ca8e02c32aeb2da53061aba62dde2da5b66b8fe8:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a", - "tx1_hash": "8dc06a5357ff8379528e48e73da07324302ec9fdcfc37f03305d0f9f0cfe28d5", - "order_match_id": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a_8dc06a5357ff8379528e48e73da07324302ec9fdcfc37f03305d0f9f0cfe28d5", + "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", + "tx1_hash": "34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", + "order_match_id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", "status": "valid" } }, @@ -2626,23 +2627,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 58, - "tx_hash": "2b0f3f831aaf9342b4b2729c9f9ae4017edf58e751e2073a2025d0a7c1d8856a", + "tx_hash": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa", "block_index": 192, - "block_hash": "5897bcdb0e687832bd9b5458582ce9d410e0c01f5ff26964538751a9e645b4db", - "block_time": 1729328976, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "block_hash": "7ed678c7467e7efadcf543e389f591346431c76c567638ba2fc748d67b102781", + "block_time": 1729416229, + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "460c2af3b2417a07ed4648e73879edfec272c01513088c21273c745f504ee68731", + "data": "460a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", "supported": true, - "utxos_info": "2b0f3f831aaf9342b4b2729c9f9ae4017edf58e751e2073a2025d0a7c1d8856a:1", + "utxos_info": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "0c2af3b2417a07ed4648e73879edfec272c01513088c21273c745f504ee68731", + "offer_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", "status": "valid" } }, @@ -2657,17 +2658,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 61, - "tx_hash": "a2796a7a01cac72fd1b2e54ffda7f4880fcc653db5d80725a8ec6499d028f44c", + "tx_hash": "849f54d8426192c0270d4d240627ba157876e3601948aed0ac24e730dcab52d7", "block_index": 195, - "block_hash": "077fdc319fd71dd9c240c75deca71a0d77e058a388264622e922d44c1245be33", - "block_time": 1729328988, - "source": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "block_hash": "3ecdd06511d985f7dd0ec1b9070e68ab57bd0c147b76d85bc1ac386a188c75a3", + "block_time": 1729416242, + "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "a2796a7a01cac72fd1b2e54ffda7f4880fcc653db5d80725a8ec6499d028f44c:1", + "utxos_info": "849f54d8426192c0270d4d240627ba157876e3601948aed0ac24e730dcab52d7:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2697,17 +2698,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 33, - "tx_hash": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b", + "tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", "block_index": 146, - "block_hash": "1dbb3f731d12c338d0fff2dba7ae1dc68b7618cb0c25a4c17c3860d2986bf898", - "block_time": 1729328765, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "block_hash": "51043a618d96f9687769ae64fa0eb9d1a1079f3ded8bbe5e49418384ff97bca9", + "block_time": 1729416035, + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0c000000000000000100000000000000010000000000002710000000000000000100801d6078f1db25d3de6e9a6c6ff0c087bf12827043", + "data": "0c00000000000000010000000000000001000000000000271000000000000000010080d8738784ceb0bcf1708fd9c365706baff86fe9da", "supported": true, - "utxos_info": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b:1", + "utxos_info": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2719,7 +2720,7 @@ Here is sample API output for each of these transactions: "mainchainrate": 1, "dispenser_status": 0, "action_address": null, - "oracle_address": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "oracle_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "status": "valid", "asset_info": { "divisible": true, @@ -2743,17 +2744,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 62, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_hash": "6cc2b82f06aeb0c72e06479a6b4c738aa8b77e6f9950befce25b29af7462b71a", - "block_time": 1729328997, - "source": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", - "destination": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "block_hash": "6507d71596a5bde486e1a5c1e33be2c96c037acf161f1c5cb41cd6e966e2d3a2", + "block_time": 1729416251, + "source": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "destination": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1:1 5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", + "utxos_info": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1 9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2773,17 +2774,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 41, - "tx_hash": "51eed6917af775e4fdffc81b0eb1484ad7ae4677e2905bb9966e8de45f9a683d", + "tx_hash": "0c95334ce0b328f2ff4e1e44c4e96d503ba60b7b2b1fbabeabef5f3ac971b288", "block_index": 154, - "block_hash": "61460fcd7f685172e1098f7448ec29d92345917df438098ef3c1de780e701250", - "block_time": 1729328809, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "block_hash": "0b93f216226ac6e70d0eba16dee49d06deb99a6512254aaa8f3073f4c7a61b47", + "block_time": 1729416070, + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "51eed6917af775e4fdffc81b0eb1484ad7ae4677e2905bb9966e8de45f9a683d:1", + "utxos_info": "0c95334ce0b328f2ff4e1e44c4e96d503ba60b7b2b1fbabeabef5f3ac971b288:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2796,7 +2797,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -2821,17 +2822,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 48, - "tx_hash": "ad7cd24a91d670e0fb520c404cfc2fa0df0ee9a9f8bf4092b67790f6ca07c072", + "tx_hash": "bb2aa89179834fafe03acecbbade4d6fd928251f2923a59b4656957ab3685976", "block_index": 161, - "block_hash": "0f6e3f8f7bd5e7619abfab2f819af6253de7190dc82b89a6fcdafd9f46365c27", - "block_time": 1729328839, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "block_hash": "542c0473bf883435e5fb653e10544a72767df4635b227d926071e380e012fa8c", + "block_time": 1729416112, + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "destination": null, "btc_amount": 0, "fee": 10000, "data": "17015308217a15c0c2000000174876e80001000016987952c23e7c7c94dd9fd148af3f5276f9092bbbc2e941207375626e756d65726963206173736574", "supported": true, - "utxos_info": "ad7cd24a91d670e0fb520c404cfc2fa0df0ee9a9f8bf4092b67790f6ca07c072:1", + "utxos_info": "bb2aa89179834fafe03acecbbade4d6fd928251f2923a59b4656957ab3685976:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2863,17 +2864,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee", + "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", "block_index": 193, - "block_hash": "09f548e451b21449feb36715f104d87137e3b88a81d8b30c5306820791308f83", - "block_time": 1729328980, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "block_hash": "4711586e156dc07bc446b0d13bd07197fb6073457f04e8c962b18601d7aab73c", + "block_time": 1729416233, + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee:1", + "utxos_info": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -2916,17 +2917,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 55, - "tx_hash": "e07e301352fc03f3fa32de1f8c0b07f8817a96104c5a64171cff40e24d3ed90e", + "tx_hash": "41940d57c4a9b1f5d0a22cb937643b5a48181fabeb27a4fe2ae5e3b102045d0f", "block_index": 189, - "block_hash": "573a23625cecb321febd98288a121ccd38b89811cd92d5eef602fec2f4875660", - "block_time": 1729328963, - "source": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "block_hash": "52ba398203ce8671aca2d10a18cc3862be1bf09075f1969783987762cf99687f", + "block_time": 1729416215, + "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080cef2d65b27e2f1482b387d3e4386a2ca6329bcf4", + "data": "020000000000000001000000000000271080bf13d9c76ee760db64d132b5dc3f99ed263282ec", "supported": true, - "utxos_info": "e07e301352fc03f3fa32de1f8c0b07f8817a96104c5a64171cff40e24d3ed90e:1", + "utxos_info": "41940d57c4a9b1f5d0a22cb937643b5a48181fabeb27a4fe2ae5e3b102045d0f:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -2934,7 +2935,7 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "memo": null, "asset_info": { "divisible": true, @@ -2957,17 +2958,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 56, - "tx_hash": "0db25b816b9c26ff7c0412f71dd828e22496d1003d9ad2febad4f57e9edf125f", + "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", "block_index": 190, - "block_hash": "7b860b4ab990f18e77f0ef99352189936615fcc1d2c29872a12a7c154dd92cf7", - "block_time": 1729328967, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "block_hash": "49031dd5afeca85d63b74c5b576803fe4396010c7929926e9d94cfc692574922", + "block_time": 1729416220, + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a716afdc0f9ff4a325fe944cb30be8f52acc0a56802bb48e36a1ca3ac00f4cca764c8517130910023b80cef2d65b27e2f1482b387d3e4386a2ca6329bcf4400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003803ba2dced599f88fbfa5943ac7d4ab45523f9908780b964d3e562cdc29be80c17fb47d0461efe1c5a5d80bf13d9c76ee760db64d132b5dc3f99ed263282ec400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "0db25b816b9c26ff7c0412f71dd828e22496d1003d9ad2febad4f57e9edf125f:0", + "utxos_info": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -2975,14 +2976,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "destination": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -2990,7 +2991,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3016,23 +3017,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 60, - "tx_hash": "75becfa6beb8ad5af35ed1fb85254b67d1fab4fb19f4e745446677c859461e60", + "tx_hash": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", "block_index": 194, - "block_hash": "5fb2486e81e7eb7273a991ebc737803d9beb57e5fa432f56b0e137fa5f8b605b", - "block_time": 1729328983, - "source": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "block_hash": "728a813061fac83aa7ba84782106a41b12625043d7d6bfa23a9c143df030f128", + "block_time": 1729416237, + "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480cef2d65b27e2f1482b387d3e4386a2ca6329bcf4017377656570206d7920617373657473", + "data": "0480bf13d9c76ee760db64d132b5dc3f99ed263282ec017377656570206d7920617373657473", "supported": true, - "utxos_info": "75becfa6beb8ad5af35ed1fb85254b67d1fab4fb19f4e745446677c859461e60:1", + "utxos_info": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "flags": 1, "memo": "sweep my assets" } @@ -3065,17 +3066,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 62, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_hash": "6cc2b82f06aeb0c72e06479a6b4c738aa8b77e6f9950befce25b29af7462b71a", - "block_time": 1729328997, - "source": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", - "destination": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "block_hash": "6507d71596a5bde486e1a5c1e33be2c96c037acf161f1c5cb41cd6e966e2d3a2", + "block_time": 1729416251, + "source": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "destination": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1:1 5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", + "utxos_info": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1 9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3088,17 +3089,17 @@ Returns the list of the last ten transactions }, { "tx_index": 61, - "tx_hash": "a2796a7a01cac72fd1b2e54ffda7f4880fcc653db5d80725a8ec6499d028f44c", + "tx_hash": "849f54d8426192c0270d4d240627ba157876e3601948aed0ac24e730dcab52d7", "block_index": 195, - "block_hash": "077fdc319fd71dd9c240c75deca71a0d77e058a388264622e922d44c1245be33", - "block_time": 1729328988, - "source": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "block_hash": "3ecdd06511d985f7dd0ec1b9070e68ab57bd0c147b76d85bc1ac386a188c75a3", + "block_time": 1729416242, + "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "a2796a7a01cac72fd1b2e54ffda7f4880fcc653db5d80725a8ec6499d028f44c:1", + "utxos_info": "849f54d8426192c0270d4d240627ba157876e3601948aed0ac24e730dcab52d7:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3130,7 +3131,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `02000000000101b32c09ec31f80e99942a49e8e563ef9c1e9927bf60333dd19fa31ac3e20407d30000000000ffffffff020000000000000000236a21e524f5d2aa51724dc2cb917715a32c0fb403ffc262da89509e09672232a35b7f90f0ca052a01000000160014a925172f0c3b4a1a72da525642cbb72152945d850247304402204908d42cc87ab3d8da5db41b62db70e5af66dacdc1f0b75b97a533e8dc49beac0220683b9115a67ee1a8d2f8d9da2d21cfbb785d2f88267e964003b476852bc23a8c012103d604cba419087cd219958e0efda726c41d0eace9f1e233395345ecc412ec4f6000000000` (str, required) - Raw transaction in hex format + + rawtransaction: `020000000001011424aa896a288197fe5b388aecb38a7153028017b935009a52addecd7b417bf70000000000ffffffff0200000000000000002c6a2a7f1eff96066a74febe070c3eb2aa81f1c4c5d98bef2bd5557c30a0342cf28946cdb6fbc0562384d68e3df0ca052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab0024730440220144f1cbc542fdd64dbf8d07f20c026c9ccbf9c25d438030d3fc62d26a4375c4e022053d743e199518371250d5cc9fa628a8e95a5fca04380132148d0087416ebe7010121026a1a918fbc2c6d5fb3aa96a683c6930e932f1484f06179aa0a146e66d4d4cb4000000000` (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. @@ -3143,18 +3144,18 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "320000000005f5e100000000182b37176e0000000000000001", + "data": "0c000000000000000100000000000000010000000000002710000000000000000100", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "b32c09ec31f80e99942a49e8e563ef9c1e9927bf60333dd19fa31ac3e20407d3", + "hash": "1424aa896a288197fe5b388aecb38a7153028017b935009a52addecd7b417bf7", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3164,44 +3165,42 @@ Returns Counterparty information from a raw transaction in hex format. "vout": [ { "value": 0, - "script_pub_key": "6a21e524f5d2aa51724dc2cb917715a32c0fb403ffc262da89509e09672232a35b7f90" + "script_pub_key": "6a2a7f1eff96066a74febe070c3eb2aa81f1c4c5d98bef2bd5557c30a0342cf28946cdb6fbc0562384d68e3d" }, { "value": 4999990000, - "script_pub_key": "0014a925172f0c3b4a1a72da525642cbb72152945d85" + "script_pub_key": "0014d173175d97588c462c9f66604b39d4e4f49afab0" } ], "vtxinwit": [ - "304402204908d42cc87ab3d8da5db41b62db70e5af66dacdc1f0b75b97a533e8dc49beac0220683b9115a67ee1a8d2f8d9da2d21cfbb785d2f88267e964003b476852bc23a8c01", - "03d604cba419087cd219958e0efda726c41d0eace9f1e233395345ecc412ec4f60" + "30440220144f1cbc542fdd64dbf8d07f20c026c9ccbf9c25d438030d3fc62d26a4375c4e022053d743e199518371250d5cc9fa628a8e95a5fca04380132148d0087416ebe70101", + "026a1a918fbc2c6d5fb3aa96a683c6930e932f1484f06179aa0a146e66d4d4cb40" ], "lock_time": 0, - "tx_hash": "51eed6917af775e4fdffc81b0eb1484ad7ae4677e2905bb9966e8de45f9a683d", - "tx_id": "51eed6917af775e4fdffc81b0eb1484ad7ae4677e2905bb9966e8de45f9a683d" + "tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "tx_id": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630" }, "unpacked_data": { - "message_type": "dividend", - "message_type_id": 50, + "message_type": "dispenser", + "message_type_id": 12, "message_data": { - "asset": "MYASSETA", - "quantity_per_unit": 100000000, - "dividend_asset": "XCP", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "mainchainrate": 1, + "dispenser_status": 0, + "action_address": null, + "oracle_address": null, "status": "valid", "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "divisible": true, - "locked": false - }, - "dividend_asset_info": { "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", "locked": true, "issuer": null }, - "quantity_per_unit_normalized": "1.00000000" + "give_quantity_normalized": "0.00000001", + "escrow_quantity_normalized": "0.00010000" } }, "btc_amount_normalized": "0.00000000" @@ -3214,7 +3213,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a` (str, required) - Transaction hash + + tx_hash: `a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836` (str, required) - Transaction hash + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -3225,18 +3224,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710802bb48e36a1ca3ac00f4cca764c8517130910023b", + "data": "020000000000000001000000000000271080b964d3e562cdc29be80c17fb47d0461efe1c5a5d", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "bfb7a31c469adf55dc75f4580897faed626fa040638110b72222476e14021543", + "hash": "712bf6e41f93de319d30ed2327a2414a0b550c37986ab107d7ea2599c0a8bece", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3246,20 +3245,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2e5ed643cfc4008523703dbe324bdac24ccc3ec74488540cc07be638b49422cb936f7a28089f08c150def9df413636" + "script_pub_key": "6a2e6d3a458d1347892ccc7e75e210f83acd3a7d8f9a796dcaaed2a363a248d9933ca12a57050cdcb4319a629f938c78" }, { "value": 4999955000, - "script_pub_key": "0014cef2d65b27e2f1482b387d3e4386a2ca6329bcf4" + "script_pub_key": "0014bf13d9c76ee760db64d132b5dc3f99ed263282ec" } ], "vtxinwit": [ - "304402201f5b176f965563fdca6391123784ce7dc1a04fd3dd1e0be402f3dbbdeb5a9a27022016d7e68c570f226f9b219f90f20e52710796c0bff18abe80562b6abf3055094c01", - "03d567dfae416686ae4bbcce1b4951ec2d90fe5aefdf519bcb49858e2a85509e4e" + "30440220573cb018bcc6a86c4ee17cc495742e03d5bf417dacf17d2b6e02a7a944546cd50220409350c75e8554a6d9a20bbf39bfe2036b75d43da562dafcfeee87b498b67f0701", + "02c6afedba8a0914a50ae14060542f470e81757a82ea2a2aba3920c325680b2245" ], "lock_time": 0, - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", - "tx_id": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a" + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_id": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3267,7 +3266,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "memo": null, "asset_info": { "divisible": true, @@ -3328,17 +3327,17 @@ Returns a transaction by its index. { "result": { "tx_index": 62, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_hash": "6cc2b82f06aeb0c72e06479a6b4c738aa8b77e6f9950befce25b29af7462b71a", - "block_time": 1729328997, - "source": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", - "destination": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "block_hash": "6507d71596a5bde486e1a5c1e33be2c96c037acf161f1c5cb41cd6e966e2d3a2", + "block_time": 1729416251, + "source": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "destination": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1:1 5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", + "utxos_info": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1 9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3357,7 +3356,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857` (str, required) - The hash of the transaction + + tx_hash: `9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287` (str, required) - The hash of the transaction + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -3369,17 +3368,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 62, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_hash": "6cc2b82f06aeb0c72e06479a6b4c738aa8b77e6f9950befce25b29af7462b71a", - "block_time": 1729328997, - "source": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", - "destination": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "block_hash": "6507d71596a5bde486e1a5c1e33be2c96c037acf161f1c5cb41cd6e966e2d3a2", + "block_time": 1729416251, + "source": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "destination": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1:1 5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", + "utxos_info": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1 9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3422,12 +3421,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62 }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 }, { "event_index": 561, @@ -3436,14 +3435,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "destination": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b", - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -3454,9 +3453,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 }, { "event_index": 560, @@ -3465,9 +3464,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "status": 0, - "tx_hash": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b", + "tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", "asset_info": { "divisible": true, "asset_longname": null, @@ -3477,24 +3476,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -3504,9 +3503,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 }, { "event_index": 558, @@ -3514,14 +3513,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 196, - "destination": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", + "destination": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", "msg_index": 1, "quantity": 1500000000, - "source": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1:1", + "source": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", "status": "valid", - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -3531,9 +3530,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 } ], "next_cursor": 557, @@ -3546,7 +3545,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857` (str, required) - The hash of the transaction to return + + tx_hash: `9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `563` (str, optional) - The last event index to return @@ -3570,12 +3569,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62 }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 }, { "event_index": 561, @@ -3584,14 +3583,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "destination": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b", - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -3602,9 +3601,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 }, { "event_index": 560, @@ -3613,9 +3612,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "status": 0, - "tx_hash": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b", + "tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", "asset_info": { "divisible": true, "asset_longname": null, @@ -3625,24 +3624,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -3652,9 +3651,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 }, { "event_index": 558, @@ -3662,14 +3661,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 196, - "destination": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", + "destination": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", "msg_index": 1, "quantity": 1500000000, - "source": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1:1", + "source": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", "status": "valid", - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -3679,9 +3678,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 } ], "next_cursor": 557, @@ -3694,7 +3693,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857` (str, required) - The hash of the transaction to return + + tx_hash: `9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287` (str, required) - The hash of the transaction to return + cursor (str, optional) - The last index of the debits to return + Default: `None` + limit: `5` (int, optional) - The maximum number of debits to return @@ -3713,10 +3712,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 62, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "source": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1:1", - "destination": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", + "source": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", + "destination": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -3724,7 +3723,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -3737,10 +3736,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 62, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "source": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1:1", - "destination": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", + "source": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", + "destination": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -3748,11 +3747,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -3770,7 +3769,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857` (str, required) - The hash of the transaction to return + + tx_hash: `9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287` (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 @@ -3790,27 +3789,27 @@ Returns the dispenses of a block { "tx_index": 62, "dispense_index": 0, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", - "destination": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "destination": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b", + "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "oracle_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "last_status_tx_hash": null, - "origin": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "origin": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3825,7 +3824,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -3869,16 +3868,16 @@ Returns the events of a transaction "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -3888,9 +3887,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 }, { "event_index": 557, @@ -3900,12 +3899,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "quantity": 1500000000, "tx_index": 62, - "utxo": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", - "utxo_address": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", - "block_time": 1729328997, + "utxo": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -3915,9 +3914,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 }, { "event_index": 554, @@ -3927,24 +3926,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "quantity": 1500000000, "tx_index": 62, - "utxo": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", - "utxo_address": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", - "block_time": 1729328997, + "utxo": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "block_time": 1729416251, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 } ], "next_cursor": null, @@ -3957,7 +3956,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857` (str, required) - The hash of the transaction to return + + tx_hash: `9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `563` (str, optional) - The last event index to return + Default: `None` @@ -3979,16 +3978,16 @@ Returns the events of a transaction "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -3998,9 +3997,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 }, { "event_index": 557, @@ -4010,12 +4009,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "quantity": 1500000000, "tx_index": 62, - "utxo": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", - "utxo_address": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", - "block_time": 1729328997, + "utxo": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -4025,9 +4024,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 }, { "event_index": 554, @@ -4037,24 +4036,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "quantity": 1500000000, "tx_index": 62, - "utxo": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", - "utxo_address": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", - "block_time": 1729328997, + "utxo": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "block_time": 1729416251, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 } ], "next_cursor": null, @@ -4069,7 +4068,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp,bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23,bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22` (str, required) - Comma separated list of addresses + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -4093,7 +4092,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4103,7 +4102,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -4114,7 +4113,7 @@ Returns the balances of several addresses "total": 97999999980, "addresses": [ { - "address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -4124,7 +4123,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -4135,7 +4134,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4145,7 +4144,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -4156,7 +4155,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4166,7 +4165,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -4177,7 +4176,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4187,7 +4186,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -4204,7 +4203,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp,bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23,bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22` (str, required) - Comma separated list of addresses to return + cursor: `62` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4223,17 +4222,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 59, - "tx_hash": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee", + "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", "block_index": 193, - "block_hash": "09f548e451b21449feb36715f104d87137e3b88a81d8b30c5306820791308f83", - "block_time": 1729328980, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "block_hash": "4711586e156dc07bc446b0d13bd07197fb6073457f04e8c962b18601d7aab73c", + "block_time": 1729416233, + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee:1", + "utxos_info": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4269,23 +4268,23 @@ Returns the transactions of a list of addresses }, { "tx_index": 58, - "tx_hash": "2b0f3f831aaf9342b4b2729c9f9ae4017edf58e751e2073a2025d0a7c1d8856a", + "tx_hash": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa", "block_index": 192, - "block_hash": "5897bcdb0e687832bd9b5458582ce9d410e0c01f5ff26964538751a9e645b4db", - "block_time": 1729328976, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "block_hash": "7ed678c7467e7efadcf543e389f591346431c76c567638ba2fc748d67b102781", + "block_time": 1729416229, + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "460c2af3b2417a07ed4648e73879edfec272c01513088c21273c745f504ee68731", + "data": "460a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", "supported": true, - "utxos_info": "2b0f3f831aaf9342b4b2729c9f9ae4017edf58e751e2073a2025d0a7c1d8856a:1", + "utxos_info": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "0c2af3b2417a07ed4648e73879edfec272c01513088c21273c745f504ee68731", + "offer_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", "status": "valid" } }, @@ -4293,17 +4292,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 57, - "tx_hash": "0c2af3b2417a07ed4648e73879edfec272c01513088c21273c745f504ee68731", + "tx_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", "block_index": 191, - "block_hash": "0826a6c8402128526d9748611755dc61663b39f77909517585100318a72b2dcc", - "block_time": 1729328972, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "block_hash": "2fb7daac12d57d03a72504b4a83dcdcf2526bf0ddd4ef79a494697e3933b3d32", + "block_time": 1729416224, + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "0c2af3b2417a07ed4648e73879edfec272c01513088c21273c745f504ee68731:1", + "utxos_info": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4339,17 +4338,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 56, - "tx_hash": "0db25b816b9c26ff7c0412f71dd828e22496d1003d9ad2febad4f57e9edf125f", + "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", "block_index": 190, - "block_hash": "7b860b4ab990f18e77f0ef99352189936615fcc1d2c29872a12a7c154dd92cf7", - "block_time": 1729328967, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "block_hash": "49031dd5afeca85d63b74c5b576803fe4396010c7929926e9d94cfc692574922", + "block_time": 1729416220, + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a716afdc0f9ff4a325fe944cb30be8f52acc0a56802bb48e36a1ca3ac00f4cca764c8517130910023b80cef2d65b27e2f1482b387d3e4386a2ca6329bcf4400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003803ba2dced599f88fbfa5943ac7d4ab45523f9908780b964d3e562cdc29be80c17fb47d0461efe1c5a5d80bf13d9c76ee760db64d132b5dc3f99ed263282ec400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "0db25b816b9c26ff7c0412f71dd828e22496d1003d9ad2febad4f57e9edf125f:0", + "utxos_info": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4357,14 +4356,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "destination": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -4372,7 +4371,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -4391,25 +4390,25 @@ Returns the transactions of a list of addresses }, { "tx_index": 53, - "tx_hash": "f0f47bb2d44ffbcf2807d16bbeb95fd0d7ccba0a4666bb553e30490b0fb1ef31", + "tx_hash": "e6ca911a0b08aa83675667b9ca8e02c32aeb2da53061aba62dde2da5b66b8fe8", "block_index": 187, - "block_hash": "2ee8db9051c2041e237748fbd65fd96939e3193f4bd6b4aeed752123d2afea1f", - "block_time": 1729328944, - "source": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", - "destination": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "block_hash": "73fddac4584bdd33b80d2b73fe415da9f48d23e506dfb7ba55e3e91b4449e625", + "block_time": 1729416196, + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "destination": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "btc_amount": 2000, "fee": 10000, - "data": "0bfda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a8dc06a5357ff8379528e48e73da07324302ec9fdcfc37f03305d0f9f0cfe28d5", + "data": "0b0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da3934797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", "supported": true, - "utxos_info": "f0f47bb2d44ffbcf2807d16bbeb95fd0d7ccba0a4666bb553e30490b0fb1ef31:0", + "utxos_info": "e6ca911a0b08aa83675667b9ca8e02c32aeb2da53061aba62dde2da5b66b8fe8:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a", - "tx1_hash": "8dc06a5357ff8379528e48e73da07324302ec9fdcfc37f03305d0f9f0cfe28d5", - "order_match_id": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a_8dc06a5357ff8379528e48e73da07324302ec9fdcfc37f03305d0f9f0cfe28d5", + "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", + "tx1_hash": "34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", + "order_match_id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", "status": "valid" } }, @@ -4426,7 +4425,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp,bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23,bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `563` (str, optional) - The last event index to return @@ -4462,11 +4461,11 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "status": "open", - "tx_hash": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee", + "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", "tx_index": 59, - "block_time": 1729328980, + "block_time": 1729416233, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4490,24 +4489,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee", + "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", "block_index": 193, - "block_time": 1729328980 + "block_time": 1729416233 }, { "event_index": 528, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCP", "block_index": 193, - "event": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee", + "event": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", "quantity": 1000, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1729328980, + "block_time": 1729416233, "asset_info": { "divisible": true, "asset_longname": null, @@ -4517,25 +4516,25 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee", + "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", "block_index": 193, - "block_time": 1729328980 + "block_time": 1729416233 }, { "event_index": 527, "event": "NEW_TRANSACTION", "params": { - "block_hash": "09f548e451b21449feb36715f104d87137e3b88a81d8b30c5306820791308f83", + "block_hash": "4711586e156dc07bc446b0d13bd07197fb6073457f04e8c962b18601d7aab73c", "block_index": 193, - "block_time": 1729328980, + "block_time": 1729416233, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "tx_hash": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", "tx_index": 59, - "utxos_info": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee:1", + "utxos_info": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4567,40 +4566,40 @@ Returns the events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee", + "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", "block_index": 193, - "block_time": 1729328980 + "block_time": 1729416233 }, { "event_index": 523, "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "0c2af3b2417a07ed4648e73879edfec272c01513088c21273c745f504ee68731", - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "offer_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "status": "valid", - "tx_hash": "2b0f3f831aaf9342b4b2729c9f9ae4017edf58e751e2073a2025d0a7c1d8856a", + "tx_hash": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa", "tx_index": 58, - "block_time": 1729328976 + "block_time": 1729416229 }, - "tx_hash": "2b0f3f831aaf9342b4b2729c9f9ae4017edf58e751e2073a2025d0a7c1d8856a", + "tx_hash": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa", "block_index": 192, - "block_time": 1729328976 + "block_time": 1729416229 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCP", "block_index": 192, "calling_function": "cancel order", - "event": "0c2af3b2417a07ed4648e73879edfec272c01513088c21273c745f504ee68731", + "event": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", "quantity": 1000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1729328976, + "block_time": 1729416229, "asset_info": { "divisible": true, "asset_longname": null, @@ -4610,9 +4609,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "2b0f3f831aaf9342b4b2729c9f9ae4017edf58e751e2073a2025d0a7c1d8856a", + "tx_hash": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa", "block_index": 192, - "block_time": 1729328976 + "block_time": 1729416229 } ], "next_cursor": 520, @@ -4625,7 +4624,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24,bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt,bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3` (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 @@ -4641,17 +4640,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "destination": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "memo": null, "quantity": 10000, - "source": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "status": "valid", - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "tx_index": 63, "asset_info": { "divisible": true, @@ -4662,22 +4661,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729329001.736676 + "timestamp": 1729416255.7714357 }, { - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "event": "CREDIT", "params": { - "address": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "event": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -4687,22 +4686,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729329001.736676 + "timestamp": 1729416255.7714357 }, { - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "asset": "XCP", "block_index": 196, - "event": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "event": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -4712,30 +4711,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729329001.736676 + "timestamp": 1729416255.7714357 }, { - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729329001.736676, + "block_time": 1729416255.7714357, "btc_amount": 0, - "data": "0200000000000000010000000000002710802bb48e36a1ca3ac00f4cca764c8517130910023b", + "data": "020000000000000001000000000000271080b964d3e562cdc29be80c17fb47d0461efe1c5a5d", "destination": "", "fee": 10000, - "source": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "tx_index": 63, - "utxos_info": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a:1", + "utxos_info": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "memo": null, "asset_info": { "divisible": true, @@ -4749,7 +4748,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729329001.736676 + "timestamp": 1729416255.7714357 } ], "next_cursor": null, @@ -4762,7 +4761,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp` (str, required) - The address to return + + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -4782,7 +4781,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -4790,14 +4789,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -4805,14 +4804,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -4827,7 +4826,7 @@ Returns the balances of an address "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -4835,7 +4834,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -4852,7 +4851,7 @@ Returns the balances of an address Returns the balance of an address and asset + Parameters - + address: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp` (str, required) - The address to return + + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (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` @@ -4864,7 +4863,7 @@ Returns the balance of an address and asset ``` { "result": { - "address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -4886,7 +4885,7 @@ Returns the balance of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp` (str, required) - The address to return + + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -4936,16 +4935,16 @@ Returns the credits of an address "result": [ { "block_index": 192, - "address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "0c2af3b2417a07ed4648e73879edfec272c01513088c21273c745f504ee68731", + "event": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729328976, + "block_time": 1729416229, "asset_info": { "divisible": true, "asset_longname": null, @@ -4957,16 +4956,16 @@ Returns the credits of an address }, { "block_index": 184, - "address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "417b7585cb70e5e9f3850385defa712ecae11bac8afe116a63861a98648f1b11", + "event": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729328864, + "block_time": 1729416128, "asset_info": { "divisible": true, "asset_longname": null, @@ -4978,20 +4977,20 @@ Returns the credits of an address }, { "block_index": 161, - "address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "ad7cd24a91d670e0fb520c404cfc2fa0df0ee9a9f8bf4092b67790f6ca07c072", + "event": "bb2aa89179834fafe03acecbbade4d6fd928251f2923a59b4656957ab3685976", "tx_index": 48, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729328839, + "block_time": 1729416112, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -4999,20 +4998,20 @@ Returns the credits of an address }, { "block_index": 158, - "address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "71865058eba11d6649831cdf7a6928844665cb4b60156d41fd86f75bf504d846", + "event": "d875bf5554d034912c2a9eb7d151d9f055e3135142c077fa342ce253d4b54d3e", "tx_index": 45, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729328827, + "block_time": 1729416098, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -5024,16 +5023,16 @@ Returns the credits of an address "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "e630b15a8dd1629ee5d8c712ceeb4baaa1f861580e65556651bd38e7509e0463", + "event": "aebd60a74f16beb780629243965a4832b6c9e75043be78503b78cb904acba5d6", "tx_index": 39, - "utxo": "e630b15a8dd1629ee5d8c712ceeb4baaa1f861580e65556651bd38e7509e0463:1", - "utxo_address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "utxo": "aebd60a74f16beb780629243965a4832b6c9e75043be78503b78cb904acba5d6:1", + "utxo_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "confirmed": true, - "block_time": 1729328801, + "block_time": 1729416061, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -5050,7 +5049,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp` (str, required) - The address to return + + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5089,16 +5088,16 @@ Returns the debits of an address "result": [ { "block_index": 193, - "address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee", + "event": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729328980, + "block_time": 1729416233, "asset_info": { "divisible": true, "asset_longname": null, @@ -5110,16 +5109,16 @@ Returns the debits of an address }, { "block_index": 191, - "address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "0c2af3b2417a07ed4648e73879edfec272c01513088c21273c745f504ee68731", + "event": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729328972, + "block_time": 1729416224, "asset_info": { "divisible": true, "asset_longname": null, @@ -5131,16 +5130,16 @@ Returns the debits of an address }, { "block_index": 190, - "address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "0db25b816b9c26ff7c0412f71dd828e22496d1003d9ad2febad4f57e9edf125f", + "event": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729328967, + "block_time": 1729416220, "asset_info": { "divisible": true, "asset_longname": null, @@ -5152,20 +5151,20 @@ Returns the debits of an address }, { "block_index": 190, - "address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "0db25b816b9c26ff7c0412f71dd828e22496d1003d9ad2febad4f57e9edf125f", + "event": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729328967, + "block_time": 1729416220, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -5173,16 +5172,16 @@ Returns the debits of an address }, { "block_index": 185, - "address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a", + "event": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", "tx_index": 51, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729328936, + "block_time": 1729416187, "asset_info": { "divisible": true, "asset_longname": null, @@ -5203,7 +5202,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp` (str, required) - The address of the feed + + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5238,7 +5237,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp` (str, required) - The address to return + + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (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 @@ -5257,9 +5256,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "d643f35218e54f20347aca5fafebc46a8b2689364473bfb9cef174c653027a36", + "tx_hash": "674a65a64a4826a0b0d490aca3e07b7fd65869b1649206fa97265a826ed95b11", "block_index": 137, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5267,7 +5266,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729328726, + "block_time": 1729415995, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5281,7 +5280,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp` (str, required) - The address to return + + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (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 @@ -5300,14 +5299,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "2d45383fabd48d4fbd09bc4498025f4b86a70ee4d22bf96330956ae8c88138b1", + "tx_hash": "55cc024ddcd9ac23b7cf78f81f744c3f8b3fd177ee079fc992c75f53faafde70", "block_index": 112, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1729328622, + "block_time": 1729415886, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5322,7 +5321,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp` (str, required) - The address to return + + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address to return + cursor (str, optional) - The last index of the sends to return + Default: `None` + limit: `5` (int, optional) - The maximum number of sends to return @@ -5341,10 +5340,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 56, - "tx_hash": "0db25b816b9c26ff7c0412f71dd828e22496d1003d9ad2febad4f57e9edf125f", + "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", "block_index": 190, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5352,7 +5351,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328967, + "block_time": 1729416220, "asset_info": { "divisible": true, "asset_longname": null, @@ -5365,10 +5364,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 56, - "tx_hash": "0db25b816b9c26ff7c0412f71dd828e22496d1003d9ad2febad4f57e9edf125f", + "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", "block_index": 190, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5376,11 +5375,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328967, + "block_time": 1729416220, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -5389,10 +5388,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 56, - "tx_hash": "0db25b816b9c26ff7c0412f71dd828e22496d1003d9ad2febad4f57e9edf125f", + "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", "block_index": 190, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5400,11 +5399,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328967, + "block_time": 1729416220, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -5413,10 +5412,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 39, - "tx_hash": "e630b15a8dd1629ee5d8c712ceeb4baaa1f861580e65556651bd38e7509e0463", + "tx_hash": "aebd60a74f16beb780629243965a4832b6c9e75043be78503b78cb904acba5d6", "block_index": 152, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "e630b15a8dd1629ee5d8c712ceeb4baaa1f861580e65556651bd38e7509e0463:1", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "aebd60a74f16beb780629243965a4832b6c9e75043be78503b78cb904acba5d6:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5424,11 +5423,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328801, + "block_time": 1729416061, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -5437,10 +5436,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 36, - "tx_hash": "65ab2c9382c813a54d863d7d2f4a4a1864fb6b2365a170380c46ac6b64534ee9", + "tx_hash": "29164d2e5e97a484170fd199cd18fb9fc6798b6ac00213c37ac4ae9dbc322b91", "block_index": 149, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "6caf6f14d5c240964758a1664962a0d7c7a904a5889b4cdcde5e3226232613f1:1", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "2df6cb6457b25d97b2a3c828c2ccdf94125693a11ccd1385a63069772b1df123:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5448,11 +5447,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328788, + "block_time": 1729416048, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -5470,7 +5469,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qg0yp2a86t6cxyuw2efl4ceq3tjecjled3vscyk` (str, required) - The address to return + + address: `bcrt1qkgcujj6uea6hshreznk6fw8e22utgsdyqd02hg` (str, required) - The address to return + cursor (str, optional) - The last index of the sends to return + Default: `None` + limit: `5` (int, optional) - The maximum number of sends to return @@ -5489,10 +5488,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "b13446e62c4017231e1ac95bfb722cf296127f85ebbb20d2fbf187c4bf74dce3", + "tx_hash": "e755d7b8872d3d225da4d98c83eb4694a52915378b4b246272aff784b230d963", "block_index": 151, - "source": "735e2f5c7e85a8477cf81a6916a9e0f65e434d97b273863af40b880a489e4b43:0", - "destination": "bcrt1qg0yp2a86t6cxyuw2efl4ceq3tjecjled3vscyk", + "source": "cdcf917d341dcb5152a735abf3e6fbe5c3f3df03e327bdacc1f0c3f858ddbbeb:0", + "destination": "bcrt1qkgcujj6uea6hshreznk6fw8e22utgsdyqd02hg", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5500,11 +5499,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328796, + "block_time": 1729416057, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -5522,7 +5521,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp` (str, required) - The address to return + + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address to return + asset: `MYASSETA` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5542,10 +5541,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 56, - "tx_hash": "0db25b816b9c26ff7c0412f71dd828e22496d1003d9ad2febad4f57e9edf125f", + "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", "block_index": 190, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5553,11 +5552,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328967, + "block_time": 1729416220, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -5566,10 +5565,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 56, - "tx_hash": "0db25b816b9c26ff7c0412f71dd828e22496d1003d9ad2febad4f57e9edf125f", + "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", "block_index": 190, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5577,11 +5576,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328967, + "block_time": 1729416220, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -5590,10 +5589,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 39, - "tx_hash": "e630b15a8dd1629ee5d8c712ceeb4baaa1f861580e65556651bd38e7509e0463", + "tx_hash": "aebd60a74f16beb780629243965a4832b6c9e75043be78503b78cb904acba5d6", "block_index": 152, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "e630b15a8dd1629ee5d8c712ceeb4baaa1f861580e65556651bd38e7509e0463:1", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "aebd60a74f16beb780629243965a4832b6c9e75043be78503b78cb904acba5d6:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5601,11 +5600,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328801, + "block_time": 1729416061, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -5614,10 +5613,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 36, - "tx_hash": "65ab2c9382c813a54d863d7d2f4a4a1864fb6b2365a170380c46ac6b64534ee9", + "tx_hash": "29164d2e5e97a484170fd199cd18fb9fc6798b6ac00213c37ac4ae9dbc322b91", "block_index": 149, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "6caf6f14d5c240964758a1664962a0d7c7a904a5889b4cdcde5e3226232613f1:1", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "2df6cb6457b25d97b2a3c828c2ccdf94125693a11ccd1385a63069772b1df123:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5625,11 +5624,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328788, + "block_time": 1729416048, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -5647,7 +5646,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qg0yp2a86t6cxyuw2efl4ceq3tjecjled3vscyk` (str, required) - The address to return + + address: `bcrt1qkgcujj6uea6hshreznk6fw8e22utgsdyqd02hg` (str, required) - The address to return + asset: `MYASSETA` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5667,10 +5666,10 @@ Returns the receives of an address and asset "result": [ { "tx_index": 38, - "tx_hash": "b13446e62c4017231e1ac95bfb722cf296127f85ebbb20d2fbf187c4bf74dce3", + "tx_hash": "e755d7b8872d3d225da4d98c83eb4694a52915378b4b246272aff784b230d963", "block_index": 151, - "source": "735e2f5c7e85a8477cf81a6916a9e0f65e434d97b273863af40b880a489e4b43:0", - "destination": "bcrt1qg0yp2a86t6cxyuw2efl4ceq3tjecjled3vscyk", + "source": "cdcf917d341dcb5152a735abf3e6fbe5c3f3df03e327bdacc1f0c3f858ddbbeb:0", + "destination": "bcrt1qkgcujj6uea6hshreznk6fw8e22utgsdyqd02hg", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5678,11 +5677,11 @@ Returns the receives of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328796, + "block_time": 1729416057, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -5700,7 +5699,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp` (str, required) - The address to return + + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5729,9 +5728,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542", + "tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5740,7 +5739,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5750,7 +5749,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729328743, + "block_time": 1729416013, "asset_info": { "divisible": true, "asset_longname": null, @@ -5775,7 +5774,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp` (str, required) - The address to return + + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (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` @@ -5788,9 +5787,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542", + "tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5799,7 +5798,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5809,7 +5808,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729328743, + "block_time": 1729416013, "asset_info": { "divisible": true, "asset_longname": null, @@ -5831,7 +5830,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp` (str, required) - The address to return + + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (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 @@ -5851,19 +5850,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "a9a3578379153ca360a66660c00a998da120a92a2b8be15ae1b7ae80d2787a93", + "tx_hash": "77f26b77b205be83c57e46f437168ffa54afdd0f8fe2855da90317153ec41ae4", "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542", + "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5871,7 +5870,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5886,7 +5885,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729328743, + "block_time": 1729416013, "asset_info": { "divisible": true, "asset_longname": null, @@ -5900,19 +5899,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2596a5f3d099d83b293e6ab485266586439d3362b1dd46f02ea075eb38431b53", + "tx_hash": "ea65dde6c36bf0ee93197974ace92a2b2a68a0821b6f382104f98419c6ffe544", "block_index": 140, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542", + "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5920,7 +5919,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5935,7 +5934,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729328739, + "block_time": 1729416009, "asset_info": { "divisible": true, "asset_longname": null, @@ -5957,7 +5956,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg` (str, required) - The address to return + + address: `bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22` (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 @@ -5977,19 +5976,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "a9a3578379153ca360a66660c00a998da120a92a2b8be15ae1b7ae80d2787a93", + "tx_hash": "77f26b77b205be83c57e46f437168ffa54afdd0f8fe2855da90317153ec41ae4", "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542", + "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5997,7 +5996,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6012,7 +6011,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729328743, + "block_time": 1729416013, "asset_info": { "divisible": true, "asset_longname": null, @@ -6026,19 +6025,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2596a5f3d099d83b293e6ab485266586439d3362b1dd46f02ea075eb38431b53", + "tx_hash": "ea65dde6c36bf0ee93197974ace92a2b2a68a0821b6f382104f98419c6ffe544", "block_index": 140, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542", + "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6046,7 +6045,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6061,7 +6060,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729328739, + "block_time": 1729416009, "asset_info": { "divisible": true, "asset_longname": null, @@ -6083,7 +6082,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp` (str, required) - The address to return + + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (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` @@ -6104,19 +6103,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "a9a3578379153ca360a66660c00a998da120a92a2b8be15ae1b7ae80d2787a93", + "tx_hash": "77f26b77b205be83c57e46f437168ffa54afdd0f8fe2855da90317153ec41ae4", "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542", + "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6124,7 +6123,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6139,7 +6138,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729328743, + "block_time": 1729416013, "asset_info": { "divisible": true, "asset_longname": null, @@ -6153,19 +6152,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2596a5f3d099d83b293e6ab485266586439d3362b1dd46f02ea075eb38431b53", + "tx_hash": "ea65dde6c36bf0ee93197974ace92a2b2a68a0821b6f382104f98419c6ffe544", "block_index": 140, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542", + "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6173,7 +6172,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6188,7 +6187,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729328739, + "block_time": 1729416009, "asset_info": { "divisible": true, "asset_longname": null, @@ -6210,7 +6209,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg` (str, required) - The address to return + + address: `bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22` (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` @@ -6231,19 +6230,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "a9a3578379153ca360a66660c00a998da120a92a2b8be15ae1b7ae80d2787a93", + "tx_hash": "77f26b77b205be83c57e46f437168ffa54afdd0f8fe2855da90317153ec41ae4", "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542", + "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6251,7 +6250,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6266,7 +6265,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729328743, + "block_time": 1729416013, "asset_info": { "divisible": true, "asset_longname": null, @@ -6280,19 +6279,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2596a5f3d099d83b293e6ab485266586439d3362b1dd46f02ea075eb38431b53", + "tx_hash": "ea65dde6c36bf0ee93197974ace92a2b2a68a0821b6f382104f98419c6ffe544", "block_index": 140, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542", + "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6300,7 +6299,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6315,7 +6314,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729328739, + "block_time": 1729416009, "asset_info": { "divisible": true, "asset_longname": null, @@ -6337,7 +6336,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24` (str, required) - The address to return + + address: `bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt` (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 @@ -6356,16 +6355,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 60, - "tx_hash": "75becfa6beb8ad5af35ed1fb85254b67d1fab4fb19f4e745446677c859461e60", + "tx_hash": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", "block_index": 194, - "source": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", - "destination": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729328983, + "block_time": 1729416237, "fee_paid_normalized": "0.00600000" } ], @@ -6379,7 +6378,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp` (str, required) - The address to return + + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address to return + cursor (str, optional) - The last index of the issuances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of issuances to return @@ -6398,14 +6397,14 @@ Returns the issuances of an address "result": [ { "tx_index": 48, - "tx_hash": "ad7cd24a91d670e0fb520c404cfc2fa0df0ee9a9f8bf4092b67790f6ca07c072", + "tx_hash": "bb2aa89179834fafe03acecbbade4d6fd928251f2923a59b4656957ab3685976", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "transfer": false, "callable": false, "call_date": 0, @@ -6420,20 +6419,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729328839, + "block_time": 1729416112, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "1cfc0723b6657889bf8b79917a060d28f6d6580512ca510c795b1b8d119fbf8b", + "tx_hash": "55efb0e7632d7d4e2918c6d68f1a68cf6ebb205b5bf25194db11afe19f288dc0", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "transfer": false, "callable": false, "call_date": 0, @@ -6448,20 +6447,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729328835, + "block_time": 1729416107, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "4fb72a16283af8eaa3aef5a92ab6501220aa8af621848fcd8fa6db58b588c38b", + "tx_hash": "915196486b240c228f8f48b8bc894be2372a5f29da06926a1aad6050d298f626", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "transfer": false, "callable": false, "call_date": 0, @@ -6476,20 +6475,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729328831, + "block_time": 1729416103, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "71865058eba11d6649831cdf7a6928844665cb4b60156d41fd86f75bf504d846", + "tx_hash": "d875bf5554d034912c2a9eb7d151d9f055e3135142c077fa342ce253d4b54d3e", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "transfer": false, "callable": false, "call_date": 0, @@ -6504,20 +6503,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729328827, + "block_time": 1729416098, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "f3cd8ee918135e3b1b1660a69a127e57520bdc3a177d301e4f4786d619538ba5", + "tx_hash": "68455c81e91976b50973996dd5e3b1bafeb9009b2ca1a238e4a1897afbef2d46", "msg_index": 0, "block_index": 155, "asset": "A95428958968845068", "quantity": 0, "divisible": true, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "transfer": false, "callable": false, "call_date": 0, @@ -6532,7 +6531,7 @@ Returns the issuances of an address "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729328813, + "block_time": 1729416085, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -6547,7 +6546,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp` (str, required) - The issuer or owner to return + + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (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 @@ -6570,8 +6569,8 @@ Returns the valid assets issued or owned by an address "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 10000000000, @@ -6579,16 +6578,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729328827, - "last_issuance_block_time": 1729328835, + "first_issuance_block_time": 1729416098, + "last_issuance_block_time": 1729416107, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 100000000000, @@ -6596,16 +6595,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729328773, - "last_issuance_block_time": 1729328773, + "first_issuance_block_time": 1729416044, + "last_issuance_block_time": 1729416044, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 40, @@ -6613,16 +6612,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729328718, - "last_issuance_block_time": 1729328722, + "first_issuance_block_time": 1729415987, + "last_issuance_block_time": 1729415991, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 19, @@ -6630,16 +6629,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729328702, - "last_issuance_block_time": 1729328714, + "first_issuance_block_time": 1729415969, + "last_issuance_block_time": 1729415982, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 0, @@ -6647,8 +6646,8 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729328682, - "last_issuance_block_time": 1729328697, + "first_issuance_block_time": 1729415948, + "last_issuance_block_time": 1729415965, "supply_normalized": "0.00000000" } ], @@ -6662,7 +6661,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp` (str, required) - The issuer to return + + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (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 @@ -6685,8 +6684,8 @@ Returns the valid assets issued by an address "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 10000000000, @@ -6694,16 +6693,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729328827, - "last_issuance_block_time": 1729328835, + "first_issuance_block_time": 1729416098, + "last_issuance_block_time": 1729416107, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 100000000000, @@ -6711,16 +6710,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729328773, - "last_issuance_block_time": 1729328773, + "first_issuance_block_time": 1729416044, + "last_issuance_block_time": 1729416044, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 40, @@ -6728,16 +6727,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729328718, - "last_issuance_block_time": 1729328722, + "first_issuance_block_time": 1729415987, + "last_issuance_block_time": 1729415991, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 19, @@ -6745,16 +6744,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729328702, - "last_issuance_block_time": 1729328714, + "first_issuance_block_time": 1729415969, + "last_issuance_block_time": 1729415982, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 0, @@ -6762,8 +6761,8 @@ Returns the valid assets issued by an address "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729328682, - "last_issuance_block_time": 1729328697, + "first_issuance_block_time": 1729415948, + "last_issuance_block_time": 1729415965, "supply_normalized": "0.00000000" } ], @@ -6777,7 +6776,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp` (str, required) - The owner to return + + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (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 @@ -6800,8 +6799,8 @@ Returns the valid assets owned by an address "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 10000000000, @@ -6809,16 +6808,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729328827, - "last_issuance_block_time": 1729328835, + "first_issuance_block_time": 1729416098, + "last_issuance_block_time": 1729416107, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 100000000000, @@ -6826,16 +6825,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729328773, - "last_issuance_block_time": 1729328773, + "first_issuance_block_time": 1729416044, + "last_issuance_block_time": 1729416044, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 40, @@ -6843,16 +6842,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729328718, - "last_issuance_block_time": 1729328722, + "first_issuance_block_time": 1729415987, + "last_issuance_block_time": 1729415991, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 19, @@ -6860,16 +6859,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729328702, - "last_issuance_block_time": 1729328714, + "first_issuance_block_time": 1729415969, + "last_issuance_block_time": 1729415982, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 0, @@ -6877,8 +6876,8 @@ Returns the valid assets owned by an address "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729328682, - "last_issuance_block_time": 1729328697, + "first_issuance_block_time": 1729415948, + "last_issuance_block_time": 1729415965, "supply_normalized": "0.00000000" } ], @@ -6892,7 +6891,7 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp` (str, required) - The address to return + + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address to return + cursor: `62` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -6911,17 +6910,17 @@ Returns the transactions of an address "result": [ { "tx_index": 59, - "tx_hash": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee", + "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", "block_index": 193, - "block_hash": "09f548e451b21449feb36715f104d87137e3b88a81d8b30c5306820791308f83", - "block_time": 1729328980, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "block_hash": "4711586e156dc07bc446b0d13bd07197fb6073457f04e8c962b18601d7aab73c", + "block_time": 1729416233, + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee:1", + "utxos_info": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6957,23 +6956,23 @@ Returns the transactions of an address }, { "tx_index": 58, - "tx_hash": "2b0f3f831aaf9342b4b2729c9f9ae4017edf58e751e2073a2025d0a7c1d8856a", + "tx_hash": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa", "block_index": 192, - "block_hash": "5897bcdb0e687832bd9b5458582ce9d410e0c01f5ff26964538751a9e645b4db", - "block_time": 1729328976, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "block_hash": "7ed678c7467e7efadcf543e389f591346431c76c567638ba2fc748d67b102781", + "block_time": 1729416229, + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "460c2af3b2417a07ed4648e73879edfec272c01513088c21273c745f504ee68731", + "data": "460a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", "supported": true, - "utxos_info": "2b0f3f831aaf9342b4b2729c9f9ae4017edf58e751e2073a2025d0a7c1d8856a:1", + "utxos_info": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "0c2af3b2417a07ed4648e73879edfec272c01513088c21273c745f504ee68731", + "offer_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", "status": "valid" } }, @@ -6981,17 +6980,17 @@ Returns the transactions of an address }, { "tx_index": 57, - "tx_hash": "0c2af3b2417a07ed4648e73879edfec272c01513088c21273c745f504ee68731", + "tx_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", "block_index": 191, - "block_hash": "0826a6c8402128526d9748611755dc61663b39f77909517585100318a72b2dcc", - "block_time": 1729328972, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "block_hash": "2fb7daac12d57d03a72504b4a83dcdcf2526bf0ddd4ef79a494697e3933b3d32", + "block_time": 1729416224, + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "0c2af3b2417a07ed4648e73879edfec272c01513088c21273c745f504ee68731:1", + "utxos_info": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7027,17 +7026,17 @@ Returns the transactions of an address }, { "tx_index": 56, - "tx_hash": "0db25b816b9c26ff7c0412f71dd828e22496d1003d9ad2febad4f57e9edf125f", + "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", "block_index": 190, - "block_hash": "7b860b4ab990f18e77f0ef99352189936615fcc1d2c29872a12a7c154dd92cf7", - "block_time": 1729328967, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "block_hash": "49031dd5afeca85d63b74c5b576803fe4396010c7929926e9d94cfc692574922", + "block_time": 1729416220, + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a716afdc0f9ff4a325fe944cb30be8f52acc0a56802bb48e36a1ca3ac00f4cca764c8517130910023b80cef2d65b27e2f1482b387d3e4386a2ca6329bcf4400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003803ba2dced599f88fbfa5943ac7d4ab45523f9908780b964d3e562cdc29be80c17fb47d0461efe1c5a5d80bf13d9c76ee760db64d132b5dc3f99ed263282ec400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "0db25b816b9c26ff7c0412f71dd828e22496d1003d9ad2febad4f57e9edf125f:0", + "utxos_info": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7045,14 +7044,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "destination": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -7060,7 +7059,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -7079,17 +7078,17 @@ Returns the transactions of an address }, { "tx_index": 51, - "tx_hash": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a", + "tx_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", "block_index": 185, - "block_hash": "40fed58069ef71518593ea46c6f860d1e1b52bc1b0f040bbed939171bb89acc9", - "block_time": 1729328936, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "block_hash": "7022f01d2361762ff7500ea66fcef11c67e5bdb88379284af1dbec2b0c29efee", + "block_time": 1729416187, + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a:1", + "utxos_info": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7134,7 +7133,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp` (str, required) - The address to return + + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (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 @@ -7153,20 +7152,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 41, - "tx_hash": "51eed6917af775e4fdffc81b0eb1484ad7ae4677e2905bb9966e8de45f9a683d", + "tx_hash": "0c95334ce0b328f2ff4e1e44c4e96d503ba60b7b2b1fbabeabef5f3ac971b288", "block_index": 154, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729328809, + "block_time": 1729416070, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -7191,7 +7190,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp` (str, required) - The address to return + + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7220,9 +7219,9 @@ Returns the orders of an address "result": [ { "tx_index": 49, - "tx_hash": "417b7585cb70e5e9f3850385defa712ecae11bac8afe116a63861a98648f1b11", + "tx_hash": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8", "block_index": 184, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7237,7 +7236,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729328864, + "block_time": 1729416128, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7263,9 +7262,9 @@ Returns the orders of an address }, { "tx_index": 51, - "tx_hash": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a", + "tx_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", "block_index": 188, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7280,7 +7279,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729328949, + "block_time": 1729416201, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7306,9 +7305,9 @@ Returns the orders of an address }, { "tx_index": 57, - "tx_hash": "0c2af3b2417a07ed4648e73879edfec272c01513088c21273c745f504ee68731", + "tx_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", "block_index": 192, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7323,7 +7322,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729328976, + "block_time": 1729416229, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7349,9 +7348,9 @@ Returns the orders of an address }, { "tx_index": 59, - "tx_hash": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee", + "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", "block_index": 193, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7366,7 +7365,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729328980, + "block_time": 1729416233, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7401,7 +7400,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp` (str, required) - The source of the fairminter to return + + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The source of the fairminter to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7419,10 +7418,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "f3cd8ee918135e3b1b1660a69a127e57520bdc3a177d301e4f4786d619538ba5", + "tx_hash": "68455c81e91976b50973996dd5e3b1bafeb9009b2ca1a238e4a1897afbef2d46", "tx_index": 42, "block_index": 155, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7447,13 +7446,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729328813 + "block_time": 1729416085 }, { - "tx_hash": "c34eba9dc88240af07608224d29e4ac423e6b2a0fb83407b5a51c795fdef2d81", + "tx_hash": "251c310af851cba2ce4a58932e7cb803aeb6a9f7a55bac9bbf688ba85a48ef28", "tx_index": 22, "block_index": 135, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7478,13 +7477,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729328718 + "block_time": 1729415987 }, { - "tx_hash": "6b9abfb51341a47410e2295ff273b93864f6753a41c256e3f388ab91bc778c6b", + "tx_hash": "dbd38cf37e8f0c24ae54d5b6169437c48f55fb84fc0583aa0d79858c0f9a69fc", "tx_index": 18, "block_index": 131, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7509,13 +7508,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729328702 + "block_time": 1729415969 }, { - "tx_hash": "c625b42b58b9d8785ff1002e4c734b8e720b7fc7cef912557d0c76850bd363f4", + "tx_hash": "9f887ea5403be9aa383402f97d0e8f856de8951ba3327060b3af17321c9478ad", "tx_index": 14, "block_index": 130, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -7540,13 +7539,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729328697 + "block_time": 1729415965 }, { - "tx_hash": "655c05dbe746884a61caffb235cfb4afe80cda0d2858b276eae7ca9c493dd775", + "tx_hash": "bb813d64db8f65171084ffa83e7128316586ef0283b09807d288d02a0b8e58da", "tx_index": 10, "block_index": 125, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7571,7 +7570,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729328677 + "block_time": 1729415943 } ], "next_cursor": null, @@ -7584,7 +7583,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg` (str, required) - The address of the mints to return + + address: `bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7602,127 +7601,127 @@ Returns the mints by address { "result": [ { - "tx_hash": "2015c6155642a55cbbd4b5fecfe861da6677293d1bc2d945a04daacd6ab34357", + "tx_hash": "6b50dfb9f0288a39497978e107102a20fca9269f60c348a7d3252a97951c3dfa", "tx_index": 23, "block_index": 136, - "source": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", - "fairminter_tx_hash": "c34eba9dc88240af07608224d29e4ac423e6b2a0fb83407b5a51c795fdef2d81", + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "fairminter_tx_hash": "251c310af851cba2ce4a58932e7cb803aeb6a9f7a55bac9bbf688ba85a48ef28", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729328722, + "block_time": 1729415991, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false } }, { - "tx_hash": "5bfc717ef35a3dd9ac3bb684df223e060c500c009cb5db4d186ff1138f7d21c5", + "tx_hash": "ec08c12c9bbaea508612d23ebc7653d37f4f177f216252e62a801b65f3858840", "tx_index": 21, "block_index": 134, - "source": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", - "fairminter_tx_hash": "6b9abfb51341a47410e2295ff273b93864f6753a41c256e3f388ab91bc778c6b", + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "fairminter_tx_hash": "dbd38cf37e8f0c24ae54d5b6169437c48f55fb84fc0583aa0d79858c0f9a69fc", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729328714, + "block_time": 1729415982, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false } }, { - "tx_hash": "aa8be38061e554450ba0cc35f4763bc69f8fc75e065fa603e0043a358a8841a3", + "tx_hash": "187f59a0c410f68e7a905a52efc5ca6aa0cd19f9a082e30ab709d107d8abc5a8", "tx_index": 20, "block_index": 133, - "source": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", - "fairminter_tx_hash": "6b9abfb51341a47410e2295ff273b93864f6753a41c256e3f388ab91bc778c6b", + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "fairminter_tx_hash": "dbd38cf37e8f0c24ae54d5b6169437c48f55fb84fc0583aa0d79858c0f9a69fc", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729328710, + "block_time": 1729415978, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false } }, { - "tx_hash": "424a4b59501e05a9c0623a919c71ef298857ddb9d57d40ab2ee817b8fddebf2d", + "tx_hash": "77cc9d1e2521b94e0c146a22a59691f4c8bc6df0a58ab18d594ecef174baa7ae", "tx_index": 19, "block_index": 132, - "source": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", - "fairminter_tx_hash": "6b9abfb51341a47410e2295ff273b93864f6753a41c256e3f388ab91bc778c6b", + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "fairminter_tx_hash": "dbd38cf37e8f0c24ae54d5b6169437c48f55fb84fc0583aa0d79858c0f9a69fc", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729328706, + "block_time": 1729415974, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false } }, { - "tx_hash": "aa951150a3357485b602b953f102e3bd1f4e42b4902389e48fa0ca17e8b4c778", + "tx_hash": "7897fbc67e359846b7309c1dca579ddb55834c4fb67acfe598508f095ce093a2", "tx_index": 15, "block_index": 127, - "source": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", - "fairminter_tx_hash": "c625b42b58b9d8785ff1002e4c734b8e720b7fc7cef912557d0c76850bd363f4", + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "fairminter_tx_hash": "9f887ea5403be9aa383402f97d0e8f856de8951ba3327060b3af17321c9478ad", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729328686, + "block_time": 1729415952, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false } }, { - "tx_hash": "b68cd5ba32058d09a4cec3391df2638fef0e10eaad112adf8c5a47c96bc2251f", + "tx_hash": "be65810c28d4a6e23b5459a5aff489b71f797fee7c65043b9e917ebbc5897802", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", - "fairminter_tx_hash": "655c05dbe746884a61caffb235cfb4afe80cda0d2858b276eae7ca9c493dd775", + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "fairminter_tx_hash": "bb813d64db8f65171084ffa83e7128316586ef0283b09807d288d02a0b8e58da", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729328669, + "block_time": 1729415935, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false } @@ -7738,7 +7737,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg` (str, required) - The address of the mints to return + + address: `bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22` (str, required) - The address of the mints to return + asset: `FAIRMINTA` (str, required) - The asset of the mints to return + cursor (str, optional) - + Default: `None` @@ -7757,22 +7756,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "b68cd5ba32058d09a4cec3391df2638fef0e10eaad112adf8c5a47c96bc2251f", + "tx_hash": "be65810c28d4a6e23b5459a5aff489b71f797fee7c65043b9e917ebbc5897802", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", - "fairminter_tx_hash": "655c05dbe746884a61caffb235cfb4afe80cda0d2858b276eae7ca9c493dd775", + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "fairminter_tx_hash": "bb813d64db8f65171084ffa83e7128316586ef0283b09807d288d02a0b8e58da", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729328669, + "block_time": 1729415935, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false } @@ -7811,8 +7810,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: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp` (str, required) - The address that will make the bet - + feed_address: `bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address that will make the bet + + feed_address: `bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22` (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) @@ -7880,7 +7879,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: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (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) @@ -7936,7 +7935,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -7948,7 +7947,7 @@ Composes a transaction to broadcast textual and numerical information to the net "btc_out": 0, "btc_change": 4999985819, "btc_fee": 14181, - "rawtransaction": "02000000000101c084ae11d980b5e424d10ee2bfa51b3ecc9cafd04ef8d20d00b50a99f9e976d700000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffff0200000000000000002b6a2993931f3369cb73aec2eb6db5b12790f05d56eaefe2590efb8f98d77df94661f4cdf0ad9e656fe876299bba052a01000000160014a925172f0c3b4a1a72da525642cbb72152945d8502000000000000", + "rawtransaction": "0200000000010103c53ce48053eef01253ac42a4cfc1dacea9590d7f5ca642eb72bc386212974900000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff0200000000000000002b6a29621e6b3dde212622c0a459afe4fb71be54d2c0c406189e8b0b32e7c8ffdfba33ff8b1342e906cf1e009bba052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -7970,8 +7969,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: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp` (str, required) - The address that will be sending the payment - + order_match_id: `fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a_3ac7858b4e6053388907f40c38e43800f7856d7dd4d00aa2a49e1bc8cdb2c407` (str, required) - The ID of the order match to pay for + + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address that will be sending the payment + + order_match_id: `0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2` (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) @@ -8023,23 +8022,23 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "order_match_id": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a_3ac7858b4e6053388907f40c38e43800f7856d7dd4d00aa2a49e1bc8cdb2c407" + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "order_match_id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2" }, "name": "btcpay", - "data": "434e5452505254590bfda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a3ac7858b4e6053388907f40c38e43800f7856d7dd4d00aa2a49e1bc8cdb2c407", + "data": "434e5452505254590b0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999978951, "btc_fee": 18049, - "rawtransaction": "0200000000010150e36844cd693e4ee08916d95df6f4121210a7499305a4f32eab4908c2044f6300000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffff03b80b000000000000160014a925172f0c3b4a1a72da525642cbb72152945d8500000000000000004b6a497faa82be48814ec1be3c2ef3db6aa0fd833805dbfc06c927e5e4b62906d05a88170e013f3f7b31a22d49817c2b0ce5383e0edfab6dee7d6eed75f16332b74ebd85d8670e1857ece035c79f052a01000000160014a925172f0c3b4a1a72da525642cbb72152945d8502000000000000", + "rawtransaction": "0200000000010181dba1d05d6e406dcd50aaec18beffe131d414c55d4dd3d1a51ccfef8b1a339c00000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff03b80b000000000000160014d173175d97588c462c9f66604b39d4e4f49afab000000000000000004b6a4956141941b0b8a0a913a1c95323bd320cbfeed8410c2b57aa1846c8f23c8ad83e51ab7f9f027619783855f567635718ce30ac25e0bacf1962d72093b604d6a990da52bbfdeb2bd53186c79f052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a", - "tx1_hash": "3ac7858b4e6053388907f40c38e43800f7856d7dd4d00aa2a49e1bc8cdb2c407", - "order_match_id": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a_3ac7858b4e6053388907f40c38e43800f7856d7dd4d00aa2a49e1bc8cdb2c407", + "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", + "tx1_hash": "e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", + "order_match_id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", "status": "valid" } } @@ -8052,7 +8051,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: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp` (str, required) - The address with the BTC to burn + + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (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` @@ -8107,7 +8106,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "quantity": 1000, "overburn": false }, @@ -8117,7 +8116,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss "btc_out": 1000, "btc_change": 4999985815, "btc_fee": 13185, - "rawtransaction": "02000000000101df508093420c5e96d0177f1de0e06ba46c3481112c29774f5bbf2837ef0a103a00000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a01000000160014a925172f0c3b4a1a72da525642cbb72152945d8502000000000000" + "rawtransaction": "020000000001017f6caa2830d0e4ce5780f9a7c48d89867206aeb77f898b2d24f861d1a198381f00000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000" } } ``` @@ -8127,8 +8126,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: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687` (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) @@ -8180,21 +8179,21 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "offer_hash": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee" + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "offer_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687" }, "name": "cancel", - "data": "434e5452505254594672cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee", + "data": "434e545250525459466eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985819, "btc_fee": 14181, - "rawtransaction": "02000000000101beb507ca65167623fc55358913d2d1eae96abd16d8c01c6d4821e99ee771d3bd00000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffff0200000000000000002b6a29e5438f1f03cb0930498570ac0ef631a1c9f771e43f2fe03dd7e7771ae838ba5fae292ac05c05979f2d9bba052a01000000160014a925172f0c3b4a1a72da525642cbb72152945d8502000000000000", + "rawtransaction": "02000000000101fe1d219bc9a58fae33f85abbfe1c2e5c6f81800c082c9c9b93a747af11cee39900000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff0200000000000000002b6a29a7b79294aaa962f1893d4d7842d5fcd643ab65a66d472051bb7fda1fc143ea237b84b03aeff31408309bba052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee", + "offer_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", "status": "valid" } } @@ -8207,7 +8206,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (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 @@ -8262,7 +8261,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8281,7 +8280,7 @@ Composes a transaction to destroy a quantity of an asset. "btc_out": 0, "btc_change": 4999986346, "btc_fee": 13654, - "rawtransaction": "02000000000101265d309439ea988d9dec2194decfb925c59e43ed54c7a02218c41df8129ad5d400000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffff020000000000000000226a201766a58174cb0405806ad433bc87613d951570ef441fa4e70d65eef4244fc6a5aabc052a01000000160014a925172f0c3b4a1a72da525642cbb72152945d8502000000000000", + "rawtransaction": "02000000000101ad3e0a3168b60c3c0f9515e21e0b5e2b57d781da219a252a933562c768306e9f00000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff020000000000000000226a20274e41fbee760596790018e0f693d806746d1e0dedfb8f93a62f07d2075b6afdaabc052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8301,7 +8300,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: `bcrt1qu2jyjw0ac8f5tpuf9frh35m7saw6rmplryv7aa` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qpm0krm9adpcqdeu2tmuzwdl325fr9768g564cg` (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) @@ -8362,7 +8361,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qu2jyjw0ac8f5tpuf9frh35m7saw6rmplryv7aa", + "source": "bcrt1qpm0krm9adpcqdeu2tmuzwdl325fr9768g564cg", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8386,7 +8385,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "btc_out": 0, "btc_change": 4949955760, "btc_fee": 14240, - "rawtransaction": "020000000001011eb66a675220829b474137564bfd8c3b9c0e82c961b3a0f16e1d5256487eea1f02000000160014e2a44939fdc1d34587892a4778d37e875da1ec3fffffffff0200000000000000002c6a2acdf34675cbdeb9c2f3c1c2fe99fe6945b00a42e362dbd2b91901a8b2e30e1e18d847688bb30557894784b0540a2701000000160014e2a44939fdc1d34587892a4778d37e875da1ec3f02000000000000", + "rawtransaction": "02000000000101646bccb479cf590cc4e036bef000b0be84b1470859ea9fa4cbde76577125c243020000001600140edf61ecbd687006e78a5ef82737f1551232fb47ffffffff0200000000000000002c6a2a5943c618172e6e00a348295443d2e7f0f85fd8d92c5c0ceed2824a7ad3210a60cd2dc5a9f945829f4275b0540a27010000001600140edf61ecbd687006e78a5ef82737f1551232fb4702000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -8412,7 +8411,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: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp` (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: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address that will be issuing the dividend (must have the ownership of the asset which the dividend is being issued on) + quantity_per_unit: `1` (int, required) - The amount of dividend_asset rewarded (in satoshis, hence integer) + asset: `FAIRMINTA` (str, required) - The asset or subasset that the dividends are being rewarded on + dividend_asset: `XCP` (str, required) - The asset or subasset that the dividends are paid in @@ -8467,14 +8466,14 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -8493,7 +8492,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "btc_out": 0, "btc_change": 4999986287, "btc_fee": 13713, - "rawtransaction": "0200000000010126dda506b5a56df0d5c248ac6f786981f6d1d423b7dcba4cd49b561cb1e41bc900000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffff020000000000000000236a21154148f3fb12d7d7b4f48c7bd6a29d7ad2b663bb3be34de557aa6534f824f522d66fbc052a01000000160014a925172f0c3b4a1a72da525642cbb72152945d8502000000000000", + "rawtransaction": "020000000001013699ad0980fe666890e0b20c6e52e67d0e6c3d902395168a80be6ed1b3e25fc200000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff020000000000000000236a217fba0aa87b9715724d9afa5d7185d276b5ec4a765b4784c0168b2149b02d38eb356fbc052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -8514,10 +8513,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: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (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: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (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` @@ -8578,10 +8577,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "transfer_destination": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "lock": false, "reset": false, @@ -8594,7 +8593,7 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo "btc_out": 546, "btc_change": 4999983749, "btc_fee": 15705, - "rawtransaction": "020000000001016b75af7f827e11f16c78290acd3ffa6d89ea388bc8d5d0906c8ad69294bfcf9700000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffff032202000000000000160014a925172f0c3b4a1a72da525642cbb72152945d850000000000000000236a2158bc8f094b0cfbbad1fab0cc6294a74ebd46b8c5ac882e805ad3e289055390750285b2052a01000000160014a925172f0c3b4a1a72da525642cbb72152945d8502000000000000", + "rawtransaction": "02000000000101040a5b6d2e0896a75657a6546999ce5ffcf0696968f05e1fe436bb2df0e3ac6100000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff032202000000000000160014d173175d97588c462c9f66604b39d4e4f49afab00000000000000000236a21220f11267d1122791192ad25b3698e85d9ee7e6a8809925982042083b08dd7d1f185b2052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -8623,9 +8622,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: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + assets: `XCP,MYASSETA` (str, required) - comma-separated list of assets to send - + destinations: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp,bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23,bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22` (str, required) - comma-separated list of addresses to send to + quantities: `1,2` (str, required) - comma-separated list of quantities to send (in satoshis, hence integer) + memo: `"Hello, world!"` (str, optional) - The Memo associated with this transaction + Default: `None` @@ -8682,16 +8681,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", 1 ], [ "MYASSETA", - "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", 2 ] ], @@ -8699,26 +8698,26 @@ Composes a transaction to send multiple payments to multiple addresses. "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280a925172f0c3b4a1a72da525642cbb72152945d8580a716afdc0f9ff4a325fe944cb30be8f52acc0a568f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e54525052545903000280d173175d97588c462c9f66604b39d4e4f49afab0803ba2dced599f88fbfa5943ac7d4ab45523f990878f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945492, "btc_fee": 52508, - "rawtransaction": "02000000000104c7dfd7f07b2d9e539180f5c3a9b1a66f13c8539c94a3ddcac945ecd6b84e755100000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffff10fe6ecf618c7304e2ca6b190e7506ff9c0260915ef972408c2a05739822f9ce00000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffffc6d9859418e24319cc8db080332115cba73bab965c7583688cc4547fb2b980dc00000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffffd5b3d0f41c69b63cbe50d4a4f90421325f42d74abc326abee3eba10ba6a40ad700000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffff03e8030000000000006951210213d05b5176c48b391d8ea7016ffaca4d209a3dfed99c2db85397af522ae9380b210301fbb7029439e2a4a84e535b4a7a188b9a7bf904dad866f2e8de31221caea3e32103d604cba419087cd219958e0efda726c41d0eace9f1e233395345ecc412ec4f6053aee803000000000000695121031cd05b5176c48b391dadd06c9d3f8b7b2d1606b4cffb6c61b2f564e50bbbac1721025c7e7fa582963eab37baf87eb4ee543891930e2e16d2307dca96544e70c18fa52103d604cba419087cd219958e0efda726c41d0eace9f1e233395345ecc412ec4f6053ae14f316a804000000160014a925172f0c3b4a1a72da525642cbb72152945d8502000002000002000002000000000000", + "rawtransaction": "02000000000104f9e2c5c25688bf8726c76d68df44e859cf98d1e7fae582ada16ebc3946678a9300000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff6ad557f7fcfdfe084d1ac97c0332c20afb11799028ec1a75af8e0b7b03fbdef800000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffffe0de37ae9f2bb605930eaeae4ac684e780d90a42e08eca70d4797dba022dfc9e00000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff22804a4999a199c6f37de0a97b5ac0271919d5b361b621baf8b15050e1ca002200000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff03e8030000000000006951210314ca80272f1d44bde992f431faf91718e09ef86d858211df77d8c0ec597b43cd2103a8b2bc6b618117c7465a64e0ad239f93f3f13d1c50bcee000b9c8ba1a75eaf5421026a1a918fbc2c6d5fb3aa96a683c6930e932f1484f06179aa0a146e66d4d4cb4053aee803000000000000695121021bca80272f1d44bde9b1835c0844002e9f89a0e1cfbb1532a0b3f938bd8fd9a9210252027450c35dfa9ed9d2971af46033eeb9456a3fa92c698f29d4eecdcb31834e21026a1a918fbc2c6d5fb3aa96a683c6930e932f1484f06179aa0a146e66d4d4cb4053ae14f316a804000000160014d173175d97588c462c9f66604b39d4e4f49afab002000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "quantity": 2, "memo": "\"Hello, world!\"", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "destination": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "quantity": 1, "memo": "\"Hello, world!\"", "memo_is_hex": false @@ -8734,7 +8733,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + give_asset: `XCP` (str, required) - The asset that will be given in the trade + give_quantity: `1000` (int, required) - The quantity of the asset that will be given (in satoshis, hence integer) + get_asset: `FAIRMINTA` (str, required) - The asset that will be received in the trade @@ -8792,7 +8791,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -8809,7 +8808,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -8823,7 +8822,7 @@ Composes a transaction to place an order on the distributed exchange. "btc_out": 0, "btc_change": 4999985233, "btc_fee": 14767, - "rawtransaction": "02000000000101f688e122074942c040e5b6aa7b984cced17c462e47a0be9bdb013fbd090d2df400000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffff020000000000000000356a33d7509faf02da42d8cb12c47f6701648b47bb4cc5044ef6950c0bd649ffb2ff2a6dd6956218acb889481642db04145d8490337f51b8052a01000000160014a925172f0c3b4a1a72da525642cbb72152945d8502000000000000", + "rawtransaction": "020000000001015c1000a9495c8eaeda2787422cdadda0a39248d151b6a45c4b79b995426d202700000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff020000000000000000356a33dba46f235b2118f816db02fd0507a464e20270d7bb1ef42c5bbaa1d3a75b4ec1f289f634020926e38e887791ec30dbdab55ace51b8052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -8849,8 +8848,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: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg` (str, required) - The address that will be receiving the asset + + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22` (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 @@ -8910,8 +8909,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "asset": "XCP", "quantity": 1000, "memo": null, @@ -8927,19 +8926,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880a716afdc0f9ff4a325fe944cb30be8f52acc0a56", + "data": "434e54525052545902000000000000000100000000000003e8803ba2dced599f88fbfa5943ac7d4ab45523f99087", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985526, "btc_fee": 14474, - "rawtransaction": "02000000000101bbddb6eb12523c3639e5b1586a1d293dfec4c3abe0505ffcaae82eca7b6eeee300000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffff020000000000000000306a2e18f8e890a95975a5299a46ddda6bdfe43894d86fc7e8d5f07b129a99609e10e21ff9b8b09b74b79b8c63f1da9f9d76b9052a01000000160014a925172f0c3b4a1a72da525642cbb72152945d8502000000000000", + "rawtransaction": "02000000000101b89d93ed0aaba12e8aef6c8b5208101f643d405fd7380a46a47559f6edeb4bc000000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff020000000000000000306a2eaafd5e5b91a750f24331b4abb684b246be7488b6da07d5fe59b8c45d32a31106de40558719e5970cdcd58eb245a576b9052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "memo": null, "quantity_normalized": "0.00001000" } @@ -8953,8 +8952,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: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp` (str, required) - The address that will be sending - + destination: `bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address that will be sending + + destination: `bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22` (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 @@ -9008,23 +9007,23 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480a716afdc0f9ff4a325fe944cb30be8f52acc0a5607ffff", + "data": "434e54525052545904803ba2dced599f88fbfa5943ac7d4ab45523f9908707ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986287, "btc_fee": 13713, - "rawtransaction": "02000000000101f0bc148f7360a7a90ef40efaa9b5852a82c7842a85475560bac5ffdd7e72dae000000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffff020000000000000000236a21e9ae23fb7fc7ac272c7fe50b9ff0f8c438548e71368934c8cca8982c184370b64a6fbc052a01000000160014a925172f0c3b4a1a72da525642cbb72152945d8502000000000000", + "rawtransaction": "02000000000101fe1d7beaaa65e8fe5b1ff462c4fa70efbd038d750f3da1b85b9ba06e5e772e1c00000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff020000000000000000236a2130e42e7060bad5c13bccdd568448eab1079b5e5dbb7e6905e3527a44b3c0e8b97f6fbc052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "flags": 7, "memo": "ffff" } @@ -9038,8 +9037,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: `bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3` (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` @@ -9092,8 +9091,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", - "destination": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "quantity": 1000 }, "name": "dispense", @@ -9102,7 +9101,7 @@ Composes a transaction to send BTC to a dispenser. "btc_out": 1000, "btc_change": 4949852643, "btc_fee": 14357, - "rawtransaction": "0200000000010131efb10f0b49303e55bb66460abaccd7d05fb9be6bd10728cffb4fd4b27bf4f002000000160014a716afdc0f9ff4a325fe944cb30be8f52acc0a56ffffffff03e803000000000000160014cef2d65b27e2f1482b387d3e4386a2ca6329bcf400000000000000000c6a0aebc67a7494123a7bca27e3c1082701000000160014a716afdc0f9ff4a325fe944cb30be8f52acc0a5602000000000000", + "rawtransaction": "02000000000101e88f6bb6a52dde2da6ab6130a52deb2ac3028ecab967566783aa080b1a91cae6020000001600143ba2dced599f88fbfa5943ac7d4ab45523f99087ffffffff03e803000000000000160014bf13d9c76ee760db64d132b5dc3f99ed263282ec00000000000000000c6a0a329d543d7dea56a04a51e3c10827010000001600143ba2dced599f88fbfa5943ac7d4ab45523f9908702000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9119,7 +9118,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp` (str, required) - The address that will be issuing the asset + + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (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: `` @@ -9204,7 +9203,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9229,7 +9228,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "btc_out": 0, "btc_change": 4999985467, "btc_fee": 14533, - "rawtransaction": "02000000000101b6dd08aee73e73ecf376617ca9f9de86b0a9abc9009eaa39839845dd0bd00d1200000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffff020000000000000000316a2f164aa82482a7b2091f86707ee07a28ada148268a3f4e7ae03a4926e0c8117deeac36ae4970c1a98ed356306bfa6c453bb9052a01000000160014a925172f0c3b4a1a72da525642cbb72152945d8502000000000000", + "rawtransaction": "02000000000101324897311064ab9bcc6991d054a3b9f8954cee8bb23c1c172b3ea601224d124c00000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff020000000000000000316a2f60fc0683cdeaead209418cea1ee595c5788630aac3082f33f93bb3f1183e7e593a74944cf918882aea74fc2014367f3bb9052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9262,7 +9261,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: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp` (str, required) - The address that will be minting the asset + + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address that will be minting the asset + asset: `FAIRMINTC` (str, required) - The asset to mint + quantity: `1` (int, optional) - The quantity of the asset to mint (in satoshis, hence integer) + Default: `0` @@ -9317,13 +9316,13 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -9335,7 +9334,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto "btc_out": 0, "btc_change": 4999987049, "btc_fee": 12951, - "rawtransaction": "02000000000101bcf51aa449ce2ba172ef9e9e45f8b05eaa4e47e389346c3452158c4dba552a6b00000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffff020000000000000000166a149d287347c6fa1076c7788580c271a30a9180a86969bf052a01000000160014a925172f0c3b4a1a72da525642cbb72152945d8502000000000000", + "rawtransaction": "02000000000101bd7d44cb1a8cce8ddb850f0b3cb93f096a225a11be18289ea95e72f05f834bd300000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff020000000000000000166a14e78eedfba3389cc0de2378c44d755fc1b88fc7be69bf052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -9353,10 +9352,10 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto Composes a transaction to attach assets from an address to UTXO. + Parameters - + address: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp` (str, required) - The address from which the assets are attached + + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (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: `51eed6917af775e4fdffc81b0eb1484ad7ae4677e2905bb9966e8de45f9a683d:1` (str, optional) - The utxo to attach the assets to + + destination: `361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630:1` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -9409,8 +9408,8 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "51eed6917af775e4fdffc81b0eb1484ad7ae4677e2905bb9966e8de45f9a683d:1", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9423,12 +9422,12 @@ Composes a transaction to attach assets from an address to UTXO. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e5452505254596462637274317134796a33777463763864397035756b3632667479396a616879396666676876396137337663707c353165656436393137616637373565346664666663383162306562313438346164376165343637376532393035626239393636653864653435663961363833643a317c5843507c31303030", + "data": "434e545250525459646263727431713639653377687668747a78797674796c766573796b777735756e3666343734737274636632337c333631383937323333363735656637636233303366636164623037663931663937383061633764383763666164306264353332306230623961396466393633303a317c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999918531, "btc_fee": 78469, - "rawtransaction": "02000000000106760da727458c0935456368197a23bdc5aef3dd818f4d48c011baf25d33f5449d00000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffff5508dcd7d6ca6b27204703f30bd74edf5de3d438a057a58aec86c2edcbc8ee1b00000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffff256a93df1684fd569f03054041eaec4de0af2322bf7d0b2d79e3cbc6e558fc9c00000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffffac04e1ba12935d27b870ec32959b1b7fa7f0135b9c3eb5b3f52fc00c4e75054000000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffffed1642858a1f996dc4b4eaa53fc600d2b64bb023a3debfe13da0bb62beb1e9db00000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffff2256040e80a90ed0463a028f7e684b35fe12e497cb9f27fd78609d6c98d31e6600000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffff04e80300000000000069512102e586b6c10dc8b105c78e4a9cf233b337738a5d98bb7db9eca1f7408a28353bc72103d914e7a93294c9438fcad0fd7868ee68cd222c4afe3e0e7c987cf88bc3b25e6a2103d604cba419087cd219958e0efda726c41d0eace9f1e233395345ecc412ec4f6053aee80300000000000069512103e586b6c10dc8b105c7db1f9ee670b57322c751cfaa6fb9a2a8f1499f7f71645e2103d712e0b97cccc616d184defe2c36b62b96212240be6b1b38c928a9dbc1bd06092103d604cba419087cd219958e0efda726c41d0eace9f1e233395345ecc412ec4f6053aee80300000000000069512102cf86b6c10dc8b105c7dc10cce47db33a1fb067d7fd39eaaa999379fa1d40509a2102ef2681dd4bada322e7b3e99b1e0f861ef4431b79885d7e00ad4d9deea78467e52103d604cba419087cd219958e0efda726c41d0eace9f1e233395345ecc412ec4f6053aec36d22fc06000000160014a925172f0c3b4a1a72da525642cbb72152945d8502000002000002000002000002000002000000000000", + "rawtransaction": "02000000000106da251f016c64930c9b89bcdb4d1851875eb521a1daa3a9756822852ac19bdb1800000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffffb066a01e205eaa38a0d6dd853b8471c40590ad52acc873e4d2955640ea7d288400000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff592e5fb090da16fc1a736149bfc1375fb8b7d112d90c50e3fd09ca564766ec7300000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffffcde3d5cb4d236718f5743f534d72af2257a915ead8ed8d644ed440ca20e5021500000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff6afeeb0964b35520fd7ccd0e26ff5a478fb095a31f3f27f4d2042eef60de307900000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffffeba0072600681eb10d96a09cfd7b2d029c949be6418e6c7f1d880da3cdfec48c00000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff04e80300000000000069512103516fd33a2620b650f990b844b426a3cca4b1220d2ab75122fa417948f498254f2102db35eb7e1d6bfef986886ccc46f7bc295baa8dbe8fa45bd358f5311270de23bb21026a1a918fbc2c6d5fb3aa96a683c6930e932f1484f06179aa0a146e66d4d4cb4053aee80300000000000069512102516fd33a2620b650f9c7e911f167f7dba5eb250d6dec4129ef5f6301b58a659321028625b73a5c30e8ed84993acd43a5ea7918ba9de8daa458cd5ba1394b708d771221026a1a918fbc2c6d5fb3aa96a683c6930e932f1484f06179aa0a146e66d4d4cb4053aee803000000000000695121037b6fd33a2620b650f9cdec14f668a3c1cacb17426cef177a8e3b013182ec5c362103b7438e0d6400898eb3fd02fa20c38b1d28d8f9dde99668af6bc3002a49e9116d21026a1a918fbc2c6d5fb3aa96a683c6930e932f1484f06179aa0a146e66d4d4cb4053aec36d22fc06000000160014d173175d97588c462c9f66604b39d4e4f49afab002000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -9445,8 +9444,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: `5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp` (str, required) - The address to detach the assets to + + utxo: `9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address to detach the assets to + asset: `XCP` (str, required) - The asset or subasset to detach + quantity: `1000` (int, required) - The quantity of the asset to detach (in satoshis, hence integer) + encoding (str, optional) - The encoding method to use @@ -9500,8 +9499,8 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", - "destination": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "destination": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9514,12 +9513,12 @@ Composes a transaction to detach assets from UTXO to an address. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964356433373639636439323231643933366335336161373665316263396162393836303735323136646239633662653339626538386262373136343533313835373a307c62637274317134796a33777463763864397035756b3632667479396a616879396666676876396137337663707c5843507c31303030", + "data": "434e54525052545964396162343733303664626437636262323563336637656239313062316363396434306131303136313630336162666365623166376339616365303336633238373a307c6263727431713639653377687668747a78797674796c766573796b777735756e3666343734737274636632337c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, "btc_change": 4950030353, "btc_fee": 46647, - "rawtransaction": "020000000001031baffe20cfe677477cd2f254724cf38a8221c579df9c82e93e242e3e4739c83f010000001600141d6078f1db25d3de6e9a6c6ff0c087bf12827043ffffffff1eb66a675220829b474137564bfd8c3b9c0e82c961b3a0f16e1d5256487eea1f000000001600141d6078f1db25d3de6e9a6c6ff0c087bf12827043ffffffff3f50429f05ce3a33125ed26cca4dc04e9805821420fcd43547e4709af22b99b1010000001600141d6078f1db25d3de6e9a6c6ff0c087bf12827043ffffffff04e80300000000000069512102cac209f2fff4fce8a9e7c5f684d331155e69da3860145a9e7c1f1d602d439f992103365bb5697c0bc542b224013e14394fecee3179a27626768a2640b73784c4ab762103de548b38be7be7d9b6ec9af079c5d11fc3aaf2d58c418584d37f7e797532f1c053aee80300000000000069512103cac209f2fff4fce8a9e192a586d233190e3cdb3f651f0edb2d4a0c212f53ca6a21037807e32f6a0b8a1bb424493d51654cecb97364f9252428917a15e832898aaa472103de548b38be7be7d9b6ec9af079c5d11fc3aaf2d58c418584d37f7e797532f1c053aee80300000000000069512103e0c209f2fff4fce8a9e2c7a1c1877750654eb37663150e974f297e551e22fe332103016dd0581e68fc23d01d3908240e7adedf071dc04f4540e843738e55e1fc93522103de548b38be7be7d9b6ec9af079c5d11fc3aaf2d58c418584d37f7e797532f1c053ae11780b27010000001600141d6078f1db25d3de6e9a6c6ff0c087bf1282704302000002000002000000000000", + "rawtransaction": "020000000001031dcc49f47a7ff47acaaeae0040a10a382e65d6cd5b0541beb7bcaae2304bf75201000000160014d8738784ceb0bcf1708fd9c365706baff86fe9daffffffff646bccb479cf590cc4e036bef000b0be84b1470859ea9fa4cbde76577125c24300000000160014d8738784ceb0bcf1708fd9c365706baff86fe9daffffffffcfcd551e911150685480191dcf49c3def503f054d25a500e3bc308f875a272d901000000160014d8738784ceb0bcf1708fd9c365706baff86fe9daffffffff04e803000000000000695121027e1bbe0dfa426953325d01c5a12edf0d531302ef1ca34003ddff639c9f1f789b2103118621f99041904226793b95dd93394685ab12314fb2f84e4eb8b39e13ade283210389838601a2094d7754eab86e828612cb164a4237ebf9a8746314acbca1bafd2f53aee803000000000000695121027e1bbe0dfa426953325a01c5a07fd80d554654b54fae131dddae248b9d0879ed21024d812bbfc855c9553f3826d7998b6400d1ee5a6c08f6ac5946edb0c815ffa694210389838601a2094d7754eab86e828612cb164a4237ebf9a8746314acbca1bafd2f53aee80300000000000069512102541bbe0dfa426953324b4cc7a528db423b6636f149a41351bfcd56ffac794fa3210374e418c8a023a12145405fa1edf20876b49d23077f81992c28dbd6fc22cbd5c7210389838601a2094d7754eab86e828612cb164a4237ebf9a8746314acbca1bafd2f53ae11780b2701000000160014d8738784ceb0bcf1708fd9c365706baff86fe9da02000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -9574,8 +9573,8 @@ Returns the valid assets "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 10000000000, @@ -9583,16 +9582,16 @@ Returns the valid assets "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729328827, - "last_issuance_block_time": 1729328835, + "first_issuance_block_time": 1729416098, + "last_issuance_block_time": 1729416107, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", - "owner": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "issuer": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "owner": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "divisible": true, "locked": false, "supply": 100000000000, @@ -9600,16 +9599,16 @@ Returns the valid assets "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1729328823, - "last_issuance_block_time": 1729328823, + "first_issuance_block_time": 1729416094, + "last_issuance_block_time": 1729416094, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 100000000000, @@ -9617,16 +9616,16 @@ Returns the valid assets "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729328773, - "last_issuance_block_time": 1729328773, + "first_issuance_block_time": 1729416044, + "last_issuance_block_time": 1729416044, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 40, @@ -9634,16 +9633,16 @@ Returns the valid assets "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729328718, - "last_issuance_block_time": 1729328722, + "first_issuance_block_time": 1729415987, + "last_issuance_block_time": 1729415991, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 19, @@ -9651,8 +9650,8 @@ Returns the valid assets "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729328702, - "last_issuance_block_time": 1729328714, + "first_issuance_block_time": 1729415969, + "last_issuance_block_time": 1729415982, "supply_normalized": "0.00000019" } ], @@ -9680,8 +9679,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 10000000000, @@ -9689,8 +9688,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1729328664, - "last_issuance_block_time": 1729328677, + "first_issuance_block_time": 1729415930, + "last_issuance_block_time": 1729415943, "supply_normalized": "100.00000000" } } @@ -9721,7 +9720,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9729,14 +9728,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9744,7 +9743,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -9762,7 +9761,7 @@ Returns the balance of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp` (str, required) - The address to return + + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -9773,7 +9772,7 @@ Returns the balance of an address and asset ``` { "result": { - "address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -9824,9 +9823,9 @@ Returns the orders of an asset "result": [ { "tx_index": 49, - "tx_hash": "417b7585cb70e5e9f3850385defa712ecae11bac8afe116a63861a98648f1b11", + "tx_hash": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8", "block_index": 184, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9841,7 +9840,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729328864, + "block_time": 1729416128, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9867,9 +9866,9 @@ Returns the orders of an asset }, { "tx_index": 51, - "tx_hash": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a", + "tx_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", "block_index": 188, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -9884,7 +9883,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729328949, + "block_time": 1729416201, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9910,9 +9909,9 @@ Returns the orders of an asset }, { "tx_index": 57, - "tx_hash": "0c2af3b2417a07ed4648e73879edfec272c01513088c21273c745f504ee68731", + "tx_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", "block_index": 192, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9927,7 +9926,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729328976, + "block_time": 1729416229, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9953,9 +9952,9 @@ Returns the orders of an asset }, { "tx_index": 59, - "tx_hash": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee", + "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", "block_index": 193, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9970,7 +9969,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729328980, + "block_time": 1729416233, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9996,9 +9995,9 @@ Returns the orders of an asset }, { "tx_index": 52, - "tx_hash": "8dc06a5357ff8379528e48e73da07324302ec9fdcfc37f03305d0f9f0cfe28d5", + "tx_hash": "34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", "block_index": 187, - "source": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -10013,7 +10012,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729328944, + "block_time": 1729416196, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10075,13 +10074,13 @@ Returns the orders of an asset { "result": [ { - "id": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a_3ac7858b4e6053388907f40c38e43800f7856d7dd4d00aa2a49e1bc8cdb2c407", + "id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", "tx0_index": 51, - "tx0_hash": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a", - "tx0_address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", + "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "tx1_index": 54, - "tx1_hash": "3ac7858b4e6053388907f40c38e43800f7856d7dd4d00aa2a49e1bc8cdb2c407", - "tx1_address": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "tx1_hash": "e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", + "tx1_address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10095,7 +10094,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729328949, + "block_time": 1729416201, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10115,13 +10114,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a_8dc06a5357ff8379528e48e73da07324302ec9fdcfc37f03305d0f9f0cfe28d5", + "id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", "tx0_index": 51, - "tx0_hash": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a", - "tx0_address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", + "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "tx1_index": 52, - "tx1_hash": "8dc06a5357ff8379528e48e73da07324302ec9fdcfc37f03305d0f9f0cfe28d5", - "tx1_address": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "tx1_hash": "34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", + "tx1_address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10135,7 +10134,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729328944, + "block_time": 1729416196, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10155,13 +10154,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "417b7585cb70e5e9f3850385defa712ecae11bac8afe116a63861a98648f1b11_45de60b281c8ad2f70758c63cf0bb0b4f5e0f5015692a304541527b7f52bc82f", + "id": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8_31f95069423c6c4ddfe0a4574c1a3369fb58dac7a6652ba054558eb83930ed0b", "tx0_index": 49, - "tx0_hash": "417b7585cb70e5e9f3850385defa712ecae11bac8afe116a63861a98648f1b11", - "tx0_address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "tx0_hash": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8", + "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "tx1_index": 50, - "tx1_hash": "45de60b281c8ad2f70758c63cf0bb0b4f5e0f5015692a304541527b7f52bc82f", - "tx1_address": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "tx1_hash": "31f95069423c6c4ddfe0a4574c1a3369fb58dac7a6652ba054558eb83930ed0b", + "tx1_address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10175,7 +10174,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729328864, + "block_time": 1729416128, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10255,20 +10254,20 @@ Returns the credits of an asset "result": [ { "block_index": 194, - "address": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "75becfa6beb8ad5af35ed1fb85254b67d1fab4fb19f4e745446677c859461e60", + "event": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729328983, + "block_time": 1729416237, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -10276,20 +10275,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "f8cb0dc42d3cfe335e564f8d99697991311e828ae2d37062a259e7463b1c263e", + "event": "a1497078258ff9f4f88b012baeee38971b3a79972c437baf8dd53c9d4571eed2", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729328677, + "block_time": 1729415943, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -10297,20 +10296,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "fdc41b9a899f33243268cc750b9ce72c9db1c75999a1e6c7619ab9e3de573a86", + "event": "6812bf6b8199c898a40d2bc0949e80556f9b275b19f73b96a09fd3f2f0c691f0", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729328673, + "block_time": 1729415939, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -10318,20 +10317,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "b68cd5ba32058d09a4cec3391df2638fef0e10eaad112adf8c5a47c96bc2251f", + "event": "be65810c28d4a6e23b5459a5aff489b71f797fee7c65043b9e917ebbc5897802", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729328673, + "block_time": 1729415939, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -10343,16 +10342,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "fdc41b9a899f33243268cc750b9ce72c9db1c75999a1e6c7619ab9e3de573a86", + "event": "6812bf6b8199c898a40d2bc0949e80556f9b275b19f73b96a09fd3f2f0c691f0", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729328673, + "block_time": 1729415939, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -10412,12 +10411,12 @@ Returns the debits of an asset "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62, - "utxo": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1:1", - "utxo_address": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "utxo": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", + "utxo_address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "confirmed": true, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -10429,16 +10428,16 @@ Returns the debits of an asset }, { "block_index": 195, - "address": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "a2796a7a01cac72fd1b2e54ffda7f4880fcc653db5d80725a8ec6499d028f44c", + "event": "849f54d8426192c0270d4d240627ba157876e3601948aed0ac24e730dcab52d7", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729328988, + "block_time": 1729416242, "asset_info": { "divisible": true, "asset_longname": null, @@ -10450,16 +10449,16 @@ Returns the debits of an asset }, { "block_index": 194, - "address": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "75becfa6beb8ad5af35ed1fb85254b67d1fab4fb19f4e745446677c859461e60", + "event": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729328983, + "block_time": 1729416237, "asset_info": { "divisible": true, "asset_longname": null, @@ -10471,16 +10470,16 @@ Returns the debits of an asset }, { "block_index": 194, - "address": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "75becfa6beb8ad5af35ed1fb85254b67d1fab4fb19f4e745446677c859461e60", + "event": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729328983, + "block_time": 1729416237, "asset_info": { "divisible": true, "asset_longname": null, @@ -10492,16 +10491,16 @@ Returns the debits of an asset }, { "block_index": 193, - "address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee", + "event": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729328980, + "block_time": 1729416233, "asset_info": { "divisible": true, "asset_longname": null, @@ -10541,20 +10540,20 @@ Returns the dividends of an asset "result": [ { "tx_index": 41, - "tx_hash": "51eed6917af775e4fdffc81b0eb1484ad7ae4677e2905bb9966e8de45f9a683d", + "tx_hash": "0c95334ce0b328f2ff4e1e44c4e96d503ba60b7b2b1fbabeabef5f3ac971b288", "block_index": 154, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729328809, + "block_time": 1729416070, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -10598,14 +10597,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "f8cb0dc42d3cfe335e564f8d99697991311e828ae2d37062a259e7463b1c263e", + "tx_hash": "a1497078258ff9f4f88b012baeee38971b3a79972c437baf8dd53c9d4571eed2", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "transfer": false, "callable": false, "call_date": 0, @@ -10620,20 +10619,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729328677, + "block_time": 1729415943, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "fdc41b9a899f33243268cc750b9ce72c9db1c75999a1e6c7619ab9e3de573a86", + "tx_hash": "6812bf6b8199c898a40d2bc0949e80556f9b275b19f73b96a09fd3f2f0c691f0", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "transfer": false, "callable": false, "call_date": 0, @@ -10648,20 +10647,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729328673, + "block_time": 1729415939, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "b68cd5ba32058d09a4cec3391df2638fef0e10eaad112adf8c5a47c96bc2251f", + "tx_hash": "be65810c28d4a6e23b5459a5aff489b71f797fee7c65043b9e917ebbc5897802", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "transfer": false, "callable": false, "call_date": 0, @@ -10676,20 +10675,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729328669, + "block_time": 1729415935, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "655c05dbe746884a61caffb235cfb4afe80cda0d2858b276eae7ca9c493dd775", + "tx_hash": "bb813d64db8f65171084ffa83e7128316586ef0283b09807d288d02a0b8e58da", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "transfer": false, "callable": false, "call_date": 0, @@ -10704,7 +10703,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729328664, + "block_time": 1729415930, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -10738,10 +10737,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 62, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "source": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1:1", - "destination": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", + "source": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", + "destination": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10749,7 +10748,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -10762,10 +10761,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 56, - "tx_hash": "0db25b816b9c26ff7c0412f71dd828e22496d1003d9ad2febad4f57e9edf125f", + "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", "block_index": 190, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "asset": "XCP", "quantity": 10, "status": "valid", @@ -10773,7 +10772,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328967, + "block_time": 1729416220, "asset_info": { "divisible": true, "asset_longname": null, @@ -10786,10 +10785,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 55, - "tx_hash": "e07e301352fc03f3fa32de1f8c0b07f8817a96104c5a64171cff40e24d3ed90e", + "tx_hash": "41940d57c4a9b1f5d0a22cb937643b5a48181fabeb27a4fe2ae5e3b102045d0f", "block_index": 189, - "source": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", - "destination": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -10797,7 +10796,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328963, + "block_time": 1729416215, "asset_info": { "divisible": true, "asset_longname": null, @@ -10810,10 +10809,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 44, - "tx_hash": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1", + "tx_hash": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2", "block_index": 157, - "source": "b1992bf29a70e44735d4fc20148205984ec04dca6cd25e12333ace059f42503f:0", - "destination": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1:1", + "source": "d972a275f808c33b0e505ad254f003f5dec349cf1d198054685011911e55cdcf:0", + "destination": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10821,7 +10820,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328823, + "block_time": 1729416094, "asset_info": { "divisible": true, "asset_longname": null, @@ -10834,10 +10833,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 43, - "tx_hash": "b1992bf29a70e44735d4fc20148205984ec04dca6cd25e12333ace059f42503f", + "tx_hash": "d972a275f808c33b0e505ad254f003f5dec349cf1d198054685011911e55cdcf", "block_index": 156, - "source": "431502146e472222b710816340a06f62edfa970858f475dc55df9a461ca3b7bf:0", - "destination": "b1992bf29a70e44735d4fc20148205984ec04dca6cd25e12333ace059f42503f:0", + "source": "cebea8c09925ead707b16a98370c550b4a41a22723ed309d31de931fe4f62b71:0", + "destination": "d972a275f808c33b0e505ad254f003f5dec349cf1d198054685011911e55cdcf:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10845,7 +10844,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328818, + "block_time": 1729416089, "asset_info": { "divisible": true, "asset_longname": null, @@ -10896,9 +10895,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542", + "tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -10907,7 +10906,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10917,7 +10916,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729328743, + "block_time": 1729416013, "asset_info": { "divisible": true, "asset_longname": null, @@ -10933,9 +10932,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "25d2b8e15aaa4279392119678e91d6d29571f9a4519b788e163fc67ba60f0b14", + "tx_hash": "7f6a4ca9e3d855d805ca980cee733de3d16f239f2c2e40241d4a607e55a74b86", "block_index": 142, - "source": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -10944,7 +10943,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "origin": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10954,7 +10953,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729328748, + "block_time": 1729416017, "asset_info": { "divisible": true, "asset_longname": null, @@ -10970,9 +10969,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "1e35417090f653a2903741ab9faa6151e1f08e891076183013511c2edfef26ca", + "tx_hash": "8463aade5566a0f1e8c8f67bc3a36514814d844fa9a8925b244600e282392b52", "block_index": 150, - "source": "n4ZsbPM25kFYFpE2f9V3tLtN4rhmQvv1nR", + "source": "mxn9viJTMZ952ierCiR5GaQwzaXBTAAdFh", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -10980,10 +10979,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "796e5219a61e4ee75e71544091ab14ee804ba21345fcb3d80923ab01f9d657f9", - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "last_status_tx_hash": "3418f6969c77f8bec6ebfbddccf5f09827ad4f0155e0eda4417c4647d168a18f", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 0, - "last_status_tx_source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "last_status_tx_source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -10991,7 +10990,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729328792, + "block_time": 1729416053, "asset_info": { "divisible": true, "asset_longname": null, @@ -11007,18 +11006,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b", + "tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", "block_index": 196, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "oracle_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "last_status_tx_hash": null, - "origin": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "origin": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11028,7 +11027,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -11053,7 +11052,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp` (str, required) - The address to return + + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (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` @@ -11066,9 +11065,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542", + "tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11077,7 +11076,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11087,7 +11086,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729328743, + "block_time": 1729416013, "asset_info": { "divisible": true, "asset_longname": null, @@ -11137,7 +11136,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -11145,7 +11144,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -11154,7 +11153,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -11162,7 +11161,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -11171,7 +11170,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -11179,7 +11178,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -11188,7 +11187,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -11225,27 +11224,27 @@ Returns the dispenses of an asset { "tx_index": 62, "dispense_index": 0, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", - "destination": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "destination": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b", + "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "oracle_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "last_status_tx_hash": null, - "origin": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "origin": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11260,7 +11259,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -11274,27 +11273,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "1fea7e4856521d6ef1a0b361c9820e9c3b8cfd4b563741479b822052676ab61e", + "tx_hash": "43c225715776decba49fea590847b184beb000f0be36e0c40c59cf79b4cc6b64", "block_index": 147, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", - "destination": "bcrt1qu2jyjw0ac8f5tpuf9frh35m7saw6rmplryv7aa", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "destination": "bcrt1qpm0krm9adpcqdeu2tmuzwdl325fr9768g564cg", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b", + "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "oracle_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "last_status_tx_hash": null, - "origin": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "origin": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11309,7 +11308,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729328769, + "block_time": 1729416039, "asset_info": { "divisible": true, "asset_longname": null, @@ -11323,19 +11322,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "a9a3578379153ca360a66660c00a998da120a92a2b8be15ae1b7ae80d2787a93", + "tx_hash": "77f26b77b205be83c57e46f437168ffa54afdd0f8fe2855da90317153ec41ae4", "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542", + "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11343,7 +11342,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11358,7 +11357,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729328743, + "block_time": 1729416013, "asset_info": { "divisible": true, "asset_longname": null, @@ -11372,19 +11371,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2596a5f3d099d83b293e6ab485266586439d3362b1dd46f02ea075eb38431b53", + "tx_hash": "ea65dde6c36bf0ee93197974ace92a2b2a68a0821b6f382104f98419c6ffe544", "block_index": 140, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542", + "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11392,7 +11391,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11407,7 +11406,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729328739, + "block_time": 1729416009, "asset_info": { "divisible": true, "asset_longname": null, @@ -11450,8 +11449,8 @@ Returns asset subassets "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 0, @@ -11459,8 +11458,8 @@ Returns asset subassets "first_issuance_block_index": 159, "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1729328831, - "last_issuance_block_time": 1729328831, + "first_issuance_block_time": 1729416103, + "last_issuance_block_time": 1729416103, "supply_normalized": "0.00000000" } ], @@ -11492,10 +11491,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "655c05dbe746884a61caffb235cfb4afe80cda0d2858b276eae7ca9c493dd775", + "tx_hash": "bb813d64db8f65171084ffa83e7128316586ef0283b09807d288d02a0b8e58da", "tx_index": 10, "block_index": 125, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -11520,7 +11519,7 @@ Returns the fairminter by its asset "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729328677 + "block_time": 1729415943 } ], "next_cursor": null, @@ -11551,64 +11550,64 @@ Returns the mints by asset { "result": [ { - "tx_hash": "f8cb0dc42d3cfe335e564f8d99697991311e828ae2d37062a259e7463b1c263e", + "tx_hash": "a1497078258ff9f4f88b012baeee38971b3a79972c437baf8dd53c9d4571eed2", "tx_index": 13, "block_index": 125, - "source": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", - "fairminter_tx_hash": "655c05dbe746884a61caffb235cfb4afe80cda0d2858b276eae7ca9c493dd775", + "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "fairminter_tx_hash": "bb813d64db8f65171084ffa83e7128316586ef0283b09807d288d02a0b8e58da", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729328677, + "block_time": 1729415943, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false } }, { - "tx_hash": "fdc41b9a899f33243268cc750b9ce72c9db1c75999a1e6c7619ab9e3de573a86", + "tx_hash": "6812bf6b8199c898a40d2bc0949e80556f9b275b19f73b96a09fd3f2f0c691f0", "tx_index": 12, "block_index": 124, - "source": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", - "fairminter_tx_hash": "655c05dbe746884a61caffb235cfb4afe80cda0d2858b276eae7ca9c493dd775", + "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "fairminter_tx_hash": "bb813d64db8f65171084ffa83e7128316586ef0283b09807d288d02a0b8e58da", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729328673, + "block_time": 1729415939, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false } }, { - "tx_hash": "b68cd5ba32058d09a4cec3391df2638fef0e10eaad112adf8c5a47c96bc2251f", + "tx_hash": "be65810c28d4a6e23b5459a5aff489b71f797fee7c65043b9e917ebbc5897802", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", - "fairminter_tx_hash": "655c05dbe746884a61caffb235cfb4afe80cda0d2858b276eae7ca9c493dd775", + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "fairminter_tx_hash": "bb813d64db8f65171084ffa83e7128316586ef0283b09807d288d02a0b8e58da", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729328669, + "block_time": 1729415935, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false } @@ -11624,7 +11623,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg` (str, required) - The address of the mints to return + + address: `bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22` (str, required) - The address of the mints to return + asset: `FAIRMINTA` (str, required) - The asset of the mints to return + cursor (str, optional) - + Default: `None` @@ -11643,22 +11642,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "b68cd5ba32058d09a4cec3391df2638fef0e10eaad112adf8c5a47c96bc2251f", + "tx_hash": "be65810c28d4a6e23b5459a5aff489b71f797fee7c65043b9e917ebbc5897802", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", - "fairminter_tx_hash": "655c05dbe746884a61caffb235cfb4afe80cda0d2858b276eae7ca9c493dd775", + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "fairminter_tx_hash": "bb813d64db8f65171084ffa83e7128316586ef0283b09807d288d02a0b8e58da", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729328669, + "block_time": 1729415935, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false } @@ -11704,9 +11703,9 @@ Returns all the orders "result": [ { "tx_index": 49, - "tx_hash": "417b7585cb70e5e9f3850385defa712ecae11bac8afe116a63861a98648f1b11", + "tx_hash": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8", "block_index": 184, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11721,7 +11720,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729328864, + "block_time": 1729416128, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11747,9 +11746,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "8dc06a5357ff8379528e48e73da07324302ec9fdcfc37f03305d0f9f0cfe28d5", + "tx_hash": "34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", "block_index": 187, - "source": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -11764,7 +11763,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729328944, + "block_time": 1729416196, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11790,9 +11789,9 @@ Returns all the orders }, { "tx_index": 51, - "tx_hash": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a", + "tx_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", "block_index": 188, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -11807,7 +11806,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729328949, + "block_time": 1729416201, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11833,9 +11832,9 @@ Returns all the orders }, { "tx_index": 54, - "tx_hash": "3ac7858b4e6053388907f40c38e43800f7856d7dd4d00aa2a49e1bc8cdb2c407", + "tx_hash": "e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", "block_index": 188, - "source": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -11850,7 +11849,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729328949, + "block_time": 1729416201, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11876,9 +11875,9 @@ Returns all the orders }, { "tx_index": 57, - "tx_hash": "0c2af3b2417a07ed4648e73879edfec272c01513088c21273c745f504ee68731", + "tx_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", "block_index": 192, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11893,7 +11892,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729328976, + "block_time": 1729416229, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11928,7 +11927,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee` (str, required) - The hash of the transaction that created the order + + order_hash: `6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687` (str, required) - The hash of the transaction that created the order + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -11940,9 +11939,9 @@ Returns the information of an order { "result": { "tx_index": 59, - "tx_hash": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee", + "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", "block_index": 193, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11957,7 +11956,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729328980, + "block_time": 1729416233, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11989,7 +11988,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a` (str, required) - The hash of the transaction that created the order + + order_hash: `0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39` (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 @@ -12016,13 +12015,13 @@ Returns the order matches of an order { "result": [ { - "id": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a_3ac7858b4e6053388907f40c38e43800f7856d7dd4d00aa2a49e1bc8cdb2c407", + "id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", "tx0_index": 51, - "tx0_hash": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a", - "tx0_address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", + "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "tx1_index": 54, - "tx1_hash": "3ac7858b4e6053388907f40c38e43800f7856d7dd4d00aa2a49e1bc8cdb2c407", - "tx1_address": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "tx1_hash": "e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", + "tx1_address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12036,7 +12035,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729328949, + "block_time": 1729416201, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12056,13 +12055,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a_8dc06a5357ff8379528e48e73da07324302ec9fdcfc37f03305d0f9f0cfe28d5", + "id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", "tx0_index": 51, - "tx0_hash": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a", - "tx0_address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", + "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "tx1_index": 52, - "tx1_hash": "8dc06a5357ff8379528e48e73da07324302ec9fdcfc37f03305d0f9f0cfe28d5", - "tx1_address": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "tx1_hash": "34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", + "tx1_address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12076,7 +12075,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729328944, + "block_time": 1729416196, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12106,7 +12105,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a` (str, required) - The hash of the transaction that created the order + + order_hash: `0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39` (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 @@ -12125,15 +12124,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 53, - "tx_hash": "f0f47bb2d44ffbcf2807d16bbeb95fd0d7ccba0a4666bb553e30490b0fb1ef31", + "tx_hash": "e6ca911a0b08aa83675667b9ca8e02c32aeb2da53061aba62dde2da5b66b8fe8", "block_index": 187, - "source": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", - "destination": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "destination": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "btc_amount": 2000, - "order_match_id": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a_8dc06a5357ff8379528e48e73da07324302ec9fdcfc37f03305d0f9f0cfe28d5", + "order_match_id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", "status": "valid", "confirmed": true, - "block_time": 1729328944, + "block_time": 1729416196, "btc_amount_normalized": "0.00002000" } ], @@ -12177,9 +12176,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 52, - "tx_hash": "8dc06a5357ff8379528e48e73da07324302ec9fdcfc37f03305d0f9f0cfe28d5", + "tx_hash": "34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", "block_index": 187, - "source": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12197,7 +12196,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729328944, + "block_time": 1729416196, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12223,9 +12222,9 @@ Returns the orders to exchange two assets }, { "tx_index": 54, - "tx_hash": "3ac7858b4e6053388907f40c38e43800f7856d7dd4d00aa2a49e1bc8cdb2c407", + "tx_hash": "e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", "block_index": 188, - "source": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -12243,7 +12242,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729328949, + "block_time": 1729416201, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12269,9 +12268,9 @@ Returns the orders to exchange two assets }, { "tx_index": 49, - "tx_hash": "417b7585cb70e5e9f3850385defa712ecae11bac8afe116a63861a98648f1b11", + "tx_hash": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8", "block_index": 184, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12289,7 +12288,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729328864, + "block_time": 1729416128, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12315,9 +12314,9 @@ Returns the orders to exchange two assets }, { "tx_index": 51, - "tx_hash": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a", + "tx_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", "block_index": 188, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12335,7 +12334,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729328949, + "block_time": 1729416201, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12361,9 +12360,9 @@ Returns the orders to exchange two assets }, { "tx_index": 57, - "tx_hash": "0c2af3b2417a07ed4648e73879edfec272c01513088c21273c745f504ee68731", + "tx_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", "block_index": 192, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12381,7 +12380,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729328976, + "block_time": 1729416229, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12444,13 +12443,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a_3ac7858b4e6053388907f40c38e43800f7856d7dd4d00aa2a49e1bc8cdb2c407", + "id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", "tx0_index": 51, - "tx0_hash": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a", - "tx0_address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", + "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "tx1_index": 54, - "tx1_hash": "3ac7858b4e6053388907f40c38e43800f7856d7dd4d00aa2a49e1bc8cdb2c407", - "tx1_address": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "tx1_hash": "e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", + "tx1_address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12467,7 +12466,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729328949, + "block_time": 1729416201, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12487,13 +12486,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a_8dc06a5357ff8379528e48e73da07324302ec9fdcfc37f03305d0f9f0cfe28d5", + "id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", "tx0_index": 51, - "tx0_hash": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a", - "tx0_address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", + "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "tx1_index": 52, - "tx1_hash": "8dc06a5357ff8379528e48e73da07324302ec9fdcfc37f03305d0f9f0cfe28d5", - "tx1_address": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "tx1_hash": "34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", + "tx1_address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12510,7 +12509,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729328944, + "block_time": 1729416196, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12530,13 +12529,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "417b7585cb70e5e9f3850385defa712ecae11bac8afe116a63861a98648f1b11_45de60b281c8ad2f70758c63cf0bb0b4f5e0f5015692a304541527b7f52bc82f", + "id": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8_31f95069423c6c4ddfe0a4574c1a3369fb58dac7a6652ba054558eb83930ed0b", "tx0_index": 49, - "tx0_hash": "417b7585cb70e5e9f3850385defa712ecae11bac8afe116a63861a98648f1b11", - "tx0_address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "tx0_hash": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8", + "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "tx1_index": 50, - "tx1_hash": "45de60b281c8ad2f70758c63cf0bb0b4f5e0f5015692a304541527b7f52bc82f", - "tx1_address": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "tx1_hash": "31f95069423c6c4ddfe0a4574c1a3369fb58dac7a6652ba054558eb83930ed0b", + "tx1_address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12553,7 +12552,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729328864, + "block_time": 1729416128, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12611,13 +12610,13 @@ Returns all the order matches { "result": [ { - "id": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a_3ac7858b4e6053388907f40c38e43800f7856d7dd4d00aa2a49e1bc8cdb2c407", + "id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", "tx0_index": 51, - "tx0_hash": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a", - "tx0_address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", + "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "tx1_index": 54, - "tx1_hash": "3ac7858b4e6053388907f40c38e43800f7856d7dd4d00aa2a49e1bc8cdb2c407", - "tx1_address": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "tx1_hash": "e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", + "tx1_address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12631,7 +12630,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729328949, + "block_time": 1729416201, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12651,13 +12650,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a_8dc06a5357ff8379528e48e73da07324302ec9fdcfc37f03305d0f9f0cfe28d5", + "id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", "tx0_index": 51, - "tx0_hash": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a", - "tx0_address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", + "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "tx1_index": 52, - "tx1_hash": "8dc06a5357ff8379528e48e73da07324302ec9fdcfc37f03305d0f9f0cfe28d5", - "tx1_address": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "tx1_hash": "34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", + "tx1_address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12671,7 +12670,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729328944, + "block_time": 1729416196, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12691,13 +12690,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "417b7585cb70e5e9f3850385defa712ecae11bac8afe116a63861a98648f1b11_45de60b281c8ad2f70758c63cf0bb0b4f5e0f5015692a304541527b7f52bc82f", + "id": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8_31f95069423c6c4ddfe0a4574c1a3369fb58dac7a6652ba054558eb83930ed0b", "tx0_index": 49, - "tx0_hash": "417b7585cb70e5e9f3850385defa712ecae11bac8afe116a63861a98648f1b11", - "tx0_address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "tx0_hash": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8", + "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "tx1_index": 50, - "tx1_hash": "45de60b281c8ad2f70758c63cf0bb0b4f5e0f5015692a304541527b7f52bc82f", - "tx1_address": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "tx1_hash": "31f95069423c6c4ddfe0a4574c1a3369fb58dac7a6652ba054558eb83930ed0b", + "tx1_address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12711,7 +12710,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729328864, + "block_time": 1729416128, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12879,66 +12878,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "8f228d4a4b728a07b0a601ef5af6cb6676382b151868640417028e76c715139d", + "tx_hash": "3c708852d4951ec7994feec5ab282528777c9dbf169290986261472cf1fb27fa", "block_index": 121, - "source": "bcrt1qz2w3wldndc072gvryyfcpvdy7a26k66sdr05zz", + "source": "bcrt1qwhyc990hruyqf3e7r3ee9xx3g558uugekpa3kw", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1729328659, + "block_time": 1729415925, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "25ce613c98cdad306e433862634f7b2804f91044d92de031c61538c2ffcd8c99", + "tx_hash": "9b0a770f7159fc7dd964563092a25836bcf871dd9133d1c83559069b2ac65b52", "block_index": 120, - "source": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "source": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1729328655, + "block_time": 1729415921, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "3b8214a648c3c93e4850143fb8369cc92b345e069fe89a09de868baf538390f0", + "tx_hash": "5b40993b2bcb6a081fa6fd35f641469b274a7e873d881ccd8ee10fa6f7a19caf", "block_index": 119, - "source": "bcrt1qudangnqpexn0yrqnnyjlm0waham8cyn9lw5pys", + "source": "bcrt1qsadvwd5q5legncwy7gd0e8nzcar0xtmpjd6smx", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1729328651, + "block_time": 1729415916, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "730c3780736e29b3329fde399b221493582d13e848250c8f866630e6dbd6537e", + "tx_hash": "1e5e7ad77496deeac81c1ff22674d9a02d8723b7ebb91ce1a0e4c866a85fcfbd", "block_index": 118, - "source": "bcrt1qu2jyjw0ac8f5tpuf9frh35m7saw6rmplryv7aa", + "source": "bcrt1qpm0krm9adpcqdeu2tmuzwdl325fr9768g564cg", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1729328647, + "block_time": 1729415912, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "17960e12e33ae36f5f844948ca043a7d183157940fa7b3bd8ee49513017f443a", + "tx_hash": "ec570fcd1f8c5b9495121143779d9c60083708d5ab38cd85ce3c06da15639e9b", "block_index": 117, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1729328643, + "block_time": 1729415908, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -12983,9 +12982,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542", + "tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12994,7 +12993,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13004,7 +13003,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729328743, + "block_time": 1729416013, "asset_info": { "divisible": true, "asset_longname": null, @@ -13020,9 +13019,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "25d2b8e15aaa4279392119678e91d6d29571f9a4519b788e163fc67ba60f0b14", + "tx_hash": "7f6a4ca9e3d855d805ca980cee733de3d16f239f2c2e40241d4a607e55a74b86", "block_index": 142, - "source": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13031,7 +13030,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "origin": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13041,7 +13040,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729328748, + "block_time": 1729416017, "asset_info": { "divisible": true, "asset_longname": null, @@ -13057,9 +13056,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "1e35417090f653a2903741ab9faa6151e1f08e891076183013511c2edfef26ca", + "tx_hash": "8463aade5566a0f1e8c8f67bc3a36514814d844fa9a8925b244600e282392b52", "block_index": 150, - "source": "n4ZsbPM25kFYFpE2f9V3tLtN4rhmQvv1nR", + "source": "mxn9viJTMZ952ierCiR5GaQwzaXBTAAdFh", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -13067,10 +13066,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "796e5219a61e4ee75e71544091ab14ee804ba21345fcb3d80923ab01f9d657f9", - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "last_status_tx_hash": "3418f6969c77f8bec6ebfbddccf5f09827ad4f0155e0eda4417c4647d168a18f", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 0, - "last_status_tx_source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "last_status_tx_source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -13078,7 +13077,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729328792, + "block_time": 1729416053, "asset_info": { "divisible": true, "asset_longname": null, @@ -13094,18 +13093,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b", + "tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", "block_index": 196, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "oracle_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "last_status_tx_hash": null, - "origin": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "origin": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13115,7 +13114,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -13140,7 +13139,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542` (str, required) - The hash of the dispenser to return + + dispenser_hash: `361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630` (str, required) - The hash of the dispenser to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -13152,9 +13151,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542", + "tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13163,7 +13162,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13173,7 +13172,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729328743, + "block_time": 1729416013, "asset_info": { "divisible": true, "asset_longname": null, @@ -13195,7 +13194,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542` (str, required) - The hash of the dispenser to return + + dispenser_hash: `361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630` (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 @@ -13215,19 +13214,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "a9a3578379153ca360a66660c00a998da120a92a2b8be15ae1b7ae80d2787a93", + "tx_hash": "77f26b77b205be83c57e46f437168ffa54afdd0f8fe2855da90317153ec41ae4", "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542", + "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13235,7 +13234,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13250,7 +13249,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729328743, + "block_time": 1729416013, "asset_info": { "divisible": true, "asset_longname": null, @@ -13264,19 +13263,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2596a5f3d099d83b293e6ab485266586439d3362b1dd46f02ea075eb38431b53", + "tx_hash": "ea65dde6c36bf0ee93197974ace92a2b2a68a0821b6f382104f98419c6ffe544", "block_index": 140, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542", + "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13284,7 +13283,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13299,7 +13298,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729328739, + "block_time": 1729416009, "asset_info": { "divisible": true, "asset_longname": null, @@ -13341,20 +13340,20 @@ Returns all the dividends "result": [ { "tx_index": 41, - "tx_hash": "51eed6917af775e4fdffc81b0eb1484ad7ae4677e2905bb9966e8de45f9a683d", + "tx_hash": "0c95334ce0b328f2ff4e1e44c4e96d503ba60b7b2b1fbabeabef5f3ac971b288", "block_index": 154, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729328809, + "block_time": 1729416070, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -13379,7 +13378,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `51eed6917af775e4fdffc81b0eb1484ad7ae4677e2905bb9966e8de45f9a683d` (str, required) - The hash of the dividend to return + + dividend_hash: `0c95334ce0b328f2ff4e1e44c4e96d503ba60b7b2b1fbabeabef5f3ac971b288` (str, required) - The hash of the dividend to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -13391,20 +13390,20 @@ Returns a dividend by its hash { "result": { "tx_index": 41, - "tx_hash": "51eed6917af775e4fdffc81b0eb1484ad7ae4677e2905bb9966e8de45f9a683d", + "tx_hash": "0c95334ce0b328f2ff4e1e44c4e96d503ba60b7b2b1fbabeabef5f3ac971b288", "block_index": 154, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729328809, + "block_time": 1729416070, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -13426,7 +13425,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `51eed6917af775e4fdffc81b0eb1484ad7ae4677e2905bb9966e8de45f9a683d` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `0c95334ce0b328f2ff4e1e44c4e96d503ba60b7b2b1fbabeabef5f3ac971b288` (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 @@ -13449,12 +13448,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "51eed6917af775e4fdffc81b0eb1484ad7ae4677e2905bb9966e8de45f9a683d", + "event": "0c95334ce0b328f2ff4e1e44c4e96d503ba60b7b2b1fbabeabef5f3ac971b288", "tx_index": 41, - "utxo": "431502146e472222b710816340a06f62edfa970858f475dc55df9a461ca3b7bf:0", - "utxo_address": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "utxo": "cebea8c09925ead707b16a98370c550b4a41a22723ed309d31de931fe4f62b71:0", + "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "confirmed": true, - "block_time": 1729328809, + "block_time": 1729416070, "asset_info": { "divisible": true, "asset_longname": null, @@ -13466,16 +13465,16 @@ Returns a dividend distribution by its hash }, { "block_index": 154, - "address": "bcrt1qg0yp2a86t6cxyuw2efl4ceq3tjecjled3vscyk", + "address": "bcrt1qkgcujj6uea6hshreznk6fw8e22utgsdyqd02hg", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "51eed6917af775e4fdffc81b0eb1484ad7ae4677e2905bb9966e8de45f9a683d", + "event": "0c95334ce0b328f2ff4e1e44c4e96d503ba60b7b2b1fbabeabef5f3ac971b288", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729328809, + "block_time": 1729416070, "asset_info": { "divisible": true, "asset_longname": null, @@ -13521,27 +13520,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "4b0e19998a70ce7a0bf7b637c8174fbba5baf085312ac2097891dcb834d889b7", - "messages_hash": "a3ca428483eaef8fb902f7d899a2fdd680f956bb01f834d0be6d2348137b737e", + "ledger_hash": "f94b9a0cde6ac7ff4c57657df4d33d9a8f1dae9ef5de975f5df1dcc5cc851ece", + "messages_hash": "90707f8a533719986dc3f0949bda3f2eb1e3b12b4d1113e9caccbd9b4d5efb63", "transaction_count": 1, - "txlist_hash": "fc196af6b16a0cd8b7630d9935290587a5303e9610b40774b561bb6efd0d5833", - "block_time": 1729328997 + "txlist_hash": "41aa08840203abe0c1883ea81febef8fdb9238af22a71a5495b39bfc7c1db71b", + "block_time": 1729416251 }, "tx_hash": null, "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 }, { "event_index": 562, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62 }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 }, { "event_index": 561, @@ -13550,14 +13549,14 @@ Returns all events "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "destination": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b", - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -13568,9 +13567,9 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 }, { "event_index": 560, @@ -13579,9 +13578,9 @@ Returns all events "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "status": 0, - "tx_hash": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b", + "tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", "asset_info": { "divisible": true, "asset_longname": null, @@ -13591,24 +13590,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -13618,9 +13617,9 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 } ], "next_cursor": 558, @@ -13648,15 +13647,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "4b0e19998a70ce7a0bf7b637c8174fbba5baf085312ac2097891dcb834d889b7", - "messages_hash": "a3ca428483eaef8fb902f7d899a2fdd680f956bb01f834d0be6d2348137b737e", + "ledger_hash": "f94b9a0cde6ac7ff4c57657df4d33d9a8f1dae9ef5de975f5df1dcc5cc851ece", + "messages_hash": "90707f8a533719986dc3f0949bda3f2eb1e3b12b4d1113e9caccbd9b4d5efb63", "transaction_count": 1, - "txlist_hash": "fc196af6b16a0cd8b7630d9935290587a5303e9610b40774b561bb6efd0d5833", - "block_time": 1729328997 + "txlist_hash": "41aa08840203abe0c1883ea81febef8fdb9238af22a71a5495b39bfc7c1db71b", + "block_time": 1729416251 }, "tx_hash": null, "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 } } ``` @@ -13734,16 +13733,16 @@ Returns the events filtered by event name "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -13753,9 +13752,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 }, { "event_index": 557, @@ -13765,12 +13764,12 @@ Returns the events filtered by event name "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "quantity": 1500000000, "tx_index": 62, - "utxo": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", - "utxo_address": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", - "block_time": 1729328997, + "utxo": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -13780,9 +13779,9 @@ Returns the events filtered by event name }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 }, { "event_index": 554, @@ -13792,39 +13791,39 @@ Returns the events filtered by event name "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "quantity": 1500000000, "tx_index": 62, - "utxo": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", - "utxo_address": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", - "block_time": 1729328997, + "utxo": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "block_time": 1729416251, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 }, { "event_index": 540, "event": "CREDIT", "params": { - "address": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "asset": "XCP", "block_index": 194, "calling_function": "sweep", - "event": "75becfa6beb8ad5af35ed1fb85254b67d1fab4fb19f4e745446677c859461e60", + "event": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", "quantity": 74499387833, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1729328983, + "block_time": 1729416237, "asset_info": { "divisible": true, "asset_longname": null, @@ -13834,36 +13833,36 @@ Returns the events filtered by event name }, "quantity_normalized": "744.99388000" }, - "tx_hash": "75becfa6beb8ad5af35ed1fb85254b67d1fab4fb19f4e745446677c859461e60", + "tx_hash": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", "block_index": 194, - "block_time": 1729328983 + "block_time": 1729416237 }, { "event_index": 538, "event": "CREDIT", "params": { - "address": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "asset": "MYASSETA", "block_index": 194, "calling_function": "sweep", - "event": "75becfa6beb8ad5af35ed1fb85254b67d1fab4fb19f4e745446677c859461e60", + "event": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", "quantity": 10, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1729328983, + "block_time": 1729416237, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "75becfa6beb8ad5af35ed1fb85254b67d1fab4fb19f4e745446677c859461e60", + "tx_hash": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", "block_index": 194, - "block_time": 1729328983 + "block_time": 1729416237 } ], "next_cursor": 536, @@ -13919,27 +13918,27 @@ Returns all the dispenses { "tx_index": 62, "dispense_index": 0, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", - "destination": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "destination": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b", + "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "oracle_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "last_status_tx_hash": null, - "origin": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "origin": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13954,7 +13953,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -13968,27 +13967,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "1fea7e4856521d6ef1a0b361c9820e9c3b8cfd4b563741479b822052676ab61e", + "tx_hash": "43c225715776decba49fea590847b184beb000f0be36e0c40c59cf79b4cc6b64", "block_index": 147, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", - "destination": "bcrt1qu2jyjw0ac8f5tpuf9frh35m7saw6rmplryv7aa", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "destination": "bcrt1qpm0krm9adpcqdeu2tmuzwdl325fr9768g564cg", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b", + "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "oracle_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "last_status_tx_hash": null, - "origin": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "origin": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14003,7 +14002,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729328769, + "block_time": 1729416039, "asset_info": { "divisible": true, "asset_longname": null, @@ -14017,19 +14016,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "a9a3578379153ca360a66660c00a998da120a92a2b8be15ae1b7ae80d2787a93", + "tx_hash": "77f26b77b205be83c57e46f437168ffa54afdd0f8fe2855da90317153ec41ae4", "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542", + "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14037,7 +14036,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14052,7 +14051,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729328743, + "block_time": 1729416013, "asset_info": { "divisible": true, "asset_longname": null, @@ -14066,19 +14065,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2596a5f3d099d83b293e6ab485266586439d3362b1dd46f02ea075eb38431b53", + "tx_hash": "ea65dde6c36bf0ee93197974ace92a2b2a68a0821b6f382104f98419c6ffe544", "block_index": 140, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542", + "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14086,7 +14085,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14101,7 +14100,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729328739, + "block_time": 1729416009, "asset_info": { "divisible": true, "asset_longname": null, @@ -14143,10 +14142,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 62, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "source": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1:1", - "destination": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", + "source": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", + "destination": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -14154,7 +14153,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -14167,10 +14166,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 62, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "source": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1:1", - "destination": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", + "source": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", + "destination": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -14178,11 +14177,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -14191,10 +14190,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 56, - "tx_hash": "0db25b816b9c26ff7c0412f71dd828e22496d1003d9ad2febad4f57e9edf125f", + "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", "block_index": 190, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "asset": "XCP", "quantity": 10, "status": "valid", @@ -14202,7 +14201,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328967, + "block_time": 1729416220, "asset_info": { "divisible": true, "asset_longname": null, @@ -14215,10 +14214,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 56, - "tx_hash": "0db25b816b9c26ff7c0412f71dd828e22496d1003d9ad2febad4f57e9edf125f", + "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", "block_index": 190, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -14226,11 +14225,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328967, + "block_time": 1729416220, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -14239,10 +14238,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 56, - "tx_hash": "0db25b816b9c26ff7c0412f71dd828e22496d1003d9ad2febad4f57e9edf125f", + "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", "block_index": 190, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -14250,11 +14249,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328967, + "block_time": 1729416220, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -14292,14 +14291,14 @@ Returns all the issuances "result": [ { "tx_index": 48, - "tx_hash": "ad7cd24a91d670e0fb520c404cfc2fa0df0ee9a9f8bf4092b67790f6ca07c072", + "tx_hash": "bb2aa89179834fafe03acecbbade4d6fd928251f2923a59b4656957ab3685976", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "transfer": false, "callable": false, "call_date": 0, @@ -14314,20 +14313,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729328839, + "block_time": 1729416112, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "1cfc0723b6657889bf8b79917a060d28f6d6580512ca510c795b1b8d119fbf8b", + "tx_hash": "55efb0e7632d7d4e2918c6d68f1a68cf6ebb205b5bf25194db11afe19f288dc0", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "transfer": false, "callable": false, "call_date": 0, @@ -14342,20 +14341,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729328835, + "block_time": 1729416107, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "4fb72a16283af8eaa3aef5a92ab6501220aa8af621848fcd8fa6db58b588c38b", + "tx_hash": "915196486b240c228f8f48b8bc894be2372a5f29da06926a1aad6050d298f626", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "transfer": false, "callable": false, "call_date": 0, @@ -14370,20 +14369,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729328831, + "block_time": 1729416103, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "71865058eba11d6649831cdf7a6928844665cb4b60156d41fd86f75bf504d846", + "tx_hash": "d875bf5554d034912c2a9eb7d151d9f055e3135142c077fa342ce253d4b54d3e", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "transfer": false, "callable": false, "call_date": 0, @@ -14398,20 +14397,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729328827, + "block_time": 1729416098, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 44, - "tx_hash": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1", + "tx_hash": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2", "msg_index": 0, "block_index": 157, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", - "issuer": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "source": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "issuer": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "transfer": false, "callable": false, "call_date": 0, @@ -14426,7 +14425,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729328823, + "block_time": 1729416094, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -14441,7 +14440,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `ad7cd24a91d670e0fb520c404cfc2fa0df0ee9a9f8bf4092b67790f6ca07c072` (str, required) - The hash of the transaction to return + + tx_hash: `bb2aa89179834fafe03acecbbade4d6fd928251f2923a59b4656957ab3685976` (str, required) - The hash of the transaction to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -14453,14 +14452,14 @@ Returns the issuances of a block { "result": { "tx_index": 48, - "tx_hash": "ad7cd24a91d670e0fb520c404cfc2fa0df0ee9a9f8bf4092b67790f6ca07c072", + "tx_hash": "bb2aa89179834fafe03acecbbade4d6fd928251f2923a59b4656957ab3685976", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "transfer": false, "callable": false, "call_date": 0, @@ -14475,7 +14474,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729328839, + "block_time": 1729416112, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -14507,16 +14506,16 @@ Returns all sweeps "result": [ { "tx_index": 60, - "tx_hash": "75becfa6beb8ad5af35ed1fb85254b67d1fab4fb19f4e745446677c859461e60", + "tx_hash": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", "block_index": 194, - "source": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", - "destination": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729328983, + "block_time": 1729416237, "fee_paid_normalized": "0.00600000" } ], @@ -14530,7 +14529,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `75becfa6beb8ad5af35ed1fb85254b67d1fab4fb19f4e745446677c859461e60` (str, required) - The hash of the transaction to return + + tx_hash: `68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024` (str, required) - The hash of the transaction to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -14543,16 +14542,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 60, - "tx_hash": "75becfa6beb8ad5af35ed1fb85254b67d1fab4fb19f4e745446677c859461e60", + "tx_hash": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", "block_index": 194, - "source": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", - "destination": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729328983, + "block_time": 1729416237, "fee_paid_normalized": "0.00600000" } ], @@ -14586,9 +14585,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "c6c3f4f28cd8a39b7cdeec66e5741c0733c6e50a40d6c9104d561d7dc89fd0f3", + "tx_hash": "1945e07d63301090025795858c49fef361dfc2d9851d9e074cc4215d9d91255f", "block_index": 138, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14596,14 +14595,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729328730, + "block_time": 1729416000, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "d643f35218e54f20347aca5fafebc46a8b2689364473bfb9cef174c653027a36", + "tx_hash": "674a65a64a4826a0b0d490aca3e07b7fd65869b1649206fa97265a826ed95b11", "block_index": 137, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -14611,7 +14610,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729328726, + "block_time": 1729415995, "fee_fraction_int_normalized": "0.00000000" } ], @@ -14625,7 +14624,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `c6c3f4f28cd8a39b7cdeec66e5741c0733c6e50a40d6c9104d561d7dc89fd0f3` (str, required) - The hash of the transaction to return + + tx_hash: `1945e07d63301090025795858c49fef361dfc2d9851d9e074cc4215d9d91255f` (str, required) - The hash of the transaction to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -14637,9 +14636,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "c6c3f4f28cd8a39b7cdeec66e5741c0733c6e50a40d6c9104d561d7dc89fd0f3", + "tx_hash": "1945e07d63301090025795858c49fef361dfc2d9851d9e074cc4215d9d91255f", "block_index": 138, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14647,7 +14646,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729328730, + "block_time": 1729416000, "fee_fraction_int_normalized": "0.00000000" } } @@ -14677,10 +14676,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "f3cd8ee918135e3b1b1660a69a127e57520bdc3a177d301e4f4786d619538ba5", + "tx_hash": "68455c81e91976b50973996dd5e3b1bafeb9009b2ca1a238e4a1897afbef2d46", "tx_index": 42, "block_index": 155, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -14705,13 +14704,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729328813 + "block_time": 1729416085 }, { - "tx_hash": "c34eba9dc88240af07608224d29e4ac423e6b2a0fb83407b5a51c795fdef2d81", + "tx_hash": "251c310af851cba2ce4a58932e7cb803aeb6a9f7a55bac9bbf688ba85a48ef28", "tx_index": 22, "block_index": 135, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -14736,13 +14735,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729328718 + "block_time": 1729415987 }, { - "tx_hash": "6b9abfb51341a47410e2295ff273b93864f6753a41c256e3f388ab91bc778c6b", + "tx_hash": "dbd38cf37e8f0c24ae54d5b6169437c48f55fb84fc0583aa0d79858c0f9a69fc", "tx_index": 18, "block_index": 131, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -14767,13 +14766,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729328702 + "block_time": 1729415969 }, { - "tx_hash": "c625b42b58b9d8785ff1002e4c734b8e720b7fc7cef912557d0c76850bd363f4", + "tx_hash": "9f887ea5403be9aa383402f97d0e8f856de8951ba3327060b3af17321c9478ad", "tx_index": 14, "block_index": 130, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -14798,13 +14797,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729328697 + "block_time": 1729415965 }, { - "tx_hash": "655c05dbe746884a61caffb235cfb4afe80cda0d2858b276eae7ca9c493dd775", + "tx_hash": "bb813d64db8f65171084ffa83e7128316586ef0283b09807d288d02a0b8e58da", "tx_index": 10, "block_index": 125, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -14829,7 +14828,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729328677 + "block_time": 1729415943 } ], "next_cursor": null, @@ -14865,6 +14864,179 @@ Returns the mints by fairminter + show_unconfirmed (bool, optional) - Include results from Mempool. + Default: `false` +## Group Fairmints + +### Get All Fairmints [GET /v2/fairmints{?cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}] + +Returns all fairmints + ++ Parameters + + cursor (str, optional) - The last index of the fairmint to return + + Default: `None` + + limit: `5` (int, optional) - The maximum number of fairmint to return + + Default: `100` + + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) + + Default: `None` + + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + + Default: `false` + + show_unconfirmed (bool, optional) - Include results from Mempool. + + Default: `false` + ++ Response 200 (application/json) + + ``` + { + "result": [ + { + "tx_hash": "6b50dfb9f0288a39497978e107102a20fca9269f60c348a7d3252a97951c3dfa", + "tx_index": 23, + "block_index": 136, + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "fairminter_tx_hash": "251c310af851cba2ce4a58932e7cb803aeb6a9f7a55bac9bbf688ba85a48ef28", + "asset": "FAIRMINTD", + "earn_quantity": 40, + "paid_quantity": 34, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1729415991, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "divisible": true, + "locked": false + } + }, + { + "tx_hash": "ec08c12c9bbaea508612d23ebc7653d37f4f177f216252e62a801b65f3858840", + "tx_index": 21, + "block_index": 134, + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "fairminter_tx_hash": "dbd38cf37e8f0c24ae54d5b6169437c48f55fb84fc0583aa0d79858c0f9a69fc", + "asset": "FAIRMINTC", + "earn_quantity": 11, + "paid_quantity": 3, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1729415982, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "divisible": true, + "locked": false + } + }, + { + "tx_hash": "187f59a0c410f68e7a905a52efc5ca6aa0cd19f9a082e30ab709d107d8abc5a8", + "tx_index": 20, + "block_index": 133, + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "fairminter_tx_hash": "dbd38cf37e8f0c24ae54d5b6169437c48f55fb84fc0583aa0d79858c0f9a69fc", + "asset": "FAIRMINTC", + "earn_quantity": 3, + "paid_quantity": 1, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1729415978, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "divisible": true, + "locked": false + } + }, + { + "tx_hash": "77cc9d1e2521b94e0c146a22a59691f4c8bc6df0a58ab18d594ecef174baa7ae", + "tx_index": 19, + "block_index": 132, + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "fairminter_tx_hash": "dbd38cf37e8f0c24ae54d5b6169437c48f55fb84fc0583aa0d79858c0f9a69fc", + "asset": "FAIRMINTC", + "earn_quantity": 5, + "paid_quantity": 1, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1729415974, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "divisible": true, + "locked": false + } + }, + { + "tx_hash": "3c243ab902c141cee432205867f5e8b017982288a7857714a37cdfeb5c583742", + "tx_index": 17, + "block_index": 129, + "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "fairminter_tx_hash": "9f887ea5403be9aa383402f97d0e8f856de8951ba3327060b3af17321c9478ad", + "asset": "FAIRMINTB", + "earn_quantity": 100000000, + "paid_quantity": 100000000, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1729415961, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "divisible": true, + "locked": false + } + } + ], + "next_cursor": 5, + "result_count": 10 + } + ``` + +### Get Fairmint [GET /v2/fairmints/{tx_hash}{?verbose}{&show_unconfirmed}] + +Returns the fairmint by its hash + ++ Parameters + + tx_hash: `6b50dfb9f0288a39497978e107102a20fca9269f60c348a7d3252a97951c3dfa` (str, required) - The hash of the fairmint to return + + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + + Default: `false` + + show_unconfirmed (bool, optional) - Include results from Mempool. + + Default: `false` + ++ Response 200 (application/json) + + ``` + { + "result": { + "tx_hash": "6b50dfb9f0288a39497978e107102a20fca9269f60c348a7d3252a97951c3dfa", + "tx_index": 23, + "block_index": 136, + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "fairminter_tx_hash": "251c310af851cba2ce4a58932e7cb803aeb6a9f7a55bac9bbf688ba85a48ef28", + "asset": "FAIRMINTD", + "earn_quantity": 40, + "paid_quantity": 34, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1729415991, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "divisible": true, + "locked": false + } + } + } + ``` + ## Group Bitcoin ### Get Unspent Txouts By Addresses [GET /v2/bitcoin/addresses/utxos{?addresses}{&unconfirmed}{&verbose}{&show_unconfirmed}] @@ -14872,7 +15044,7 @@ Returns the mints by fairminter Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qu2jyjw0ac8f5tpuf9frh35m7saw6rmplryv7aa,bcrt1qudangnqpexn0yrqnnyjlm0waham8cyn9lw5pys` (str, required) - The addresses to search for + + addresses: `bcrt1qpm0krm9adpcqdeu2tmuzwdl325fr9768g564cg,bcrt1qsadvwd5q5legncwy7gd0e8nzcar0xtmpjd6smx` (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. @@ -14891,8 +15063,8 @@ Returns a list of unspent outputs for a list of addresses "value": 4949970000, "confirmations": 50, "amount": 49.4997, - "txid": "1fea7e4856521d6ef1a0b361c9820e9c3b8cfd4b563741479b822052676ab61e", - "address": "bcrt1qu2jyjw0ac8f5tpuf9frh35m7saw6rmplryv7aa" + "txid": "43c225715776decba49fea590847b184beb000f0be36e0c40c59cf79b4cc6b64", + "address": "bcrt1qpm0krm9adpcqdeu2tmuzwdl325fr9768g564cg" }, { "vout": 2, @@ -14900,8 +15072,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 40, "amount": 0.001, - "txid": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1", - "address": "bcrt1qudangnqpexn0yrqnnyjlm0waham8cyn9lw5pys" + "txid": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2", + "address": "bcrt1qsadvwd5q5legncwy7gd0e8nzcar0xtmpjd6smx" } ], "next_cursor": null, @@ -14914,7 +15086,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24` (str, required) - The address to search for + + address: `bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt` (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 @@ -14930,28 +15102,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "3ac7858b4e6053388907f40c38e43800f7856d7dd4d00aa2a49e1bc8cdb2c407" + "tx_hash": "41940d57c4a9b1f5d0a22cb937643b5a48181fabeb27a4fe2ae5e3b102045d0f" }, { - "tx_hash": "e07e301352fc03f3fa32de1f8c0b07f8817a96104c5a64171cff40e24d3ed90e" + "tx_hash": "2df6cb6457b25d97b2a3c828c2ccdf94125693a11ccd1385a63069772b1df123" }, { - "tx_hash": "c453fbe7a273ff9bf57a48941588a7603510058ae7da16dde5acbfca97f26522" + "tx_hash": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024" }, { - "tx_hash": "735e2f5c7e85a8477cf81a6916a9e0f65e434d97b273863af40b880a489e4b43" + "tx_hash": "4ca32aa99d8580d669b23533fc8915333ca201ca36a675d0713d4412a1d43d77" }, { - "tx_hash": "af232ad37b11b523b1a50157542fc184c3474026e2470c0a5456a7c7bbe4be5f" + "tx_hash": "a744820b0b584d066a290e88a83e879d7632baf3894ca06daf56aeab5281ebb7" }, { - "tx_hash": "75becfa6beb8ad5af35ed1fb85254b67d1fab4fb19f4e745446677c859461e60" + "tx_hash": "cdcf917d341dcb5152a735abf3e6fbe5c3f3df03e327bdacc1f0c3f858ddbbeb" }, { - "tx_hash": "fdc41b9a899f33243268cc750b9ce72c9db1c75999a1e6c7619ab9e3de573a86" + "tx_hash": "6812bf6b8199c898a40d2bc0949e80556f9b275b19f73b96a09fd3f2f0c691f0" }, { - "tx_hash": "6caf6f14d5c240964758a1664962a0d7c7a904a5889b4cdcde5e3226232613f1" + "tx_hash": "e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2" } ], "next_cursor": null, @@ -14964,7 +15136,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe` (str, required) - The address to search for. + + address: `bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc` (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. @@ -14977,8 +15149,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 5, - "tx_hash": "406ba4682d167e0c11dc3f8af9954c76b3b4ae9538b70b7cd43f0eb9141577ca" + "block_index": 8, + "tx_hash": "fa9544479a11d9853792beb7c26938301dd85ee82f3a8d9a4f3495b4c5e42512" } } ``` @@ -14988,7 +15160,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qu2jyjw0ac8f5tpuf9frh35m7saw6rmplryv7aa` (str, required) - The address to search for + + address: `bcrt1qpm0krm9adpcqdeu2tmuzwdl325fr9768g564cg` (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 @@ -15009,7 +15181,7 @@ Returns a list of unspent outputs for a specific address "value": 4949970000, "confirmations": 50, "amount": 49.4997, - "txid": "1fea7e4856521d6ef1a0b361c9820e9c3b8cfd4b563741479b822052676ab61e" + "txid": "43c225715776decba49fea590847b184beb000f0be36e0c40c59cf79b4cc6b64" } ], "next_cursor": null, @@ -15022,7 +15194,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp` (str, required) - Address to get pubkey for. + + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (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. @@ -15034,7 +15206,7 @@ Get pubkey for an address. ``` { - "result": "03d604cba419087cd219958e0efda726c41d0eace9f1e233395345ecc412ec4f60" + "result": "026a1a918fbc2c6d5fb3aa96a683c6930e932f1484f06179aa0a146e66d4d4cb40" } ``` @@ -15043,7 +15215,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857` (str, required) - The transaction hash + + tx_hash: `9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287` (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. @@ -15055,7 +15227,7 @@ Get a transaction from the blockchain ``` { - "result": "02000000000101d1084e07a4e2e871f16fd116acf7d0b9b0031066a645c020825fad8e51f86ca50100000000ffffffff03e8030000000000001600141d6078f1db25d3de6e9a6c6ff0c087bf1282704300000000000000000c6a0ae837e781c487bd1fcdd6dced082701000000160014614f5338bb088ad3666922da50ce1b4595dc51350247304402207f6d27e8c7ada8b610bc2fb648891ff1e7f5eda524c8668b0c45fdaf0f1ba4080220443ad861b26d73945560c415ae966477aff155c1a056647d8587d5e3ab2807c6012103a2c238a5d30d0d92ced82be4a7ce3a88e55a9b26eaa5bb3c3c888f3b94cff70900000000" + "result": "02000000000101c2521e5851fa91a88dcab7d1cdeb177b78e1187975db3f54e8704b95d235493c0100000000ffffffff03e803000000000000160014d8738784ceb0bcf1708fd9c365706baff86fe9da00000000000000000c6a0a7f8e9e8ef534ab6d96e8dced08270100000016001467aa929a8ea1b72138c4a091440afffcf0ebeb160247304402201510ffaba3089e65d1da3d6a3475dc6b6694a9a2fcb0da86c18cb2884ea6eb1b022061ade669879bbe17147ea02e83b8a55f690d02ea1673da16a5bb4ea006af4897012103101e7eeabdd5073988f3ffc0f17d1ed34e6754fb80183bcf5a60f1698898086600000000" } ``` @@ -15150,27 +15322,27 @@ Returns all mempool events { "result": [ { - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "tx_index": 63 }, - "timestamp": 1729329001.736676 + "timestamp": 1729416255.7714357 }, { - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "destination": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "memo": null, "quantity": 10000, - "source": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "status": "valid", - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "tx_index": 63, "asset_info": { "divisible": true, @@ -15181,22 +15353,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729329001.736676 + "timestamp": 1729416255.7714357 }, { - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "event": "CREDIT", "params": { - "address": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "event": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -15206,22 +15378,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729329001.736676 + "timestamp": 1729416255.7714357 }, { - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "asset": "XCP", "block_index": 196, - "event": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "event": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -15231,30 +15403,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729329001.736676 + "timestamp": 1729416255.7714357 }, { - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729329001.736676, + "block_time": 1729416255.7714357, "btc_amount": 0, - "data": "0200000000000000010000000000002710802bb48e36a1ca3ac00f4cca764c8517130910023b", + "data": "020000000000000001000000000000271080b964d3e562cdc29be80c17fb47d0461efe1c5a5d", "destination": "", "fee": 10000, - "source": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "tx_index": 63, - "utxos_info": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a:1", + "utxos_info": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "memo": null, "asset_info": { "divisible": true, @@ -15268,7 +15440,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729329001.736676 + "timestamp": 1729416255.7714357 } ], "next_cursor": null, @@ -15299,19 +15471,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "event": "CREDIT", "params": { - "address": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "event": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -15321,7 +15493,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729329001.736676 + "timestamp": 1729416255.7714357 } ], "next_cursor": null, @@ -15334,7 +15506,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a` (str, required) - The hash of the transaction to return + + tx_hash: `a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836` (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 @@ -15354,27 +15526,27 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "tx_index": 63 }, - "timestamp": 1729329001.736676 + "timestamp": 1729416255.7714357 }, { - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "destination": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "memo": null, "quantity": 10000, - "source": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "status": "valid", - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "tx_index": 63, "asset_info": { "divisible": true, @@ -15385,22 +15557,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729329001.736676 + "timestamp": 1729416255.7714357 }, { - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "event": "CREDIT", "params": { - "address": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "event": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -15410,22 +15582,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729329001.736676 + "timestamp": 1729416255.7714357 }, { - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "asset": "XCP", "block_index": 196, - "event": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "event": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -15435,30 +15607,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729329001.736676 + "timestamp": 1729416255.7714357 }, { - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729329001.736676, + "block_time": 1729416255.7714357, "btc_amount": 0, - "data": "0200000000000000010000000000002710802bb48e36a1ca3ac00f4cca764c8517130910023b", + "data": "020000000000000001000000000000271080b964d3e562cdc29be80c17fb47d0461efe1c5a5d", "destination": "", "fee": 10000, - "source": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "tx_index": 63, - "utxos_info": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a:1", + "utxos_info": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "memo": null, "asset_info": { "divisible": true, @@ -15472,7 +15644,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729329001.736676 + "timestamp": 1729416255.7714357 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/lib/api/queries.py b/counterparty-core/counterpartycore/lib/api/queries.py index 6d55a24eee..aaffcfd84b 100644 --- a/counterparty-core/counterpartycore/lib/api/queries.py +++ b/counterparty-core/counterpartycore/lib/api/queries.py @@ -2714,3 +2714,25 @@ def get_fairmints_by_address_and_asset( limit=limit, offset=offset, ) + + +def get_all_fairmints(db, cursor: str = None, limit: int = 100, offset: int = None): + """ + Returns all fairmints + :param str cursor: The last index of the fairmint to return + :param int limit: The maximum number of fairmint to return (e.g. 5) + :param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter) + """ + return select_rows(db, "fairmints", last_cursor=cursor, limit=limit, offset=offset) + + +def get_fairmint(db, tx_hash: str): + """ + Returns the fairmint by its hash + :param str tx_hash: The hash of the fairmint to return (e.g. $LAST_FAIRMINT_TX_HASH) + """ + return select_row( + db, + "fairmints", + where={"tx_hash": tx_hash}, + ) diff --git a/counterparty-core/counterpartycore/lib/api/routes.py b/counterparty-core/counterpartycore/lib/api/routes.py index fe4e5d68de..f1514e44df 100644 --- a/counterparty-core/counterpartycore/lib/api/routes.py +++ b/counterparty-core/counterpartycore/lib/api/routes.py @@ -160,6 +160,9 @@ def get_routes(): "/v2/fairminters": queries.get_all_fairminters, "/v2/fairminters/": queries.get_fairminter, "/v2/fairminters//mints": queries.get_fairmints_by_fairminter, + ### /fairmints ### + "/v2/fairmints": queries.get_all_fairmints, + "/v2/fairmints/": queries.get_fairmint, ### /bitcoin ### "/v2/bitcoin/addresses/utxos": addrindexrs.get_unspent_txouts_by_addresses, "/v2/bitcoin/addresses/
/transactions": addrindexrs.get_transactions_by_address, diff --git a/counterparty-core/counterpartycore/test/api_v2_test.py b/counterparty-core/counterpartycore/test/api_v2_test.py index c4f69810c4..06041437d7 100644 --- a/counterparty-core/counterpartycore/test/api_v2_test.py +++ b/counterparty-core/counterpartycore/test/api_v2_test.py @@ -36,7 +36,7 @@ def test_api_v2(request): issuance_hash = "0abfce2662c05852fd8b181a60900678643cedad47b23a853b8c4eda82cb2cbf" broadcast_hash = "7c437705c315212315c85c0b8ba09d358679c91be20b54f30929c5a6052426af" minter_hash = "83b96c0f72fea31403567852f2bdb4840ffdf18bda2e82df4f27aad633830e29" - # mint_hash = "d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67" + mint_hash = "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18" event = "CREDIT" event_index = 10 tx_index = 2 @@ -88,6 +88,8 @@ def test_api_v2(request): url = url.replace("", broadcast_hash) if "fairminters" in url: url = url.replace("", minter_hash) + if "fairmints": + url = url.replace("", mint_hash) url = url.replace("", tx_hash) url = url.replace("", block_hash) url = url.replace("", dividend_hash) diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index f236dd9416..3ac01078ec 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -786,49 +786,26 @@ "btc_amount_normalized": "0.00000000" } }, - "http://localhost:10009/v2/transactions/74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498?verbose=true": { + "http://localhost:10009/v2/transactions/ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18?verbose=true": { "result": { - "tx_index": 492, - "tx_hash": "74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498", - "block_index": 310491, - "block_hash": "811abd7cf2b768cfdaa84ab44c63f4463c96a368ead52125bf149cf0c7447b16", - "block_time": 310491000, - "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + "tx_index": 507, + "tx_hash": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "block_index": 310506, + "block_hash": "9a7512bd957b110f23c37a6673cd0fd7342f0cf96b44f990e66ac7d5cbb8448c", + "block_time": 310506000, + "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "destination": null, "btc_amount": 0, - "fee": 6800, - "data": "0000000a00000000000000010000000005f5e100000000000000000000000000000c350007d000000000000dbba0", + "fee": 5800, + "data": "5b413136303336313238353739323733333732397c3230", "supported": true, - "utxos_info": "34ddf77d56739516eec4be2cef26c823380845834393dcedc8c06c184b55463b:0", + "utxos_info": "33b22f767d86a1375935576b0b0b76fee0c080ab5dd4e8d9aa27537df84abef2:1", "confirmed": true, "unpacked_data": { - "message_type": "order", - "message_type_id": 10, + "message_type": "unknown", + "message_type_id": 1530999094, "message_data": { - "give_asset": "XCP", - "give_quantity": 100000000, - "get_asset": "BTC", - "get_quantity": 800000, - "expiration": 2000, - "fee_required": 900000, - "status": "open", - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "1.00000000", - "get_quantity_normalized": "0.00800000", - "fee_required_normalized": "0.00900000" + "error": "Unknown message type" } }, "btc_amount_normalized": "0.00000000" @@ -952,83 +929,149 @@ "next_cursor": null, "result_count": 5 }, - "http://localhost:10009/v2/transactions/74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498/events?verbose=true": { + "http://localhost:10009/v2/transactions/ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18/events?verbose=true": { "result": [ { - "event_index": 1183, + "event_index": 1301, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498", - "tx_index": 492 + "tx_hash": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "tx_index": 507 }, - "tx_hash": "74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498", - "block_index": 310491, - "block_time": 310491000 + "tx_hash": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "block_index": 310506, + "block_time": 310506000 }, { - "event_index": 1182, - "event": "OPEN_ORDER", + "event_index": 1300, + "event": "ASSET_ISSUANCE", "params": { - "block_index": 310491, - "expiration": 2000, - "expire_index": 312491, - "fee_provided": 6800, - "fee_provided_remaining": 6800, - "fee_required": 900000, - "fee_required_remaining": 900000, - "get_asset": "BTC", - "get_quantity": 800000, - "get_remaining": 800000, - "give_asset": "XCP", - "give_quantity": 100000000, - "give_remaining": 100000000, - "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - "status": "open", - "tx_hash": "74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498", - "tx_index": 492, - "block_time": 310491000, - "give_asset_info": { + "asset": "A160361285792733729", + "asset_events": "fairmint", + "asset_longname": "", + "block_index": 310506, + "call_date": 0, + "call_price": 0.0, + "callable": false, + "description": "softcap description", + "description_locked": false, + "divisible": true, + "fair_minting": true, + "fee_paid": 0, + "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "locked": false, + "msg_index": 0, + "quantity": 20, + "reset": false, + "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "status": "valid", + "transfer": false, + "tx_hash": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "tx_index": 507, + "block_time": 310506000, + "quantity_normalized": "0.00000020", + "fee_paid_normalized": "0.00000000" + }, + "tx_hash": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "block_index": 310506, + "block_time": 310506000 + }, + { + "event_index": 1299, + "event": "NEW_FAIRMINT", + "params": { + "asset": "A160361285792733729", + "block_index": 310506, + "commission": 6, + "earn_quantity": 14, + "fairminter_tx_hash": "0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9", + "paid_quantity": 200, + "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "status": "valid", + "tx_hash": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "tx_index": 507, + "block_time": 310506000, + "asset_info": { + "asset_longname": "", + "description": "softcap description", + "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "locked": false + } + }, + "tx_hash": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "block_index": 310506, + "block_time": 310506000 + }, + { + "event_index": 1298, + "event": "CREDIT", + "params": { + "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef", + "asset": "A160361285792733729", + "block_index": 310506, + "calling_function": "escrowed fairmint", + "event": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "quantity": 20, + "tx_index": 507, + "utxo": null, + "utxo_address": null, + "block_time": 310506000, + "asset_info": { + "asset_longname": "", + "description": "softcap description", + "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "divisible": true, + "locked": false }, - "get_asset_info": { + "quantity_normalized": "0.00000020" + }, + "tx_hash": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "block_index": 310506, + "block_time": 310506000 + }, + { + "event_index": 1297, + "event": "CREDIT", + "params": { + "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef", + "asset": "XCP", + "block_index": 310506, + "calling_function": "escrowed fairmint", + "event": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "quantity": 200, + "tx_index": 507, + "utxo": null, + "utxo_address": null, + "block_time": 310506000, + "asset_info": { "divisible": true, "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, + "description": "The Counterparty protocol native currency", + "locked": true, "issuer": null }, - "give_quantity_normalized": "1.00000000", - "get_quantity_normalized": "0.00800000", - "get_remaining_normalized": "0.00800000", - "give_remaining_normalized": "1.00000000", - "fee_provided_normalized": "0.00006800", - "fee_required_normalized": "0.00900000", - "fee_required_remaining_normalized": "0.00900000", - "fee_provided_remaining_normalized": "0.00006800" + "quantity_normalized": "0.00000200" }, - "tx_hash": "74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498", - "block_index": 310491, - "block_time": 310491000 + "tx_hash": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "block_index": 310506, + "block_time": 310506000 }, { - "event_index": 1181, + "event_index": 1296, "event": "DEBIT", "params": { - "action": "open order", - "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + "action": "escrowed fairmint", + "address": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", "asset": "XCP", - "block_index": 310491, - "event": "74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498", - "quantity": 100000000, - "tx_index": 492, + "block_index": 310506, + "event": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "quantity": 200, + "tx_index": 507, "utxo": null, "utxo_address": null, - "block_time": 310491000, + "block_time": 310506000, "asset_info": { "divisible": true, "asset_longname": null, @@ -1036,22 +1079,22 @@ "locked": true, "issuer": null }, - "quantity_normalized": "1.00000000" + "quantity_normalized": "0.00000200" }, - "tx_hash": "74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498", - "block_index": 310491, - "block_time": 310491000 + "tx_hash": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "block_index": 310506, + "block_time": 310506000 } ], "next_cursor": null, - "result_count": 3 + "result_count": 6 }, - "http://localhost:10009/v2/transactions/74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498/sends?verbose=true": { + "http://localhost:10009/v2/transactions/ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18/sends?verbose=true": { "result": [], "next_cursor": null, "result_count": 0 }, - "http://localhost:10009/v2/transactions/74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498/dispenses?verbose=true": { + "http://localhost:10009/v2/transactions/ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18/dispenses?verbose=true": { "result": [], "next_cursor": null, "result_count": 0 @@ -1089,10 +1132,65 @@ "next_cursor": null, "result_count": 1 }, - "http://localhost:10009/v2/transactions/74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498/events/CREDIT?verbose=true": { - "result": [], + "http://localhost:10009/v2/transactions/ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18/events/CREDIT?verbose=true": { + "result": [ + { + "event_index": 1298, + "event": "CREDIT", + "params": { + "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef", + "asset": "A160361285792733729", + "block_index": 310506, + "calling_function": "escrowed fairmint", + "event": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "quantity": 20, + "tx_index": 507, + "utxo": null, + "utxo_address": null, + "block_time": 310506000, + "asset_info": { + "asset_longname": "", + "description": "softcap description", + "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000020" + }, + "tx_hash": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "block_index": 310506, + "block_time": 310506000 + }, + { + "event_index": 1297, + "event": "CREDIT", + "params": { + "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef", + "asset": "XCP", + "block_index": 310506, + "calling_function": "escrowed fairmint", + "event": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "quantity": 200, + "tx_index": 507, + "utxo": null, + "utxo_address": null, + "block_time": 310506000, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000200" + }, + "tx_hash": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "block_index": 310506, + "block_time": 310506000 + } + ], "next_cursor": null, - "result_count": 0 + "result_count": 2 }, "http://localhost:10009/v2/addresses/balances?verbose=true&limit=6&addresses=mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc,mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns": { "result": [ @@ -7351,7 +7449,7 @@ "next_cursor": null, "result_count": 0 }, - "http://localhost:10009/v2/sweeps/74db175c4669a3d3a59e3fcddce9e97fcd7d12c35b58ef31845a1b20a1739498?verbose=true": { + "http://localhost:10009/v2/sweeps/ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18?verbose=true": { "result": [], "next_cursor": null, "result_count": 0 @@ -7497,6 +7595,98 @@ "fee_fraction_int_normalized": "0.00000000" } }, + "http://localhost:10009/v2/fairmints?verbose=true": { + "result": [ + { + "tx_hash": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "tx_index": 507, + "block_index": 310506, + "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "fairminter_tx_hash": "0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9", + "asset": "A160361285792733729", + "earn_quantity": 14, + "paid_quantity": 200, + "commission": 6, + "status": "valid", + "confirmed": true, + "block_time": 310506000, + "asset_info": { + "asset_longname": "", + "description": "softcap description", + "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "divisible": true, + "locked": false + } + }, + { + "tx_hash": "6f4c3965a1cc2891e7dcdb4a3c12b73e6cf2e56e750dabcdf87c82443f08e1d8", + "tx_index": 506, + "block_index": 310505, + "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "fairminter_tx_hash": "0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9", + "asset": "A160361285792733729", + "earn_quantity": 7, + "paid_quantity": 100, + "commission": 3, + "status": "valid", + "confirmed": true, + "block_time": 310505000, + "asset_info": { + "asset_longname": "", + "description": "softcap description", + "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "divisible": true, + "locked": false + } + }, + { + "tx_hash": "d42849c71a32e388606982d3384ec8ae12e5c0ba2f742cb4ddf0649fb66e1f67", + "tx_index": 502, + "block_index": 310501, + "source": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + "fairminter_tx_hash": "a34d2b430b05ce71e9b09125d92be01fe666327252cbe54916e3a07db67b93ce", + "asset": "FREEFAIRMIN", + "earn_quantity": 10, + "paid_quantity": 0, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 310501000, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + "divisible": true, + "locked": false + } + } + ], + "next_cursor": null, + "result_count": 3 + }, + "http://localhost:10009/v2/fairmints/ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18?verbose=true": { + "result": { + "tx_hash": "ba6c7582f5c1e39bed32074c16f54ab338c79d0eefd3c8a7ba1f949e2febcd18", + "tx_index": 507, + "block_index": 310506, + "source": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "fairminter_tx_hash": "0d56c40c31829bbd06cdc039eda95c844c98208ec981ef419093c386eab2d0e9", + "asset": "A160361285792733729", + "earn_quantity": 14, + "paid_quantity": 200, + "commission": 6, + "status": "valid", + "confirmed": true, + "block_time": 310506000, + "asset_info": { + "asset_longname": "", + "description": "softcap description", + "issuer": "mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns", + "divisible": true, + "locked": false + } + } + }, "http://localhost:10009/v2/routes?verbose=true": { "result": { "/v2/blocks": { @@ -16441,6 +16631,73 @@ } ] }, + "/v2/fairmints": { + "function": "get_all_fairmints", + "description": "Returns all fairmints", + "args": [ + { + "name": "cursor", + "default": null, + "required": false, + "type": "str", + "description": "The last index of the fairmint to return" + }, + { + "name": "limit", + "default": 100, + "required": false, + "type": "int", + "description": "The maximum number of fairmint to return (e.g. 5)" + }, + { + "name": "offset", + "default": null, + "required": false, + "type": "int", + "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)" + }, + { + "name": "verbose", + "type": "bool", + "default": "false", + "description": "Include asset and dispenser info and normalized quantities in the response.", + "required": false + }, + { + "name": "show_unconfirmed", + "type": "bool", + "default": "false", + "description": "Include results from Mempool.", + "required": false + } + ] + }, + "/v2/fairmints/": { + "function": "get_fairmint", + "description": "Returns the fairmint by its hash", + "args": [ + { + "name": "tx_hash", + "required": true, + "type": "str", + "description": "The hash of the fairmint to return (e.g. $LAST_FAIRMINT_TX_HASH)" + }, + { + "name": "verbose", + "type": "bool", + "default": "false", + "description": "Include asset and dispenser info and normalized quantities in the response.", + "required": false + }, + { + "name": "show_unconfirmed", + "type": "bool", + "default": "false", + "description": "Include results from Mempool.", + "required": false + } + ] + }, "/v2/bitcoin/addresses/utxos": { "function": "get_unspent_txouts_by_addresses", "description": "Returns a list of unspent outputs for a list of addresses", diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index c5d7a95140..d0840fdc3c 100644 --- a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json +++ b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json @@ -3,61 +3,61 @@ "result": [ { "block_index": 196, - "block_hash": "6cc2b82f06aeb0c72e06479a6b4c738aa8b77e6f9950befce25b29af7462b71a", - "block_time": 1729328997, - "previous_block_hash": "077fdc319fd71dd9c240c75deca71a0d77e058a388264622e922d44c1245be33", + "block_hash": "6507d71596a5bde486e1a5c1e33be2c96c037acf161f1c5cb41cd6e966e2d3a2", + "block_time": 1729416251, + "previous_block_hash": "3ecdd06511d985f7dd0ec1b9070e68ab57bd0c147b76d85bc1ac386a188c75a3", "difficulty": 545259519, - "ledger_hash": "4b0e19998a70ce7a0bf7b637c8174fbba5baf085312ac2097891dcb834d889b7", - "txlist_hash": "fc196af6b16a0cd8b7630d9935290587a5303e9610b40774b561bb6efd0d5833", - "messages_hash": "a3ca428483eaef8fb902f7d899a2fdd680f956bb01f834d0be6d2348137b737e", + "ledger_hash": "f94b9a0cde6ac7ff4c57657df4d33d9a8f1dae9ef5de975f5df1dcc5cc851ece", + "txlist_hash": "41aa08840203abe0c1883ea81febef8fdb9238af22a71a5495b39bfc7c1db71b", + "messages_hash": "90707f8a533719986dc3f0949bda3f2eb1e3b12b4d1113e9caccbd9b4d5efb63", "transaction_count": 1, "confirmed": true }, { "block_index": 195, - "block_hash": "077fdc319fd71dd9c240c75deca71a0d77e058a388264622e922d44c1245be33", - "block_time": 1729328988, - "previous_block_hash": "5fb2486e81e7eb7273a991ebc737803d9beb57e5fa432f56b0e137fa5f8b605b", + "block_hash": "3ecdd06511d985f7dd0ec1b9070e68ab57bd0c147b76d85bc1ac386a188c75a3", + "block_time": 1729416242, + "previous_block_hash": "728a813061fac83aa7ba84782106a41b12625043d7d6bfa23a9c143df030f128", "difficulty": 545259519, - "ledger_hash": "ede9b898c72bf40ce0c75ef3c7b1fb6d0cbe35ce2ec65ddb72505eeb2875548c", - "txlist_hash": "d080f2b64c4b565e2f303231da3c41f524fce08925e2042ce9f064dd0e1e19f8", - "messages_hash": "31f61043e26c26a1bb3fe84f42333513366b9fbe4269d83a7fb6b9d4e94da007", + "ledger_hash": "cc718c23e625491aee2fc62a05bc61a9757c4a93b694ef86bc4ce5156e1d95e4", + "txlist_hash": "a07cf4e2952739cbc92e3c6ab24d5641f416fc170b9760e7c474d9f39f5aea26", + "messages_hash": "9091c829a5aa11609cd32fe2f67938ba0dbcf5bcf4a65e90c10e54461f9f80cf", "transaction_count": 1, "confirmed": true }, { "block_index": 194, - "block_hash": "5fb2486e81e7eb7273a991ebc737803d9beb57e5fa432f56b0e137fa5f8b605b", - "block_time": 1729328983, - "previous_block_hash": "09f548e451b21449feb36715f104d87137e3b88a81d8b30c5306820791308f83", + "block_hash": "728a813061fac83aa7ba84782106a41b12625043d7d6bfa23a9c143df030f128", + "block_time": 1729416237, + "previous_block_hash": "4711586e156dc07bc446b0d13bd07197fb6073457f04e8c962b18601d7aab73c", "difficulty": 545259519, - "ledger_hash": "f0dc2c97395182e16bb5a37c621fd581653b554ab2c088248ad356dc5c361343", - "txlist_hash": "21622279870102069c75369c3a58eb7a29750dba07ca6b4fcedb38b8c7a4bc98", - "messages_hash": "0067d200e9473a722c70eeda7334c0001191ca2e76177fad28f581810f964c79", + "ledger_hash": "16819ea6b16871368675990819b6ee38eaf09dd756eb3266992d9bbcbfb612e0", + "txlist_hash": "cf42fdd132d3436f7c386a132cbf5f28490b0d2a730f870efeb94abc5c539730", + "messages_hash": "5924462778e58daed75d47fc78480ebda5c1e5c0253ed48c30ce5e9981a12f86", "transaction_count": 1, "confirmed": true }, { "block_index": 193, - "block_hash": "09f548e451b21449feb36715f104d87137e3b88a81d8b30c5306820791308f83", - "block_time": 1729328980, - "previous_block_hash": "5897bcdb0e687832bd9b5458582ce9d410e0c01f5ff26964538751a9e645b4db", + "block_hash": "4711586e156dc07bc446b0d13bd07197fb6073457f04e8c962b18601d7aab73c", + "block_time": 1729416233, + "previous_block_hash": "7ed678c7467e7efadcf543e389f591346431c76c567638ba2fc748d67b102781", "difficulty": 545259519, - "ledger_hash": "a3f1d036f9e12f188e22d2b27f298c2b8e2c0c79a98b3afeff0a1952c73979a5", - "txlist_hash": "c5b6cc497a6980d9e26044ae28d6040f9e6366a569d5b29887d1d16382aea1f8", - "messages_hash": "407ca9af7ebf96fcd710ecd67d589e88e25ec7469557829313a2d6fb59390971", + "ledger_hash": "0d713822dd49df58abf0df8423b2b429ac36d2da7e181df4fa32919413307a8b", + "txlist_hash": "7f95f439866514d156baead34f58896d8ed0dd87c5730eef21ff376b9d7d322e", + "messages_hash": "665d3418c0246f5af0c06d3668b67a110dd798d17bfae6384e9b309030c754af", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "5897bcdb0e687832bd9b5458582ce9d410e0c01f5ff26964538751a9e645b4db", - "block_time": 1729328976, - "previous_block_hash": "0826a6c8402128526d9748611755dc61663b39f77909517585100318a72b2dcc", + "block_hash": "7ed678c7467e7efadcf543e389f591346431c76c567638ba2fc748d67b102781", + "block_time": 1729416229, + "previous_block_hash": "2fb7daac12d57d03a72504b4a83dcdcf2526bf0ddd4ef79a494697e3933b3d32", "difficulty": 545259519, - "ledger_hash": "b1bc52340c62bb9131b7d6b51da6cb88eac4a43d143f760b299093e8a90ca795", - "txlist_hash": "8b9ff4e44233b9654c638efe0a02071a260a756c889f3fb66d3a09624b078c5c", - "messages_hash": "c81a44ee751b07fa0481450a707a148a4b8a52f3938162587c6cc88c091e5556", + "ledger_hash": "a4b01c2e43a0d3d158d89eb1daf965eefb4587fd04080947c4915581c1f9fb75", + "txlist_hash": "5eefd74579a8915f71f7aa0d2b2140c088ed41c582e39ac3ec356ac23561ea7b", + "messages_hash": "d341d3e3d54cb95d6ac5eda6bd925d32cb00afa9ed7b6cc05e227c6bad69e92e", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 196, - "block_hash": "6cc2b82f06aeb0c72e06479a6b4c738aa8b77e6f9950befce25b29af7462b71a", - "block_time": 1729328997, - "previous_block_hash": "077fdc319fd71dd9c240c75deca71a0d77e058a388264622e922d44c1245be33", + "block_hash": "6507d71596a5bde486e1a5c1e33be2c96c037acf161f1c5cb41cd6e966e2d3a2", + "block_time": 1729416251, + "previous_block_hash": "3ecdd06511d985f7dd0ec1b9070e68ab57bd0c147b76d85bc1ac386a188c75a3", "difficulty": 545259519, - "ledger_hash": "4b0e19998a70ce7a0bf7b637c8174fbba5baf085312ac2097891dcb834d889b7", - "txlist_hash": "fc196af6b16a0cd8b7630d9935290587a5303e9610b40774b561bb6efd0d5833", - "messages_hash": "a3ca428483eaef8fb902f7d899a2fdd680f956bb01f834d0be6d2348137b737e", + "ledger_hash": "f94b9a0cde6ac7ff4c57657df4d33d9a8f1dae9ef5de975f5df1dcc5cc851ece", + "txlist_hash": "41aa08840203abe0c1883ea81febef8fdb9238af22a71a5495b39bfc7c1db71b", + "messages_hash": "90707f8a533719986dc3f0949bda3f2eb1e3b12b4d1113e9caccbd9b4d5efb63", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 196, - "block_hash": "6cc2b82f06aeb0c72e06479a6b4c738aa8b77e6f9950befce25b29af7462b71a", - "block_time": 1729328997, - "previous_block_hash": "077fdc319fd71dd9c240c75deca71a0d77e058a388264622e922d44c1245be33", + "block_hash": "6507d71596a5bde486e1a5c1e33be2c96c037acf161f1c5cb41cd6e966e2d3a2", + "block_time": 1729416251, + "previous_block_hash": "3ecdd06511d985f7dd0ec1b9070e68ab57bd0c147b76d85bc1ac386a188c75a3", "difficulty": 545259519, - "ledger_hash": "4b0e19998a70ce7a0bf7b637c8174fbba5baf085312ac2097891dcb834d889b7", - "txlist_hash": "fc196af6b16a0cd8b7630d9935290587a5303e9610b40774b561bb6efd0d5833", - "messages_hash": "a3ca428483eaef8fb902f7d899a2fdd680f956bb01f834d0be6d2348137b737e", + "ledger_hash": "f94b9a0cde6ac7ff4c57657df4d33d9a8f1dae9ef5de975f5df1dcc5cc851ece", + "txlist_hash": "41aa08840203abe0c1883ea81febef8fdb9238af22a71a5495b39bfc7c1db71b", + "messages_hash": "90707f8a533719986dc3f0949bda3f2eb1e3b12b4d1113e9caccbd9b4d5efb63", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 62, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_hash": "6cc2b82f06aeb0c72e06479a6b4c738aa8b77e6f9950befce25b29af7462b71a", - "block_time": 1729328997, - "source": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", - "destination": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "block_hash": "6507d71596a5bde486e1a5c1e33be2c96c037acf161f1c5cb41cd6e966e2d3a2", + "block_time": 1729416251, + "source": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "destination": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1:1 5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", + "utxos_info": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1 9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -129,11 +129,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "4b0e19998a70ce7a0bf7b637c8174fbba5baf085312ac2097891dcb834d889b7", - "messages_hash": "a3ca428483eaef8fb902f7d899a2fdd680f956bb01f834d0be6d2348137b737e", + "ledger_hash": "f94b9a0cde6ac7ff4c57657df4d33d9a8f1dae9ef5de975f5df1dcc5cc851ece", + "messages_hash": "90707f8a533719986dc3f0949bda3f2eb1e3b12b4d1113e9caccbd9b4d5efb63", "transaction_count": 1, - "txlist_hash": "fc196af6b16a0cd8b7630d9935290587a5303e9610b40774b561bb6efd0d5833", - "block_time": 1729328997 + "txlist_hash": "41aa08840203abe0c1883ea81febef8fdb9238af22a71a5495b39bfc7c1db71b", + "block_time": 1729416251 }, "tx_hash": null }, @@ -142,10 +142,10 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62 }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857" + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287" }, { "event_index": 561, @@ -154,14 +154,14 @@ "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "destination": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b", - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -172,7 +172,7 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857" + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287" }, { "event_index": 560, @@ -181,9 +181,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "status": 0, - "tx_hash": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b", + "tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", "asset_info": { "divisible": true, "asset_longname": null, @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857" + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287" }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -218,7 +218,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857" + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287" } ], "next_cursor": 558, @@ -256,16 +256,16 @@ "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -275,7 +275,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857" + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287" }, { "event_index": 557, @@ -285,12 +285,12 @@ "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "quantity": 1500000000, "tx_index": 62, - "utxo": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", - "utxo_address": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", - "block_time": 1729328997, + "utxo": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -300,7 +300,7 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857" + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287" }, { "event_index": 554, @@ -310,22 +310,22 @@ "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "quantity": 1500000000, "tx_index": 62, - "utxo": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", - "utxo_address": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", - "block_time": 1729328997, + "utxo": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "block_time": 1729416251, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857" + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287" } ], "next_cursor": null, @@ -335,16 +335,16 @@ "result": [ { "block_index": 196, - "address": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -360,12 +360,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62, - "utxo": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", - "utxo_address": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "utxo": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "confirmed": true, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,16 +381,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62, - "utxo": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", - "utxo_address": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "utxo": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "confirmed": true, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -408,12 +408,12 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62, - "utxo": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1:1", - "utxo_address": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "utxo": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", + "utxo_address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "confirmed": true, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -429,16 +429,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62, - "utxo": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1:1", - "utxo_address": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "utxo": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", + "utxo_address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "confirmed": true, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -452,24 +452,24 @@ "result": [ { "type": "order", - "object_id": "45de60b281c8ad2f70758c63cf0bb0b4f5e0f5015692a304541527b7f52bc82f", + "object_id": "31f95069423c6c4ddfe0a4574c1a3369fb58dac7a6652ba054558eb83930ed0b", "block_index": 184, "confirmed": true, - "block_time": 1729328864 + "block_time": 1729416128 }, { "type": "order", - "object_id": "417b7585cb70e5e9f3850385defa712ecae11bac8afe116a63861a98648f1b11", + "object_id": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8", "block_index": 184, "confirmed": true, - "block_time": 1729328864 + "block_time": 1729416128 }, { "type": "order_match", - "object_id": "417b7585cb70e5e9f3850385defa712ecae11bac8afe116a63861a98648f1b11_45de60b281c8ad2f70758c63cf0bb0b4f5e0f5015692a304541527b7f52bc82f", + "object_id": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8_31f95069423c6c4ddfe0a4574c1a3369fb58dac7a6652ba054558eb83930ed0b", "block_index": 184, "confirmed": true, - "block_time": 1729328864 + "block_time": 1729416128 } ], "next_cursor": null, @@ -479,13 +479,13 @@ "result": [ { "tx_index": 58, - "tx_hash": "2b0f3f831aaf9342b4b2729c9f9ae4017edf58e751e2073a2025d0a7c1d8856a", + "tx_hash": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa", "block_index": 192, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "offer_hash": "0c2af3b2417a07ed4648e73879edfec272c01513088c21273c745f504ee68731", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "offer_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", "status": "valid", "confirmed": true, - "block_time": 1729328976 + "block_time": 1729416229 } ], "next_cursor": null, @@ -495,15 +495,15 @@ "result": [ { "tx_index": 61, - "tx_hash": "a2796a7a01cac72fd1b2e54ffda7f4880fcc653db5d80725a8ec6499d028f44c", + "tx_hash": "849f54d8426192c0270d4d240627ba157876e3601948aed0ac24e730dcab52d7", "block_index": 195, - "source": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1729328988, + "block_time": 1729416242, "asset_info": { "divisible": true, "asset_longname": null, @@ -521,14 +521,14 @@ "result": [ { "tx_index": 48, - "tx_hash": "ad7cd24a91d670e0fb520c404cfc2fa0df0ee9a9f8bf4092b67790f6ca07c072", + "tx_hash": "bb2aa89179834fafe03acecbbade4d6fd928251f2923a59b4656957ab3685976", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "transfer": false, "callable": false, "call_date": 0, @@ -543,7 +543,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729328839, + "block_time": 1729416112, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -555,10 +555,10 @@ "result": [ { "tx_index": 62, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "source": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1:1", - "destination": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", + "source": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", + "destination": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -566,7 +566,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -579,10 +579,10 @@ }, { "tx_index": 62, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "source": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1:1", - "destination": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", + "source": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", + "destination": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -590,11 +590,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -610,27 +610,27 @@ { "tx_index": 62, "dispense_index": 0, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", - "destination": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "destination": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b", + "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "oracle_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "last_status_tx_hash": null, - "origin": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "origin": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -645,7 +645,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -664,16 +664,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "75becfa6beb8ad5af35ed1fb85254b67d1fab4fb19f4e745446677c859461e60", + "tx_hash": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", "block_index": 194, - "source": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", - "destination": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729328983, + "block_time": 1729416237, "fee_paid_normalized": "0.00600000" } ], @@ -684,17 +684,17 @@ "result": [ { "tx_index": 62, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_hash": "6cc2b82f06aeb0c72e06479a6b4c738aa8b77e6f9950befce25b29af7462b71a", - "block_time": 1729328997, - "source": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", - "destination": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "block_hash": "6507d71596a5bde486e1a5c1e33be2c96c037acf161f1c5cb41cd6e966e2d3a2", + "block_time": 1729416251, + "source": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "destination": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1:1 5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", + "utxos_info": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1 9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -707,17 +707,17 @@ }, { "tx_index": 61, - "tx_hash": "a2796a7a01cac72fd1b2e54ffda7f4880fcc653db5d80725a8ec6499d028f44c", + "tx_hash": "849f54d8426192c0270d4d240627ba157876e3601948aed0ac24e730dcab52d7", "block_index": 195, - "block_hash": "077fdc319fd71dd9c240c75deca71a0d77e058a388264622e922d44c1245be33", - "block_time": 1729328988, - "source": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "block_hash": "3ecdd06511d985f7dd0ec1b9070e68ab57bd0c147b76d85bc1ac386a188c75a3", + "block_time": 1729416242, + "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "a2796a7a01cac72fd1b2e54ffda7f4880fcc653db5d80725a8ec6499d028f44c:1", + "utxos_info": "849f54d8426192c0270d4d240627ba157876e3601948aed0ac24e730dcab52d7:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -744,18 +744,18 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "320000000005f5e100000000182b37176e0000000000000001", + "data": "0c000000000000000100000000000000010000000000002710000000000000000100", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "b32c09ec31f80e99942a49e8e563ef9c1e9927bf60333dd19fa31ac3e20407d3", + "hash": "1424aa896a288197fe5b388aecb38a7153028017b935009a52addecd7b417bf7", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -765,44 +765,42 @@ "vout": [ { "value": 0, - "script_pub_key": "6a21e524f5d2aa51724dc2cb917715a32c0fb403ffc262da89509e09672232a35b7f90" + "script_pub_key": "6a2a7f1eff96066a74febe070c3eb2aa81f1c4c5d98bef2bd5557c30a0342cf28946cdb6fbc0562384d68e3d" }, { "value": 4999990000, - "script_pub_key": "0014a925172f0c3b4a1a72da525642cbb72152945d85" + "script_pub_key": "0014d173175d97588c462c9f66604b39d4e4f49afab0" } ], "vtxinwit": [ - "304402204908d42cc87ab3d8da5db41b62db70e5af66dacdc1f0b75b97a533e8dc49beac0220683b9115a67ee1a8d2f8d9da2d21cfbb785d2f88267e964003b476852bc23a8c01", - "03d604cba419087cd219958e0efda726c41d0eace9f1e233395345ecc412ec4f60" + "30440220144f1cbc542fdd64dbf8d07f20c026c9ccbf9c25d438030d3fc62d26a4375c4e022053d743e199518371250d5cc9fa628a8e95a5fca04380132148d0087416ebe70101", + "026a1a918fbc2c6d5fb3aa96a683c6930e932f1484f06179aa0a146e66d4d4cb40" ], "lock_time": 0, - "tx_hash": "51eed6917af775e4fdffc81b0eb1484ad7ae4677e2905bb9966e8de45f9a683d", - "tx_id": "51eed6917af775e4fdffc81b0eb1484ad7ae4677e2905bb9966e8de45f9a683d" + "tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "tx_id": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630" }, "unpacked_data": { - "message_type": "dividend", - "message_type_id": 50, + "message_type": "dispenser", + "message_type_id": 12, "message_data": { - "asset": "MYASSETA", - "quantity_per_unit": 100000000, - "dividend_asset": "XCP", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "mainchainrate": 1, + "dispenser_status": 0, + "action_address": null, + "oracle_address": null, "status": "valid", "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "divisible": true, - "locked": false - }, - "dividend_asset_info": { "divisible": true, "asset_longname": null, "description": "The Counterparty protocol native currency", "locked": true, "issuer": null }, - "quantity_per_unit_normalized": "1.00000000" + "give_quantity_normalized": "0.00000001", + "escrow_quantity_normalized": "0.00010000" } }, "btc_amount_normalized": "0.00000000" @@ -810,18 +808,18 @@ }, "/v2/transactions//info": { "result": { - "source": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710802bb48e36a1ca3ac00f4cca764c8517130910023b", + "data": "020000000000000001000000000000271080b964d3e562cdc29be80c17fb47d0461efe1c5a5d", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "bfb7a31c469adf55dc75f4580897faed626fa040638110b72222476e14021543", + "hash": "712bf6e41f93de319d30ed2327a2414a0b550c37986ab107d7ea2599c0a8bece", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -831,20 +829,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2e5ed643cfc4008523703dbe324bdac24ccc3ec74488540cc07be638b49422cb936f7a28089f08c150def9df413636" + "script_pub_key": "6a2e6d3a458d1347892ccc7e75e210f83acd3a7d8f9a796dcaaed2a363a248d9933ca12a57050cdcb4319a629f938c78" }, { "value": 4999955000, - "script_pub_key": "0014cef2d65b27e2f1482b387d3e4386a2ca6329bcf4" + "script_pub_key": "0014bf13d9c76ee760db64d132b5dc3f99ed263282ec" } ], "vtxinwit": [ - "304402201f5b176f965563fdca6391123784ce7dc1a04fd3dd1e0be402f3dbbdeb5a9a27022016d7e68c570f226f9b219f90f20e52710796c0bff18abe80562b6abf3055094c01", - "03d567dfae416686ae4bbcce1b4951ec2d90fe5aefdf519bcb49858e2a85509e4e" + "30440220573cb018bcc6a86c4ee17cc495742e03d5bf417dacf17d2b6e02a7a944546cd50220409350c75e8554a6d9a20bbf39bfe2036b75d43da562dafcfeee87b498b67f0701", + "02c6afedba8a0914a50ae14060542f470e81757a82ea2a2aba3920c325680b2245" ], "lock_time": 0, - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", - "tx_id": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a" + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_id": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836" }, "unpacked_data": { "message_type": "enhanced_send", @@ -852,7 +850,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "memo": null, "asset_info": { "divisible": true, @@ -879,17 +877,17 @@ "/v2/transactions/": { "result": { "tx_index": 62, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_hash": "6cc2b82f06aeb0c72e06479a6b4c738aa8b77e6f9950befce25b29af7462b71a", - "block_time": 1729328997, - "source": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", - "destination": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "block_hash": "6507d71596a5bde486e1a5c1e33be2c96c037acf161f1c5cb41cd6e966e2d3a2", + "block_time": 1729416251, + "source": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "destination": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1:1 5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", + "utxos_info": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1 9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -904,17 +902,17 @@ "/v2/transactions/": { "result": { "tx_index": 62, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_hash": "6cc2b82f06aeb0c72e06479a6b4c738aa8b77e6f9950befce25b29af7462b71a", - "block_time": 1729328997, - "source": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", - "destination": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "block_hash": "6507d71596a5bde486e1a5c1e33be2c96c037acf161f1c5cb41cd6e966e2d3a2", + "block_time": 1729416251, + "source": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "destination": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1:1 5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", + "utxos_info": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1 9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -933,12 +931,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62 }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 }, { "event_index": 561, @@ -947,14 +945,14 @@ "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "destination": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b", - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -965,9 +963,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 }, { "event_index": 560, @@ -976,9 +974,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "status": 0, - "tx_hash": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b", + "tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", "asset_info": { "divisible": true, "asset_longname": null, @@ -988,24 +986,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -1015,9 +1013,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 }, { "event_index": 558, @@ -1025,14 +1023,14 @@ "params": { "asset": "XCP", "block_index": 196, - "destination": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", + "destination": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", "msg_index": 1, "quantity": 1500000000, - "source": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1:1", + "source": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", "status": "valid", - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -1042,9 +1040,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 } ], "next_cursor": 557, @@ -1057,12 +1055,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62 }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 }, { "event_index": 561, @@ -1071,14 +1069,14 @@ "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "destination": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b", - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -1089,9 +1087,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 }, { "event_index": 560, @@ -1100,9 +1098,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "status": 0, - "tx_hash": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b", + "tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", "asset_info": { "divisible": true, "asset_longname": null, @@ -1112,24 +1110,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -1139,9 +1137,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 }, { "event_index": 558, @@ -1149,14 +1147,14 @@ "params": { "asset": "XCP", "block_index": 196, - "destination": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", + "destination": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", "msg_index": 1, "quantity": 1500000000, - "source": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1:1", + "source": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", "status": "valid", - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -1166,9 +1164,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 } ], "next_cursor": 557, @@ -1178,10 +1176,10 @@ "result": [ { "tx_index": 62, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "source": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1:1", - "destination": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", + "source": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", + "destination": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -1189,7 +1187,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -1202,10 +1200,10 @@ }, { "tx_index": 62, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "source": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1:1", - "destination": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", + "source": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", + "destination": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -1213,11 +1211,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -1233,27 +1231,27 @@ { "tx_index": 62, "dispense_index": 0, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", - "destination": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "destination": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b", + "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "oracle_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "last_status_tx_hash": null, - "origin": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "origin": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1268,7 +1266,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -1289,16 +1287,16 @@ "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -1308,9 +1306,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 }, { "event_index": 557, @@ -1320,12 +1318,12 @@ "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "quantity": 1500000000, "tx_index": 62, - "utxo": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", - "utxo_address": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", - "block_time": 1729328997, + "utxo": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -1335,9 +1333,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 }, { "event_index": 554, @@ -1347,24 +1345,24 @@ "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "quantity": 1500000000, "tx_index": 62, - "utxo": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", - "utxo_address": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", - "block_time": 1729328997, + "utxo": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "block_time": 1729416251, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 } ], "next_cursor": null, @@ -1376,16 +1374,16 @@ "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -1395,9 +1393,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 }, { "event_index": 557, @@ -1407,12 +1405,12 @@ "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "quantity": 1500000000, "tx_index": 62, - "utxo": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", - "utxo_address": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", - "block_time": 1729328997, + "utxo": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -1422,9 +1420,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 }, { "event_index": 554, @@ -1434,24 +1432,24 @@ "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "quantity": 1500000000, "tx_index": 62, - "utxo": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", - "utxo_address": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", - "block_time": 1729328997, + "utxo": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "block_time": 1729416251, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 } ], "next_cursor": null, @@ -1464,7 +1462,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1474,7 +1472,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -1485,7 +1483,7 @@ "total": 97999999980, "addresses": [ { - "address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -1495,7 +1493,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -1506,7 +1504,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1516,7 +1514,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -1527,7 +1525,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1537,7 +1535,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -1548,7 +1546,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1558,7 +1556,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -1572,17 +1570,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee", + "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", "block_index": 193, - "block_hash": "09f548e451b21449feb36715f104d87137e3b88a81d8b30c5306820791308f83", - "block_time": 1729328980, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "block_hash": "4711586e156dc07bc446b0d13bd07197fb6073457f04e8c962b18601d7aab73c", + "block_time": 1729416233, + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee:1", + "utxos_info": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1618,23 +1616,23 @@ }, { "tx_index": 58, - "tx_hash": "2b0f3f831aaf9342b4b2729c9f9ae4017edf58e751e2073a2025d0a7c1d8856a", + "tx_hash": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa", "block_index": 192, - "block_hash": "5897bcdb0e687832bd9b5458582ce9d410e0c01f5ff26964538751a9e645b4db", - "block_time": 1729328976, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "block_hash": "7ed678c7467e7efadcf543e389f591346431c76c567638ba2fc748d67b102781", + "block_time": 1729416229, + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "460c2af3b2417a07ed4648e73879edfec272c01513088c21273c745f504ee68731", + "data": "460a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", "supported": true, - "utxos_info": "2b0f3f831aaf9342b4b2729c9f9ae4017edf58e751e2073a2025d0a7c1d8856a:1", + "utxos_info": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "0c2af3b2417a07ed4648e73879edfec272c01513088c21273c745f504ee68731", + "offer_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", "status": "valid" } }, @@ -1642,17 +1640,17 @@ }, { "tx_index": 57, - "tx_hash": "0c2af3b2417a07ed4648e73879edfec272c01513088c21273c745f504ee68731", + "tx_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", "block_index": 191, - "block_hash": "0826a6c8402128526d9748611755dc61663b39f77909517585100318a72b2dcc", - "block_time": 1729328972, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "block_hash": "2fb7daac12d57d03a72504b4a83dcdcf2526bf0ddd4ef79a494697e3933b3d32", + "block_time": 1729416224, + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "0c2af3b2417a07ed4648e73879edfec272c01513088c21273c745f504ee68731:1", + "utxos_info": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1688,17 +1686,17 @@ }, { "tx_index": 56, - "tx_hash": "0db25b816b9c26ff7c0412f71dd828e22496d1003d9ad2febad4f57e9edf125f", + "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", "block_index": 190, - "block_hash": "7b860b4ab990f18e77f0ef99352189936615fcc1d2c29872a12a7c154dd92cf7", - "block_time": 1729328967, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "block_hash": "49031dd5afeca85d63b74c5b576803fe4396010c7929926e9d94cfc692574922", + "block_time": 1729416220, + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a716afdc0f9ff4a325fe944cb30be8f52acc0a56802bb48e36a1ca3ac00f4cca764c8517130910023b80cef2d65b27e2f1482b387d3e4386a2ca6329bcf4400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003803ba2dced599f88fbfa5943ac7d4ab45523f9908780b964d3e562cdc29be80c17fb47d0461efe1c5a5d80bf13d9c76ee760db64d132b5dc3f99ed263282ec400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "0db25b816b9c26ff7c0412f71dd828e22496d1003d9ad2febad4f57e9edf125f:0", + "utxos_info": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1706,14 +1704,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "destination": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -1721,7 +1719,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -1740,25 +1738,25 @@ }, { "tx_index": 53, - "tx_hash": "f0f47bb2d44ffbcf2807d16bbeb95fd0d7ccba0a4666bb553e30490b0fb1ef31", + "tx_hash": "e6ca911a0b08aa83675667b9ca8e02c32aeb2da53061aba62dde2da5b66b8fe8", "block_index": 187, - "block_hash": "2ee8db9051c2041e237748fbd65fd96939e3193f4bd6b4aeed752123d2afea1f", - "block_time": 1729328944, - "source": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", - "destination": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "block_hash": "73fddac4584bdd33b80d2b73fe415da9f48d23e506dfb7ba55e3e91b4449e625", + "block_time": 1729416196, + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "destination": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "btc_amount": 2000, "fee": 10000, - "data": "0bfda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a8dc06a5357ff8379528e48e73da07324302ec9fdcfc37f03305d0f9f0cfe28d5", + "data": "0b0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da3934797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", "supported": true, - "utxos_info": "f0f47bb2d44ffbcf2807d16bbeb95fd0d7ccba0a4666bb553e30490b0fb1ef31:0", + "utxos_info": "e6ca911a0b08aa83675667b9ca8e02c32aeb2da53061aba62dde2da5b66b8fe8:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a", - "tx1_hash": "8dc06a5357ff8379528e48e73da07324302ec9fdcfc37f03305d0f9f0cfe28d5", - "order_match_id": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a_8dc06a5357ff8379528e48e73da07324302ec9fdcfc37f03305d0f9f0cfe28d5", + "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", + "tx1_hash": "34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", + "order_match_id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", "status": "valid" } }, @@ -1787,11 +1785,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "status": "open", - "tx_hash": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee", + "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", "tx_index": 59, - "block_time": 1729328980, + "block_time": 1729416233, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -1815,24 +1813,24 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee", + "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", "block_index": 193, - "block_time": 1729328980 + "block_time": 1729416233 }, { "event_index": 528, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCP", "block_index": 193, - "event": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee", + "event": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", "quantity": 1000, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1729328980, + "block_time": 1729416233, "asset_info": { "divisible": true, "asset_longname": null, @@ -1842,25 +1840,25 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee", + "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", "block_index": 193, - "block_time": 1729328980 + "block_time": 1729416233 }, { "event_index": 527, "event": "NEW_TRANSACTION", "params": { - "block_hash": "09f548e451b21449feb36715f104d87137e3b88a81d8b30c5306820791308f83", + "block_hash": "4711586e156dc07bc446b0d13bd07197fb6073457f04e8c962b18601d7aab73c", "block_index": 193, - "block_time": 1729328980, + "block_time": 1729416233, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "tx_hash": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", "tx_index": 59, - "utxos_info": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee:1", + "utxos_info": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -1892,40 +1890,40 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee", + "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", "block_index": 193, - "block_time": 1729328980 + "block_time": 1729416233 }, { "event_index": 523, "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "0c2af3b2417a07ed4648e73879edfec272c01513088c21273c745f504ee68731", - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "offer_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "status": "valid", - "tx_hash": "2b0f3f831aaf9342b4b2729c9f9ae4017edf58e751e2073a2025d0a7c1d8856a", + "tx_hash": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa", "tx_index": 58, - "block_time": 1729328976 + "block_time": 1729416229 }, - "tx_hash": "2b0f3f831aaf9342b4b2729c9f9ae4017edf58e751e2073a2025d0a7c1d8856a", + "tx_hash": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa", "block_index": 192, - "block_time": 1729328976 + "block_time": 1729416229 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCP", "block_index": 192, "calling_function": "cancel order", - "event": "0c2af3b2417a07ed4648e73879edfec272c01513088c21273c745f504ee68731", + "event": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", "quantity": 1000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1729328976, + "block_time": 1729416229, "asset_info": { "divisible": true, "asset_longname": null, @@ -1935,9 +1933,9 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "2b0f3f831aaf9342b4b2729c9f9ae4017edf58e751e2073a2025d0a7c1d8856a", + "tx_hash": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa", "block_index": 192, - "block_time": 1729328976 + "block_time": 1729416229 } ], "next_cursor": 520, @@ -1946,17 +1944,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "destination": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "memo": null, "quantity": 10000, - "source": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "status": "valid", - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "tx_index": 63, "asset_info": { "divisible": true, @@ -1967,22 +1965,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729329001.736676 + "timestamp": 1729416255.7714357 }, { - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "event": "CREDIT", "params": { - "address": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "event": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -1992,22 +1990,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729329001.736676 + "timestamp": 1729416255.7714357 }, { - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "asset": "XCP", "block_index": 196, - "event": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "event": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -2017,30 +2015,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729329001.736676 + "timestamp": 1729416255.7714357 }, { - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729329001.736676, + "block_time": 1729416255.7714357, "btc_amount": 0, - "data": "0200000000000000010000000000002710802bb48e36a1ca3ac00f4cca764c8517130910023b", + "data": "020000000000000001000000000000271080b964d3e562cdc29be80c17fb47d0461efe1c5a5d", "destination": "", "fee": 10000, - "source": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "tx_index": 63, - "utxos_info": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a:1", + "utxos_info": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "memo": null, "asset_info": { "divisible": true, @@ -2054,7 +2052,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729329001.736676 + "timestamp": 1729416255.7714357 } ], "next_cursor": null, @@ -2063,7 +2061,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2071,14 +2069,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2086,14 +2084,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -2108,7 +2106,7 @@ "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -2116,7 +2114,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -2128,7 +2126,7 @@ }, "/v2/addresses/
/balances/": { "result": { - "address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -2147,16 +2145,16 @@ "result": [ { "block_index": 192, - "address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "0c2af3b2417a07ed4648e73879edfec272c01513088c21273c745f504ee68731", + "event": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729328976, + "block_time": 1729416229, "asset_info": { "divisible": true, "asset_longname": null, @@ -2168,16 +2166,16 @@ }, { "block_index": 184, - "address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "417b7585cb70e5e9f3850385defa712ecae11bac8afe116a63861a98648f1b11", + "event": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729328864, + "block_time": 1729416128, "asset_info": { "divisible": true, "asset_longname": null, @@ -2189,20 +2187,20 @@ }, { "block_index": 161, - "address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "ad7cd24a91d670e0fb520c404cfc2fa0df0ee9a9f8bf4092b67790f6ca07c072", + "event": "bb2aa89179834fafe03acecbbade4d6fd928251f2923a59b4656957ab3685976", "tx_index": 48, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729328839, + "block_time": 1729416112, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -2210,20 +2208,20 @@ }, { "block_index": 158, - "address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "71865058eba11d6649831cdf7a6928844665cb4b60156d41fd86f75bf504d846", + "event": "d875bf5554d034912c2a9eb7d151d9f055e3135142c077fa342ce253d4b54d3e", "tx_index": 45, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729328827, + "block_time": 1729416098, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -2235,16 +2233,16 @@ "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "e630b15a8dd1629ee5d8c712ceeb4baaa1f861580e65556651bd38e7509e0463", + "event": "aebd60a74f16beb780629243965a4832b6c9e75043be78503b78cb904acba5d6", "tx_index": 39, - "utxo": "e630b15a8dd1629ee5d8c712ceeb4baaa1f861580e65556651bd38e7509e0463:1", - "utxo_address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "utxo": "aebd60a74f16beb780629243965a4832b6c9e75043be78503b78cb904acba5d6:1", + "utxo_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "confirmed": true, - "block_time": 1729328801, + "block_time": 1729416061, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -2258,16 +2256,16 @@ "result": [ { "block_index": 193, - "address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee", + "event": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729328980, + "block_time": 1729416233, "asset_info": { "divisible": true, "asset_longname": null, @@ -2279,16 +2277,16 @@ }, { "block_index": 191, - "address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "0c2af3b2417a07ed4648e73879edfec272c01513088c21273c745f504ee68731", + "event": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729328972, + "block_time": 1729416224, "asset_info": { "divisible": true, "asset_longname": null, @@ -2300,16 +2298,16 @@ }, { "block_index": 190, - "address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "0db25b816b9c26ff7c0412f71dd828e22496d1003d9ad2febad4f57e9edf125f", + "event": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729328967, + "block_time": 1729416220, "asset_info": { "divisible": true, "asset_longname": null, @@ -2321,20 +2319,20 @@ }, { "block_index": 190, - "address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "0db25b816b9c26ff7c0412f71dd828e22496d1003d9ad2febad4f57e9edf125f", + "event": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729328967, + "block_time": 1729416220, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -2342,16 +2340,16 @@ }, { "block_index": 185, - "address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a", + "event": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", "tx_index": 51, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729328936, + "block_time": 1729416187, "asset_info": { "divisible": true, "asset_longname": null, @@ -2374,9 +2372,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "d643f35218e54f20347aca5fafebc46a8b2689364473bfb9cef174c653027a36", + "tx_hash": "674a65a64a4826a0b0d490aca3e07b7fd65869b1649206fa97265a826ed95b11", "block_index": 137, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2384,7 +2382,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729328726, + "block_time": 1729415995, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2395,14 +2393,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "2d45383fabd48d4fbd09bc4498025f4b86a70ee4d22bf96330956ae8c88138b1", + "tx_hash": "55cc024ddcd9ac23b7cf78f81f744c3f8b3fd177ee079fc992c75f53faafde70", "block_index": 112, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1729328622, + "block_time": 1729415886, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2414,10 +2412,10 @@ "result": [ { "tx_index": 56, - "tx_hash": "0db25b816b9c26ff7c0412f71dd828e22496d1003d9ad2febad4f57e9edf125f", + "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", "block_index": 190, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2425,7 +2423,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328967, + "block_time": 1729416220, "asset_info": { "divisible": true, "asset_longname": null, @@ -2438,10 +2436,10 @@ }, { "tx_index": 56, - "tx_hash": "0db25b816b9c26ff7c0412f71dd828e22496d1003d9ad2febad4f57e9edf125f", + "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", "block_index": 190, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2449,11 +2447,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328967, + "block_time": 1729416220, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -2462,10 +2460,10 @@ }, { "tx_index": 56, - "tx_hash": "0db25b816b9c26ff7c0412f71dd828e22496d1003d9ad2febad4f57e9edf125f", + "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", "block_index": 190, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2473,11 +2471,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328967, + "block_time": 1729416220, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -2486,10 +2484,10 @@ }, { "tx_index": 39, - "tx_hash": "e630b15a8dd1629ee5d8c712ceeb4baaa1f861580e65556651bd38e7509e0463", + "tx_hash": "aebd60a74f16beb780629243965a4832b6c9e75043be78503b78cb904acba5d6", "block_index": 152, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "e630b15a8dd1629ee5d8c712ceeb4baaa1f861580e65556651bd38e7509e0463:1", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "aebd60a74f16beb780629243965a4832b6c9e75043be78503b78cb904acba5d6:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2497,11 +2495,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328801, + "block_time": 1729416061, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -2510,10 +2508,10 @@ }, { "tx_index": 36, - "tx_hash": "65ab2c9382c813a54d863d7d2f4a4a1864fb6b2365a170380c46ac6b64534ee9", + "tx_hash": "29164d2e5e97a484170fd199cd18fb9fc6798b6ac00213c37ac4ae9dbc322b91", "block_index": 149, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "6caf6f14d5c240964758a1664962a0d7c7a904a5889b4cdcde5e3226232613f1:1", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "2df6cb6457b25d97b2a3c828c2ccdf94125693a11ccd1385a63069772b1df123:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2521,11 +2519,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328788, + "block_time": 1729416048, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -2540,10 +2538,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "b13446e62c4017231e1ac95bfb722cf296127f85ebbb20d2fbf187c4bf74dce3", + "tx_hash": "e755d7b8872d3d225da4d98c83eb4694a52915378b4b246272aff784b230d963", "block_index": 151, - "source": "735e2f5c7e85a8477cf81a6916a9e0f65e434d97b273863af40b880a489e4b43:0", - "destination": "bcrt1qg0yp2a86t6cxyuw2efl4ceq3tjecjled3vscyk", + "source": "cdcf917d341dcb5152a735abf3e6fbe5c3f3df03e327bdacc1f0c3f858ddbbeb:0", + "destination": "bcrt1qkgcujj6uea6hshreznk6fw8e22utgsdyqd02hg", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2551,11 +2549,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328796, + "block_time": 1729416057, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -2570,10 +2568,10 @@ "result": [ { "tx_index": 56, - "tx_hash": "0db25b816b9c26ff7c0412f71dd828e22496d1003d9ad2febad4f57e9edf125f", + "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", "block_index": 190, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2581,11 +2579,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328967, + "block_time": 1729416220, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -2594,10 +2592,10 @@ }, { "tx_index": 56, - "tx_hash": "0db25b816b9c26ff7c0412f71dd828e22496d1003d9ad2febad4f57e9edf125f", + "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", "block_index": 190, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2605,11 +2603,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328967, + "block_time": 1729416220, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -2618,10 +2616,10 @@ }, { "tx_index": 39, - "tx_hash": "e630b15a8dd1629ee5d8c712ceeb4baaa1f861580e65556651bd38e7509e0463", + "tx_hash": "aebd60a74f16beb780629243965a4832b6c9e75043be78503b78cb904acba5d6", "block_index": 152, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "e630b15a8dd1629ee5d8c712ceeb4baaa1f861580e65556651bd38e7509e0463:1", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "aebd60a74f16beb780629243965a4832b6c9e75043be78503b78cb904acba5d6:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2629,11 +2627,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328801, + "block_time": 1729416061, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -2642,10 +2640,10 @@ }, { "tx_index": 36, - "tx_hash": "65ab2c9382c813a54d863d7d2f4a4a1864fb6b2365a170380c46ac6b64534ee9", + "tx_hash": "29164d2e5e97a484170fd199cd18fb9fc6798b6ac00213c37ac4ae9dbc322b91", "block_index": 149, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "6caf6f14d5c240964758a1664962a0d7c7a904a5889b4cdcde5e3226232613f1:1", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "2df6cb6457b25d97b2a3c828c2ccdf94125693a11ccd1385a63069772b1df123:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2653,11 +2651,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328788, + "block_time": 1729416048, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -2672,10 +2670,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "b13446e62c4017231e1ac95bfb722cf296127f85ebbb20d2fbf187c4bf74dce3", + "tx_hash": "e755d7b8872d3d225da4d98c83eb4694a52915378b4b246272aff784b230d963", "block_index": 151, - "source": "735e2f5c7e85a8477cf81a6916a9e0f65e434d97b273863af40b880a489e4b43:0", - "destination": "bcrt1qg0yp2a86t6cxyuw2efl4ceq3tjecjled3vscyk", + "source": "cdcf917d341dcb5152a735abf3e6fbe5c3f3df03e327bdacc1f0c3f858ddbbeb:0", + "destination": "bcrt1qkgcujj6uea6hshreznk6fw8e22utgsdyqd02hg", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2683,11 +2681,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328796, + "block_time": 1729416057, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -2702,9 +2700,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542", + "tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2713,7 +2711,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2723,7 +2721,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729328743, + "block_time": 1729416013, "asset_info": { "divisible": true, "asset_longname": null, @@ -2744,9 +2742,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542", + "tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2755,7 +2753,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2765,7 +2763,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729328743, + "block_time": 1729416013, "asset_info": { "divisible": true, "asset_longname": null, @@ -2785,19 +2783,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "a9a3578379153ca360a66660c00a998da120a92a2b8be15ae1b7ae80d2787a93", + "tx_hash": "77f26b77b205be83c57e46f437168ffa54afdd0f8fe2855da90317153ec41ae4", "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542", + "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2805,7 +2803,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2820,7 +2818,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729328743, + "block_time": 1729416013, "asset_info": { "divisible": true, "asset_longname": null, @@ -2834,19 +2832,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2596a5f3d099d83b293e6ab485266586439d3362b1dd46f02ea075eb38431b53", + "tx_hash": "ea65dde6c36bf0ee93197974ace92a2b2a68a0821b6f382104f98419c6ffe544", "block_index": 140, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542", + "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2854,7 +2852,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2869,7 +2867,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729328739, + "block_time": 1729416009, "asset_info": { "divisible": true, "asset_longname": null, @@ -2889,19 +2887,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "a9a3578379153ca360a66660c00a998da120a92a2b8be15ae1b7ae80d2787a93", + "tx_hash": "77f26b77b205be83c57e46f437168ffa54afdd0f8fe2855da90317153ec41ae4", "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542", + "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2909,7 +2907,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2924,7 +2922,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729328743, + "block_time": 1729416013, "asset_info": { "divisible": true, "asset_longname": null, @@ -2938,19 +2936,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2596a5f3d099d83b293e6ab485266586439d3362b1dd46f02ea075eb38431b53", + "tx_hash": "ea65dde6c36bf0ee93197974ace92a2b2a68a0821b6f382104f98419c6ffe544", "block_index": 140, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542", + "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2958,7 +2956,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2973,7 +2971,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729328739, + "block_time": 1729416009, "asset_info": { "divisible": true, "asset_longname": null, @@ -2993,19 +2991,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "a9a3578379153ca360a66660c00a998da120a92a2b8be15ae1b7ae80d2787a93", + "tx_hash": "77f26b77b205be83c57e46f437168ffa54afdd0f8fe2855da90317153ec41ae4", "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542", + "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3013,7 +3011,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3028,7 +3026,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729328743, + "block_time": 1729416013, "asset_info": { "divisible": true, "asset_longname": null, @@ -3042,19 +3040,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2596a5f3d099d83b293e6ab485266586439d3362b1dd46f02ea075eb38431b53", + "tx_hash": "ea65dde6c36bf0ee93197974ace92a2b2a68a0821b6f382104f98419c6ffe544", "block_index": 140, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542", + "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3062,7 +3060,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3077,7 +3075,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729328739, + "block_time": 1729416009, "asset_info": { "divisible": true, "asset_longname": null, @@ -3097,19 +3095,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "a9a3578379153ca360a66660c00a998da120a92a2b8be15ae1b7ae80d2787a93", + "tx_hash": "77f26b77b205be83c57e46f437168ffa54afdd0f8fe2855da90317153ec41ae4", "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542", + "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3117,7 +3115,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3132,7 +3130,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729328743, + "block_time": 1729416013, "asset_info": { "divisible": true, "asset_longname": null, @@ -3146,19 +3144,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2596a5f3d099d83b293e6ab485266586439d3362b1dd46f02ea075eb38431b53", + "tx_hash": "ea65dde6c36bf0ee93197974ace92a2b2a68a0821b6f382104f98419c6ffe544", "block_index": 140, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542", + "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3166,7 +3164,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3181,7 +3179,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729328739, + "block_time": 1729416009, "asset_info": { "divisible": true, "asset_longname": null, @@ -3200,16 +3198,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "75becfa6beb8ad5af35ed1fb85254b67d1fab4fb19f4e745446677c859461e60", + "tx_hash": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", "block_index": 194, - "source": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", - "destination": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729328983, + "block_time": 1729416237, "fee_paid_normalized": "0.00600000" } ], @@ -3220,14 +3218,14 @@ "result": [ { "tx_index": 48, - "tx_hash": "ad7cd24a91d670e0fb520c404cfc2fa0df0ee9a9f8bf4092b67790f6ca07c072", + "tx_hash": "bb2aa89179834fafe03acecbbade4d6fd928251f2923a59b4656957ab3685976", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "transfer": false, "callable": false, "call_date": 0, @@ -3242,20 +3240,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729328839, + "block_time": 1729416112, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "1cfc0723b6657889bf8b79917a060d28f6d6580512ca510c795b1b8d119fbf8b", + "tx_hash": "55efb0e7632d7d4e2918c6d68f1a68cf6ebb205b5bf25194db11afe19f288dc0", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "transfer": false, "callable": false, "call_date": 0, @@ -3270,20 +3268,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729328835, + "block_time": 1729416107, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "4fb72a16283af8eaa3aef5a92ab6501220aa8af621848fcd8fa6db58b588c38b", + "tx_hash": "915196486b240c228f8f48b8bc894be2372a5f29da06926a1aad6050d298f626", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "transfer": false, "callable": false, "call_date": 0, @@ -3298,20 +3296,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729328831, + "block_time": 1729416103, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "71865058eba11d6649831cdf7a6928844665cb4b60156d41fd86f75bf504d846", + "tx_hash": "d875bf5554d034912c2a9eb7d151d9f055e3135142c077fa342ce253d4b54d3e", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "transfer": false, "callable": false, "call_date": 0, @@ -3326,20 +3324,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729328827, + "block_time": 1729416098, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "f3cd8ee918135e3b1b1660a69a127e57520bdc3a177d301e4f4786d619538ba5", + "tx_hash": "68455c81e91976b50973996dd5e3b1bafeb9009b2ca1a238e4a1897afbef2d46", "msg_index": 0, "block_index": 155, "asset": "A95428958968845068", "quantity": 0, "divisible": true, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "transfer": false, "callable": false, "call_date": 0, @@ -3354,7 +3352,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729328813, + "block_time": 1729416085, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -3368,8 +3366,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 10000000000, @@ -3377,16 +3375,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729328827, - "last_issuance_block_time": 1729328835, + "first_issuance_block_time": 1729416098, + "last_issuance_block_time": 1729416107, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 100000000000, @@ -3394,16 +3392,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729328773, - "last_issuance_block_time": 1729328773, + "first_issuance_block_time": 1729416044, + "last_issuance_block_time": 1729416044, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 40, @@ -3411,16 +3409,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729328718, - "last_issuance_block_time": 1729328722, + "first_issuance_block_time": 1729415987, + "last_issuance_block_time": 1729415991, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 19, @@ -3428,16 +3426,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729328702, - "last_issuance_block_time": 1729328714, + "first_issuance_block_time": 1729415969, + "last_issuance_block_time": 1729415982, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 0, @@ -3445,8 +3443,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729328682, - "last_issuance_block_time": 1729328697, + "first_issuance_block_time": 1729415948, + "last_issuance_block_time": 1729415965, "supply_normalized": "0.00000000" } ], @@ -3459,8 +3457,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 10000000000, @@ -3468,16 +3466,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729328827, - "last_issuance_block_time": 1729328835, + "first_issuance_block_time": 1729416098, + "last_issuance_block_time": 1729416107, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 100000000000, @@ -3485,16 +3483,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729328773, - "last_issuance_block_time": 1729328773, + "first_issuance_block_time": 1729416044, + "last_issuance_block_time": 1729416044, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 40, @@ -3502,16 +3500,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729328718, - "last_issuance_block_time": 1729328722, + "first_issuance_block_time": 1729415987, + "last_issuance_block_time": 1729415991, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 19, @@ -3519,16 +3517,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729328702, - "last_issuance_block_time": 1729328714, + "first_issuance_block_time": 1729415969, + "last_issuance_block_time": 1729415982, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 0, @@ -3536,8 +3534,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729328682, - "last_issuance_block_time": 1729328697, + "first_issuance_block_time": 1729415948, + "last_issuance_block_time": 1729415965, "supply_normalized": "0.00000000" } ], @@ -3550,8 +3548,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 10000000000, @@ -3559,16 +3557,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729328827, - "last_issuance_block_time": 1729328835, + "first_issuance_block_time": 1729416098, + "last_issuance_block_time": 1729416107, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 100000000000, @@ -3576,16 +3574,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729328773, - "last_issuance_block_time": 1729328773, + "first_issuance_block_time": 1729416044, + "last_issuance_block_time": 1729416044, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 40, @@ -3593,16 +3591,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729328718, - "last_issuance_block_time": 1729328722, + "first_issuance_block_time": 1729415987, + "last_issuance_block_time": 1729415991, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 19, @@ -3610,16 +3608,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729328702, - "last_issuance_block_time": 1729328714, + "first_issuance_block_time": 1729415969, + "last_issuance_block_time": 1729415982, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 0, @@ -3627,8 +3625,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729328682, - "last_issuance_block_time": 1729328697, + "first_issuance_block_time": 1729415948, + "last_issuance_block_time": 1729415965, "supply_normalized": "0.00000000" } ], @@ -3639,17 +3637,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee", + "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", "block_index": 193, - "block_hash": "09f548e451b21449feb36715f104d87137e3b88a81d8b30c5306820791308f83", - "block_time": 1729328980, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "block_hash": "4711586e156dc07bc446b0d13bd07197fb6073457f04e8c962b18601d7aab73c", + "block_time": 1729416233, + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee:1", + "utxos_info": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3685,23 +3683,23 @@ }, { "tx_index": 58, - "tx_hash": "2b0f3f831aaf9342b4b2729c9f9ae4017edf58e751e2073a2025d0a7c1d8856a", + "tx_hash": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa", "block_index": 192, - "block_hash": "5897bcdb0e687832bd9b5458582ce9d410e0c01f5ff26964538751a9e645b4db", - "block_time": 1729328976, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "block_hash": "7ed678c7467e7efadcf543e389f591346431c76c567638ba2fc748d67b102781", + "block_time": 1729416229, + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "460c2af3b2417a07ed4648e73879edfec272c01513088c21273c745f504ee68731", + "data": "460a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", "supported": true, - "utxos_info": "2b0f3f831aaf9342b4b2729c9f9ae4017edf58e751e2073a2025d0a7c1d8856a:1", + "utxos_info": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "0c2af3b2417a07ed4648e73879edfec272c01513088c21273c745f504ee68731", + "offer_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", "status": "valid" } }, @@ -3709,17 +3707,17 @@ }, { "tx_index": 57, - "tx_hash": "0c2af3b2417a07ed4648e73879edfec272c01513088c21273c745f504ee68731", + "tx_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", "block_index": 191, - "block_hash": "0826a6c8402128526d9748611755dc61663b39f77909517585100318a72b2dcc", - "block_time": 1729328972, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "block_hash": "2fb7daac12d57d03a72504b4a83dcdcf2526bf0ddd4ef79a494697e3933b3d32", + "block_time": 1729416224, + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "0c2af3b2417a07ed4648e73879edfec272c01513088c21273c745f504ee68731:1", + "utxos_info": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3755,17 +3753,17 @@ }, { "tx_index": 56, - "tx_hash": "0db25b816b9c26ff7c0412f71dd828e22496d1003d9ad2febad4f57e9edf125f", + "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", "block_index": 190, - "block_hash": "7b860b4ab990f18e77f0ef99352189936615fcc1d2c29872a12a7c154dd92cf7", - "block_time": 1729328967, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "block_hash": "49031dd5afeca85d63b74c5b576803fe4396010c7929926e9d94cfc692574922", + "block_time": 1729416220, + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a716afdc0f9ff4a325fe944cb30be8f52acc0a56802bb48e36a1ca3ac00f4cca764c8517130910023b80cef2d65b27e2f1482b387d3e4386a2ca6329bcf4400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003803ba2dced599f88fbfa5943ac7d4ab45523f9908780b964d3e562cdc29be80c17fb47d0461efe1c5a5d80bf13d9c76ee760db64d132b5dc3f99ed263282ec400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "0db25b816b9c26ff7c0412f71dd828e22496d1003d9ad2febad4f57e9edf125f:0", + "utxos_info": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3773,14 +3771,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "destination": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -3788,7 +3786,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3807,17 +3805,17 @@ }, { "tx_index": 51, - "tx_hash": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a", + "tx_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", "block_index": 185, - "block_hash": "40fed58069ef71518593ea46c6f860d1e1b52bc1b0f040bbed939171bb89acc9", - "block_time": 1729328936, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "block_hash": "7022f01d2361762ff7500ea66fcef11c67e5bdb88379284af1dbec2b0c29efee", + "block_time": 1729416187, + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a:1", + "utxos_info": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3859,20 +3857,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "51eed6917af775e4fdffc81b0eb1484ad7ae4677e2905bb9966e8de45f9a683d", + "tx_hash": "0c95334ce0b328f2ff4e1e44c4e96d503ba60b7b2b1fbabeabef5f3ac971b288", "block_index": 154, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729328809, + "block_time": 1729416070, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -3894,9 +3892,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "417b7585cb70e5e9f3850385defa712ecae11bac8afe116a63861a98648f1b11", + "tx_hash": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8", "block_index": 184, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3911,7 +3909,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729328864, + "block_time": 1729416128, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3937,9 +3935,9 @@ }, { "tx_index": 51, - "tx_hash": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a", + "tx_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", "block_index": 188, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -3954,7 +3952,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729328949, + "block_time": 1729416201, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3980,9 +3978,9 @@ }, { "tx_index": 57, - "tx_hash": "0c2af3b2417a07ed4648e73879edfec272c01513088c21273c745f504ee68731", + "tx_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", "block_index": 192, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3997,7 +3995,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729328976, + "block_time": 1729416229, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4023,9 +4021,9 @@ }, { "tx_index": 59, - "tx_hash": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee", + "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", "block_index": 193, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4040,7 +4038,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729328980, + "block_time": 1729416233, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4071,10 +4069,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "f3cd8ee918135e3b1b1660a69a127e57520bdc3a177d301e4f4786d619538ba5", + "tx_hash": "68455c81e91976b50973996dd5e3b1bafeb9009b2ca1a238e4a1897afbef2d46", "tx_index": 42, "block_index": 155, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4099,13 +4097,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729328813 + "block_time": 1729416085 }, { - "tx_hash": "c34eba9dc88240af07608224d29e4ac423e6b2a0fb83407b5a51c795fdef2d81", + "tx_hash": "251c310af851cba2ce4a58932e7cb803aeb6a9f7a55bac9bbf688ba85a48ef28", "tx_index": 22, "block_index": 135, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4130,13 +4128,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729328718 + "block_time": 1729415987 }, { - "tx_hash": "6b9abfb51341a47410e2295ff273b93864f6753a41c256e3f388ab91bc778c6b", + "tx_hash": "dbd38cf37e8f0c24ae54d5b6169437c48f55fb84fc0583aa0d79858c0f9a69fc", "tx_index": 18, "block_index": 131, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4161,13 +4159,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729328702 + "block_time": 1729415969 }, { - "tx_hash": "c625b42b58b9d8785ff1002e4c734b8e720b7fc7cef912557d0c76850bd363f4", + "tx_hash": "9f887ea5403be9aa383402f97d0e8f856de8951ba3327060b3af17321c9478ad", "tx_index": 14, "block_index": 130, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4192,13 +4190,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729328697 + "block_time": 1729415965 }, { - "tx_hash": "655c05dbe746884a61caffb235cfb4afe80cda0d2858b276eae7ca9c493dd775", + "tx_hash": "bb813d64db8f65171084ffa83e7128316586ef0283b09807d288d02a0b8e58da", "tx_index": 10, "block_index": 125, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4223,7 +4221,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729328677 + "block_time": 1729415943 } ], "next_cursor": null, @@ -4232,127 +4230,127 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "2015c6155642a55cbbd4b5fecfe861da6677293d1bc2d945a04daacd6ab34357", + "tx_hash": "6b50dfb9f0288a39497978e107102a20fca9269f60c348a7d3252a97951c3dfa", "tx_index": 23, "block_index": 136, - "source": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", - "fairminter_tx_hash": "c34eba9dc88240af07608224d29e4ac423e6b2a0fb83407b5a51c795fdef2d81", + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "fairminter_tx_hash": "251c310af851cba2ce4a58932e7cb803aeb6a9f7a55bac9bbf688ba85a48ef28", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729328722, + "block_time": 1729415991, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false } }, { - "tx_hash": "5bfc717ef35a3dd9ac3bb684df223e060c500c009cb5db4d186ff1138f7d21c5", + "tx_hash": "ec08c12c9bbaea508612d23ebc7653d37f4f177f216252e62a801b65f3858840", "tx_index": 21, "block_index": 134, - "source": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", - "fairminter_tx_hash": "6b9abfb51341a47410e2295ff273b93864f6753a41c256e3f388ab91bc778c6b", + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "fairminter_tx_hash": "dbd38cf37e8f0c24ae54d5b6169437c48f55fb84fc0583aa0d79858c0f9a69fc", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729328714, + "block_time": 1729415982, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false } }, { - "tx_hash": "aa8be38061e554450ba0cc35f4763bc69f8fc75e065fa603e0043a358a8841a3", + "tx_hash": "187f59a0c410f68e7a905a52efc5ca6aa0cd19f9a082e30ab709d107d8abc5a8", "tx_index": 20, "block_index": 133, - "source": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", - "fairminter_tx_hash": "6b9abfb51341a47410e2295ff273b93864f6753a41c256e3f388ab91bc778c6b", + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "fairminter_tx_hash": "dbd38cf37e8f0c24ae54d5b6169437c48f55fb84fc0583aa0d79858c0f9a69fc", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729328710, + "block_time": 1729415978, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false } }, { - "tx_hash": "424a4b59501e05a9c0623a919c71ef298857ddb9d57d40ab2ee817b8fddebf2d", + "tx_hash": "77cc9d1e2521b94e0c146a22a59691f4c8bc6df0a58ab18d594ecef174baa7ae", "tx_index": 19, "block_index": 132, - "source": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", - "fairminter_tx_hash": "6b9abfb51341a47410e2295ff273b93864f6753a41c256e3f388ab91bc778c6b", + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "fairminter_tx_hash": "dbd38cf37e8f0c24ae54d5b6169437c48f55fb84fc0583aa0d79858c0f9a69fc", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729328706, + "block_time": 1729415974, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false } }, { - "tx_hash": "aa951150a3357485b602b953f102e3bd1f4e42b4902389e48fa0ca17e8b4c778", + "tx_hash": "7897fbc67e359846b7309c1dca579ddb55834c4fb67acfe598508f095ce093a2", "tx_index": 15, "block_index": 127, - "source": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", - "fairminter_tx_hash": "c625b42b58b9d8785ff1002e4c734b8e720b7fc7cef912557d0c76850bd363f4", + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "fairminter_tx_hash": "9f887ea5403be9aa383402f97d0e8f856de8951ba3327060b3af17321c9478ad", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729328686, + "block_time": 1729415952, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false } }, { - "tx_hash": "b68cd5ba32058d09a4cec3391df2638fef0e10eaad112adf8c5a47c96bc2251f", + "tx_hash": "be65810c28d4a6e23b5459a5aff489b71f797fee7c65043b9e917ebbc5897802", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", - "fairminter_tx_hash": "655c05dbe746884a61caffb235cfb4afe80cda0d2858b276eae7ca9c493dd775", + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "fairminter_tx_hash": "bb813d64db8f65171084ffa83e7128316586ef0283b09807d288d02a0b8e58da", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729328669, + "block_time": 1729415935, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false } @@ -4364,22 +4362,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "b68cd5ba32058d09a4cec3391df2638fef0e10eaad112adf8c5a47c96bc2251f", + "tx_hash": "be65810c28d4a6e23b5459a5aff489b71f797fee7c65043b9e917ebbc5897802", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", - "fairminter_tx_hash": "655c05dbe746884a61caffb235cfb4afe80cda0d2858b276eae7ca9c493dd775", + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "fairminter_tx_hash": "bb813d64db8f65171084ffa83e7128316586ef0283b09807d288d02a0b8e58da", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729328669, + "block_time": 1729415935, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false } @@ -4394,7 +4392,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4406,7 +4404,7 @@ "btc_out": 0, "btc_change": 4999985819, "btc_fee": 14181, - "rawtransaction": "02000000000101c084ae11d980b5e424d10ee2bfa51b3ecc9cafd04ef8d20d00b50a99f9e976d700000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffff0200000000000000002b6a2993931f3369cb73aec2eb6db5b12790f05d56eaefe2590efb8f98d77df94661f4cdf0ad9e656fe876299bba052a01000000160014a925172f0c3b4a1a72da525642cbb72152945d8502000000000000", + "rawtransaction": "0200000000010103c53ce48053eef01253ac42a4cfc1dacea9590d7f5ca642eb72bc386212974900000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff0200000000000000002b6a29621e6b3dde212622c0a459afe4fb71be54d2c0c406189e8b0b32e7c8ffdfba33ff8b1342e906cf1e009bba052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4424,23 +4422,23 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "order_match_id": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a_3ac7858b4e6053388907f40c38e43800f7856d7dd4d00aa2a49e1bc8cdb2c407" + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "order_match_id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2" }, "name": "btcpay", - "data": "434e5452505254590bfda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a3ac7858b4e6053388907f40c38e43800f7856d7dd4d00aa2a49e1bc8cdb2c407", + "data": "434e5452505254590b0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999978951, "btc_fee": 18049, - "rawtransaction": "0200000000010150e36844cd693e4ee08916d95df6f4121210a7499305a4f32eab4908c2044f6300000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffff03b80b000000000000160014a925172f0c3b4a1a72da525642cbb72152945d8500000000000000004b6a497faa82be48814ec1be3c2ef3db6aa0fd833805dbfc06c927e5e4b62906d05a88170e013f3f7b31a22d49817c2b0ce5383e0edfab6dee7d6eed75f16332b74ebd85d8670e1857ece035c79f052a01000000160014a925172f0c3b4a1a72da525642cbb72152945d8502000000000000", + "rawtransaction": "0200000000010181dba1d05d6e406dcd50aaec18beffe131d414c55d4dd3d1a51ccfef8b1a339c00000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff03b80b000000000000160014d173175d97588c462c9f66604b39d4e4f49afab000000000000000004b6a4956141941b0b8a0a913a1c95323bd320cbfeed8410c2b57aa1846c8f23c8ad83e51ab7f9f027619783855f567635718ce30ac25e0bacf1962d72093b604d6a990da52bbfdeb2bd53186c79f052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a", - "tx1_hash": "3ac7858b4e6053388907f40c38e43800f7856d7dd4d00aa2a49e1bc8cdb2c407", - "order_match_id": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a_3ac7858b4e6053388907f40c38e43800f7856d7dd4d00aa2a49e1bc8cdb2c407", + "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", + "tx1_hash": "e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", + "order_match_id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", "status": "valid" } } @@ -4449,7 +4447,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "quantity": 1000, "overburn": false }, @@ -4459,27 +4457,27 @@ "btc_out": 1000, "btc_change": 4999985815, "btc_fee": 13185, - "rawtransaction": "02000000000101df508093420c5e96d0177f1de0e06ba46c3481112c29774f5bbf2837ef0a103a00000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a01000000160014a925172f0c3b4a1a72da525642cbb72152945d8502000000000000" + "rawtransaction": "020000000001017f6caa2830d0e4ce5780f9a7c48d89867206aeb77f898b2d24f861d1a198381f00000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "offer_hash": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee" + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "offer_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687" }, "name": "cancel", - "data": "434e5452505254594672cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee", + "data": "434e545250525459466eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985819, "btc_fee": 14181, - "rawtransaction": "02000000000101beb507ca65167623fc55358913d2d1eae96abd16d8c01c6d4821e99ee771d3bd00000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffff0200000000000000002b6a29e5438f1f03cb0930498570ac0ef631a1c9f771e43f2fe03dd7e7771ae838ba5fae292ac05c05979f2d9bba052a01000000160014a925172f0c3b4a1a72da525642cbb72152945d8502000000000000", + "rawtransaction": "02000000000101fe1d219bc9a58fae33f85abbfe1c2e5c6f81800c082c9c9b93a747af11cee39900000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff0200000000000000002b6a29a7b79294aaa962f1893d4d7842d5fcd643ab65a66d472051bb7fda1fc143ea237b84b03aeff31408309bba052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee", + "offer_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", "status": "valid" } } @@ -4488,7 +4486,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4507,7 +4505,7 @@ "btc_out": 0, "btc_change": 4999986346, "btc_fee": 13654, - "rawtransaction": "02000000000101265d309439ea988d9dec2194decfb925c59e43ed54c7a02218c41df8129ad5d400000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffff020000000000000000226a201766a58174cb0405806ad433bc87613d951570ef441fa4e70d65eef4244fc6a5aabc052a01000000160014a925172f0c3b4a1a72da525642cbb72152945d8502000000000000", + "rawtransaction": "02000000000101ad3e0a3168b60c3c0f9515e21e0b5e2b57d781da219a252a933562c768306e9f00000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff020000000000000000226a20274e41fbee760596790018e0f693d806746d1e0dedfb8f93a62f07d2075b6afdaabc052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -4523,7 +4521,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qu2jyjw0ac8f5tpuf9frh35m7saw6rmplryv7aa", + "source": "bcrt1qpm0krm9adpcqdeu2tmuzwdl325fr9768g564cg", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4547,7 +4545,7 @@ "btc_out": 0, "btc_change": 4949955760, "btc_fee": 14240, - "rawtransaction": "020000000001011eb66a675220829b474137564bfd8c3b9c0e82c961b3a0f16e1d5256487eea1f02000000160014e2a44939fdc1d34587892a4778d37e875da1ec3fffffffff0200000000000000002c6a2acdf34675cbdeb9c2f3c1c2fe99fe6945b00a42e362dbd2b91901a8b2e30e1e18d847688bb30557894784b0540a2701000000160014e2a44939fdc1d34587892a4778d37e875da1ec3f02000000000000", + "rawtransaction": "02000000000101646bccb479cf590cc4e036bef000b0be84b1470859ea9fa4cbde76577125c243020000001600140edf61ecbd687006e78a5ef82737f1551232fb47ffffffff0200000000000000002c6a2a5943c618172e6e00a348295443d2e7f0f85fd8d92c5c0ceed2824a7ad3210a60cd2dc5a9f945829f4275b0540a27010000001600140edf61ecbd687006e78a5ef82737f1551232fb4702000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -4569,14 +4567,14 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -4595,7 +4593,7 @@ "btc_out": 0, "btc_change": 4999986287, "btc_fee": 13713, - "rawtransaction": "0200000000010126dda506b5a56df0d5c248ac6f786981f6d1d423b7dcba4cd49b561cb1e41bc900000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffff020000000000000000236a21154148f3fb12d7d7b4f48c7bd6a29d7ad2b663bb3be34de557aa6534f824f522d66fbc052a01000000160014a925172f0c3b4a1a72da525642cbb72152945d8502000000000000", + "rawtransaction": "020000000001013699ad0980fe666890e0b20c6e52e67d0e6c3d902395168a80be6ed1b3e25fc200000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff020000000000000000236a217fba0aa87b9715724d9afa5d7185d276b5ec4a765b4784c0168b2149b02d38eb356fbc052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -4612,10 +4610,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "transfer_destination": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "lock": false, "reset": false, @@ -4628,7 +4626,7 @@ "btc_out": 546, "btc_change": 4999983749, "btc_fee": 15705, - "rawtransaction": "020000000001016b75af7f827e11f16c78290acd3ffa6d89ea388bc8d5d0906c8ad69294bfcf9700000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffff032202000000000000160014a925172f0c3b4a1a72da525642cbb72152945d850000000000000000236a2158bc8f094b0cfbbad1fab0cc6294a74ebd46b8c5ac882e805ad3e289055390750285b2052a01000000160014a925172f0c3b4a1a72da525642cbb72152945d8502000000000000", + "rawtransaction": "02000000000101040a5b6d2e0896a75657a6546999ce5ffcf0696968f05e1fe436bb2df0e3ac6100000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff032202000000000000160014d173175d97588c462c9f66604b39d4e4f49afab00000000000000000236a21220f11267d1122791192ad25b3698e85d9ee7e6a8809925982042083b08dd7d1f185b2052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -4653,16 +4651,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", 1 ], [ "MYASSETA", - "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", 2 ] ], @@ -4670,26 +4668,26 @@ "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280a925172f0c3b4a1a72da525642cbb72152945d8580a716afdc0f9ff4a325fe944cb30be8f52acc0a568f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e54525052545903000280d173175d97588c462c9f66604b39d4e4f49afab0803ba2dced599f88fbfa5943ac7d4ab45523f990878f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945492, "btc_fee": 52508, - "rawtransaction": "02000000000104c7dfd7f07b2d9e539180f5c3a9b1a66f13c8539c94a3ddcac945ecd6b84e755100000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffff10fe6ecf618c7304e2ca6b190e7506ff9c0260915ef972408c2a05739822f9ce00000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffffc6d9859418e24319cc8db080332115cba73bab965c7583688cc4547fb2b980dc00000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffffd5b3d0f41c69b63cbe50d4a4f90421325f42d74abc326abee3eba10ba6a40ad700000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffff03e8030000000000006951210213d05b5176c48b391d8ea7016ffaca4d209a3dfed99c2db85397af522ae9380b210301fbb7029439e2a4a84e535b4a7a188b9a7bf904dad866f2e8de31221caea3e32103d604cba419087cd219958e0efda726c41d0eace9f1e233395345ecc412ec4f6053aee803000000000000695121031cd05b5176c48b391dadd06c9d3f8b7b2d1606b4cffb6c61b2f564e50bbbac1721025c7e7fa582963eab37baf87eb4ee543891930e2e16d2307dca96544e70c18fa52103d604cba419087cd219958e0efda726c41d0eace9f1e233395345ecc412ec4f6053ae14f316a804000000160014a925172f0c3b4a1a72da525642cbb72152945d8502000002000002000002000000000000", + "rawtransaction": "02000000000104f9e2c5c25688bf8726c76d68df44e859cf98d1e7fae582ada16ebc3946678a9300000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff6ad557f7fcfdfe084d1ac97c0332c20afb11799028ec1a75af8e0b7b03fbdef800000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffffe0de37ae9f2bb605930eaeae4ac684e780d90a42e08eca70d4797dba022dfc9e00000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff22804a4999a199c6f37de0a97b5ac0271919d5b361b621baf8b15050e1ca002200000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff03e8030000000000006951210314ca80272f1d44bde992f431faf91718e09ef86d858211df77d8c0ec597b43cd2103a8b2bc6b618117c7465a64e0ad239f93f3f13d1c50bcee000b9c8ba1a75eaf5421026a1a918fbc2c6d5fb3aa96a683c6930e932f1484f06179aa0a146e66d4d4cb4053aee803000000000000695121021bca80272f1d44bde9b1835c0844002e9f89a0e1cfbb1532a0b3f938bd8fd9a9210252027450c35dfa9ed9d2971af46033eeb9456a3fa92c698f29d4eecdcb31834e21026a1a918fbc2c6d5fb3aa96a683c6930e932f1484f06179aa0a146e66d4d4cb4053ae14f316a804000000160014d173175d97588c462c9f66604b39d4e4f49afab002000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "quantity": 2, "memo": "\"Hello, world!\"", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "destination": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "quantity": 1, "memo": "\"Hello, world!\"", "memo_is_hex": false @@ -4701,7 +4699,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -4718,7 +4716,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -4732,7 +4730,7 @@ "btc_out": 0, "btc_change": 4999985233, "btc_fee": 14767, - "rawtransaction": "02000000000101f688e122074942c040e5b6aa7b984cced17c462e47a0be9bdb013fbd090d2df400000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffff020000000000000000356a33d7509faf02da42d8cb12c47f6701648b47bb4cc5044ef6950c0bd649ffb2ff2a6dd6956218acb889481642db04145d8490337f51b8052a01000000160014a925172f0c3b4a1a72da525642cbb72152945d8502000000000000", + "rawtransaction": "020000000001015c1000a9495c8eaeda2787422cdadda0a39248d151b6a45c4b79b995426d202700000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff020000000000000000356a33dba46f235b2118f816db02fd0507a464e20270d7bb1ef42c5bbaa1d3a75b4ec1f289f634020926e38e887791ec30dbdab55ace51b8052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4754,8 +4752,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "asset": "XCP", "quantity": 1000, "memo": null, @@ -4771,19 +4769,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880a716afdc0f9ff4a325fe944cb30be8f52acc0a56", + "data": "434e54525052545902000000000000000100000000000003e8803ba2dced599f88fbfa5943ac7d4ab45523f99087", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985526, "btc_fee": 14474, - "rawtransaction": "02000000000101bbddb6eb12523c3639e5b1586a1d293dfec4c3abe0505ffcaae82eca7b6eeee300000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffff020000000000000000306a2e18f8e890a95975a5299a46ddda6bdfe43894d86fc7e8d5f07b129a99609e10e21ff9b8b09b74b79b8c63f1da9f9d76b9052a01000000160014a925172f0c3b4a1a72da525642cbb72152945d8502000000000000", + "rawtransaction": "02000000000101b89d93ed0aaba12e8aef6c8b5208101f643d405fd7380a46a47559f6edeb4bc000000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff020000000000000000306a2eaafd5e5b91a750f24331b4abb684b246be7488b6da07d5fe59b8c45d32a31106de40558719e5970cdcd58eb245a576b9052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "memo": null, "quantity_normalized": "0.00001000" } @@ -4793,23 +4791,23 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480a716afdc0f9ff4a325fe944cb30be8f52acc0a5607ffff", + "data": "434e54525052545904803ba2dced599f88fbfa5943ac7d4ab45523f9908707ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986287, "btc_fee": 13713, - "rawtransaction": "02000000000101f0bc148f7360a7a90ef40efaa9b5852a82c7842a85475560bac5ffdd7e72dae000000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffff020000000000000000236a21e9ae23fb7fc7ac272c7fe50b9ff0f8c438548e71368934c8cca8982c184370b64a6fbc052a01000000160014a925172f0c3b4a1a72da525642cbb72152945d8502000000000000", + "rawtransaction": "02000000000101fe1d7beaaa65e8fe5b1ff462c4fa70efbd038d750f3da1b85b9ba06e5e772e1c00000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff020000000000000000236a2130e42e7060bad5c13bccdd568448eab1079b5e5dbb7e6905e3527a44b3c0e8b97f6fbc052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "flags": 7, "memo": "ffff" } @@ -4819,8 +4817,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", - "destination": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "quantity": 1000 }, "name": "dispense", @@ -4829,7 +4827,7 @@ "btc_out": 1000, "btc_change": 4949852643, "btc_fee": 14357, - "rawtransaction": "0200000000010131efb10f0b49303e55bb66460abaccd7d05fb9be6bd10728cffb4fd4b27bf4f002000000160014a716afdc0f9ff4a325fe944cb30be8f52acc0a56ffffffff03e803000000000000160014cef2d65b27e2f1482b387d3e4386a2ca6329bcf400000000000000000c6a0aebc67a7494123a7bca27e3c1082701000000160014a716afdc0f9ff4a325fe944cb30be8f52acc0a5602000000000000", + "rawtransaction": "02000000000101e88f6bb6a52dde2da6ab6130a52deb2ac3028ecab967566783aa080b1a91cae6020000001600143ba2dced599f88fbfa5943ac7d4ab45523f99087ffffffff03e803000000000000160014bf13d9c76ee760db64d132b5dc3f99ed263282ec00000000000000000c6a0a329d543d7dea56a04a51e3c10827010000001600143ba2dced599f88fbfa5943ac7d4ab45523f9908702000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -4842,7 +4840,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -4867,7 +4865,7 @@ "btc_out": 0, "btc_change": 4999985467, "btc_fee": 14533, - "rawtransaction": "02000000000101b6dd08aee73e73ecf376617ca9f9de86b0a9abc9009eaa39839845dd0bd00d1200000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffff020000000000000000316a2f164aa82482a7b2091f86707ee07a28ada148268a3f4e7ae03a4926e0c8117deeac36ae4970c1a98ed356306bfa6c453bb9052a01000000160014a925172f0c3b4a1a72da525642cbb72152945d8502000000000000", + "rawtransaction": "02000000000101324897311064ab9bcc6991d054a3b9f8954cee8bb23c1c172b3ea601224d124c00000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff020000000000000000316a2f60fc0683cdeaead209418cea1ee595c5788630aac3082f33f93bb3f1183e7e593a74944cf918882aea74fc2014367f3bb9052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -4896,13 +4894,13 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -4914,7 +4912,7 @@ "btc_out": 0, "btc_change": 4999987049, "btc_fee": 12951, - "rawtransaction": "02000000000101bcf51aa449ce2ba172ef9e9e45f8b05eaa4e47e389346c3452158c4dba552a6b00000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffff020000000000000000166a149d287347c6fa1076c7788580c271a30a9180a86969bf052a01000000160014a925172f0c3b4a1a72da525642cbb72152945d8502000000000000", + "rawtransaction": "02000000000101bd7d44cb1a8cce8ddb850f0b3cb93f096a225a11be18289ea95e72f05f834bd300000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff020000000000000000166a14e78eedfba3389cc0de2378c44d755fc1b88fc7be69bf052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -4928,8 +4926,8 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "51eed6917af775e4fdffc81b0eb1484ad7ae4677e2905bb9966e8de45f9a683d:1", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -4942,12 +4940,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e5452505254596462637274317134796a33777463763864397035756b3632667479396a616879396666676876396137337663707c353165656436393137616637373565346664666663383162306562313438346164376165343637376532393035626239393636653864653435663961363833643a317c5843507c31303030", + "data": "434e545250525459646263727431713639653377687668747a78797674796c766573796b777735756e3666343734737274636632337c333631383937323333363735656637636233303366636164623037663931663937383061633764383763666164306264353332306230623961396466393633303a317c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999918531, "btc_fee": 78469, - "rawtransaction": "02000000000106760da727458c0935456368197a23bdc5aef3dd818f4d48c011baf25d33f5449d00000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffff5508dcd7d6ca6b27204703f30bd74edf5de3d438a057a58aec86c2edcbc8ee1b00000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffff256a93df1684fd569f03054041eaec4de0af2322bf7d0b2d79e3cbc6e558fc9c00000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffffac04e1ba12935d27b870ec32959b1b7fa7f0135b9c3eb5b3f52fc00c4e75054000000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffffed1642858a1f996dc4b4eaa53fc600d2b64bb023a3debfe13da0bb62beb1e9db00000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffff2256040e80a90ed0463a028f7e684b35fe12e497cb9f27fd78609d6c98d31e6600000000160014a925172f0c3b4a1a72da525642cbb72152945d85ffffffff04e80300000000000069512102e586b6c10dc8b105c78e4a9cf233b337738a5d98bb7db9eca1f7408a28353bc72103d914e7a93294c9438fcad0fd7868ee68cd222c4afe3e0e7c987cf88bc3b25e6a2103d604cba419087cd219958e0efda726c41d0eace9f1e233395345ecc412ec4f6053aee80300000000000069512103e586b6c10dc8b105c7db1f9ee670b57322c751cfaa6fb9a2a8f1499f7f71645e2103d712e0b97cccc616d184defe2c36b62b96212240be6b1b38c928a9dbc1bd06092103d604cba419087cd219958e0efda726c41d0eace9f1e233395345ecc412ec4f6053aee80300000000000069512102cf86b6c10dc8b105c7dc10cce47db33a1fb067d7fd39eaaa999379fa1d40509a2102ef2681dd4bada322e7b3e99b1e0f861ef4431b79885d7e00ad4d9deea78467e52103d604cba419087cd219958e0efda726c41d0eace9f1e233395345ecc412ec4f6053aec36d22fc06000000160014a925172f0c3b4a1a72da525642cbb72152945d8502000002000002000002000002000002000000000000", + "rawtransaction": "02000000000106da251f016c64930c9b89bcdb4d1851875eb521a1daa3a9756822852ac19bdb1800000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffffb066a01e205eaa38a0d6dd853b8471c40590ad52acc873e4d2955640ea7d288400000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff592e5fb090da16fc1a736149bfc1375fb8b7d112d90c50e3fd09ca564766ec7300000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffffcde3d5cb4d236718f5743f534d72af2257a915ead8ed8d644ed440ca20e5021500000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff6afeeb0964b35520fd7ccd0e26ff5a478fb095a31f3f27f4d2042eef60de307900000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffffeba0072600681eb10d96a09cfd7b2d029c949be6418e6c7f1d880da3cdfec48c00000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff04e80300000000000069512103516fd33a2620b650f990b844b426a3cca4b1220d2ab75122fa417948f498254f2102db35eb7e1d6bfef986886ccc46f7bc295baa8dbe8fa45bd358f5311270de23bb21026a1a918fbc2c6d5fb3aa96a683c6930e932f1484f06179aa0a146e66d4d4cb4053aee80300000000000069512102516fd33a2620b650f9c7e911f167f7dba5eb250d6dec4129ef5f6301b58a659321028625b73a5c30e8ed84993acd43a5ea7918ba9de8daa458cd5ba1394b708d771221026a1a918fbc2c6d5fb3aa96a683c6930e932f1484f06179aa0a146e66d4d4cb4053aee803000000000000695121037b6fd33a2620b650f9cdec14f668a3c1cacb17426cef177a8e3b013182ec5c362103b7438e0d6400898eb3fd02fa20c38b1d28d8f9dde99668af6bc3002a49e9116d21026a1a918fbc2c6d5fb3aa96a683c6930e932f1484f06179aa0a146e66d4d4cb4053aec36d22fc06000000160014d173175d97588c462c9f66604b39d4e4f49afab002000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -4960,8 +4958,8 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", - "destination": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "destination": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -4974,12 +4972,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964356433373639636439323231643933366335336161373665316263396162393836303735323136646239633662653339626538386262373136343533313835373a307c62637274317134796a33777463763864397035756b3632667479396a616879396666676876396137337663707c5843507c31303030", + "data": "434e54525052545964396162343733303664626437636262323563336637656239313062316363396434306131303136313630336162666365623166376339616365303336633238373a307c6263727431713639653377687668747a78797674796c766573796b777735756e3666343734737274636632337c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, "btc_change": 4950030353, "btc_fee": 46647, - "rawtransaction": "020000000001031baffe20cfe677477cd2f254724cf38a8221c579df9c82e93e242e3e4739c83f010000001600141d6078f1db25d3de6e9a6c6ff0c087bf12827043ffffffff1eb66a675220829b474137564bfd8c3b9c0e82c961b3a0f16e1d5256487eea1f000000001600141d6078f1db25d3de6e9a6c6ff0c087bf12827043ffffffff3f50429f05ce3a33125ed26cca4dc04e9805821420fcd43547e4709af22b99b1010000001600141d6078f1db25d3de6e9a6c6ff0c087bf12827043ffffffff04e80300000000000069512102cac209f2fff4fce8a9e7c5f684d331155e69da3860145a9e7c1f1d602d439f992103365bb5697c0bc542b224013e14394fecee3179a27626768a2640b73784c4ab762103de548b38be7be7d9b6ec9af079c5d11fc3aaf2d58c418584d37f7e797532f1c053aee80300000000000069512103cac209f2fff4fce8a9e192a586d233190e3cdb3f651f0edb2d4a0c212f53ca6a21037807e32f6a0b8a1bb424493d51654cecb97364f9252428917a15e832898aaa472103de548b38be7be7d9b6ec9af079c5d11fc3aaf2d58c418584d37f7e797532f1c053aee80300000000000069512103e0c209f2fff4fce8a9e2c7a1c1877750654eb37663150e974f297e551e22fe332103016dd0581e68fc23d01d3908240e7adedf071dc04f4540e843738e55e1fc93522103de548b38be7be7d9b6ec9af079c5d11fc3aaf2d58c418584d37f7e797532f1c053ae11780b27010000001600141d6078f1db25d3de6e9a6c6ff0c087bf1282704302000002000002000000000000", + "rawtransaction": "020000000001031dcc49f47a7ff47acaaeae0040a10a382e65d6cd5b0541beb7bcaae2304bf75201000000160014d8738784ceb0bcf1708fd9c365706baff86fe9daffffffff646bccb479cf590cc4e036bef000b0be84b1470859ea9fa4cbde76577125c24300000000160014d8738784ceb0bcf1708fd9c365706baff86fe9daffffffffcfcd551e911150685480191dcf49c3def503f054d25a500e3bc308f875a272d901000000160014d8738784ceb0bcf1708fd9c365706baff86fe9daffffffff04e803000000000000695121027e1bbe0dfa426953325d01c5a12edf0d531302ef1ca34003ddff639c9f1f789b2103118621f99041904226793b95dd93394685ab12314fb2f84e4eb8b39e13ade283210389838601a2094d7754eab86e828612cb164a4237ebf9a8746314acbca1bafd2f53aee803000000000000695121027e1bbe0dfa426953325a01c5a07fd80d554654b54fae131dddae248b9d0879ed21024d812bbfc855c9553f3826d7998b6400d1ee5a6c08f6ac5946edb0c815ffa694210389838601a2094d7754eab86e828612cb164a4237ebf9a8746314acbca1bafd2f53aee80300000000000069512102541bbe0dfa426953324b4cc7a528db423b6636f149a41351bfcd56ffac794fa3210374e418c8a023a12145405fa1edf20876b49d23077f81992c28dbd6fc22cbd5c7210389838601a2094d7754eab86e828612cb164a4237ebf9a8746314acbca1bafd2f53ae11780b2701000000160014d8738784ceb0bcf1708fd9c365706baff86fe9da02000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -4995,8 +4993,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 10000000000, @@ -5004,16 +5002,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729328827, - "last_issuance_block_time": 1729328835, + "first_issuance_block_time": 1729416098, + "last_issuance_block_time": 1729416107, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", - "owner": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "issuer": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "owner": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "divisible": true, "locked": false, "supply": 100000000000, @@ -5021,16 +5019,16 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1729328823, - "last_issuance_block_time": 1729328823, + "first_issuance_block_time": 1729416094, + "last_issuance_block_time": 1729416094, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 100000000000, @@ -5038,16 +5036,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729328773, - "last_issuance_block_time": 1729328773, + "first_issuance_block_time": 1729416044, + "last_issuance_block_time": 1729416044, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 40, @@ -5055,16 +5053,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729328718, - "last_issuance_block_time": 1729328722, + "first_issuance_block_time": 1729415987, + "last_issuance_block_time": 1729415991, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 19, @@ -5072,8 +5070,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729328702, - "last_issuance_block_time": 1729328714, + "first_issuance_block_time": 1729415969, + "last_issuance_block_time": 1729415982, "supply_normalized": "0.00000019" } ], @@ -5085,8 +5083,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 10000000000, @@ -5094,15 +5092,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1729328664, - "last_issuance_block_time": 1729328677, + "first_issuance_block_time": 1729415930, + "last_issuance_block_time": 1729415943, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5110,14 +5108,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5125,7 +5123,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -5137,7 +5135,7 @@ }, "/v2/assets//balances/
": { "result": { - "address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -5156,9 +5154,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "417b7585cb70e5e9f3850385defa712ecae11bac8afe116a63861a98648f1b11", + "tx_hash": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8", "block_index": 184, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5173,7 +5171,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729328864, + "block_time": 1729416128, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5199,9 +5197,9 @@ }, { "tx_index": 51, - "tx_hash": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a", + "tx_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", "block_index": 188, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5216,7 +5214,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729328949, + "block_time": 1729416201, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5242,9 +5240,9 @@ }, { "tx_index": 57, - "tx_hash": "0c2af3b2417a07ed4648e73879edfec272c01513088c21273c745f504ee68731", + "tx_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", "block_index": 192, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5259,7 +5257,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729328976, + "block_time": 1729416229, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5285,9 +5283,9 @@ }, { "tx_index": 59, - "tx_hash": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee", + "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", "block_index": 193, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5302,7 +5300,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729328980, + "block_time": 1729416233, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5328,9 +5326,9 @@ }, { "tx_index": 52, - "tx_hash": "8dc06a5357ff8379528e48e73da07324302ec9fdcfc37f03305d0f9f0cfe28d5", + "tx_hash": "34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", "block_index": 187, - "source": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -5345,7 +5343,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729328944, + "block_time": 1729416196, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5376,13 +5374,13 @@ "/v2/assets//matches": { "result": [ { - "id": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a_3ac7858b4e6053388907f40c38e43800f7856d7dd4d00aa2a49e1bc8cdb2c407", + "id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", "tx0_index": 51, - "tx0_hash": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a", - "tx0_address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", + "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "tx1_index": 54, - "tx1_hash": "3ac7858b4e6053388907f40c38e43800f7856d7dd4d00aa2a49e1bc8cdb2c407", - "tx1_address": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "tx1_hash": "e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", + "tx1_address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5396,7 +5394,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729328949, + "block_time": 1729416201, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5416,13 +5414,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a_8dc06a5357ff8379528e48e73da07324302ec9fdcfc37f03305d0f9f0cfe28d5", + "id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", "tx0_index": 51, - "tx0_hash": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a", - "tx0_address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", + "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "tx1_index": 52, - "tx1_hash": "8dc06a5357ff8379528e48e73da07324302ec9fdcfc37f03305d0f9f0cfe28d5", - "tx1_address": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "tx1_hash": "34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", + "tx1_address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5436,7 +5434,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729328944, + "block_time": 1729416196, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5456,13 +5454,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "417b7585cb70e5e9f3850385defa712ecae11bac8afe116a63861a98648f1b11_45de60b281c8ad2f70758c63cf0bb0b4f5e0f5015692a304541527b7f52bc82f", + "id": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8_31f95069423c6c4ddfe0a4574c1a3369fb58dac7a6652ba054558eb83930ed0b", "tx0_index": 49, - "tx0_hash": "417b7585cb70e5e9f3850385defa712ecae11bac8afe116a63861a98648f1b11", - "tx0_address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "tx0_hash": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8", + "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "tx1_index": 50, - "tx1_hash": "45de60b281c8ad2f70758c63cf0bb0b4f5e0f5015692a304541527b7f52bc82f", - "tx1_address": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "tx1_hash": "31f95069423c6c4ddfe0a4574c1a3369fb58dac7a6652ba054558eb83930ed0b", + "tx1_address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5476,7 +5474,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729328864, + "block_time": 1729416128, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5503,20 +5501,20 @@ "result": [ { "block_index": 194, - "address": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "75becfa6beb8ad5af35ed1fb85254b67d1fab4fb19f4e745446677c859461e60", + "event": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729328983, + "block_time": 1729416237, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -5524,20 +5522,20 @@ }, { "block_index": 125, - "address": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "f8cb0dc42d3cfe335e564f8d99697991311e828ae2d37062a259e7463b1c263e", + "event": "a1497078258ff9f4f88b012baeee38971b3a79972c437baf8dd53c9d4571eed2", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729328677, + "block_time": 1729415943, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -5545,20 +5543,20 @@ }, { "block_index": 124, - "address": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "fdc41b9a899f33243268cc750b9ce72c9db1c75999a1e6c7619ab9e3de573a86", + "event": "6812bf6b8199c898a40d2bc0949e80556f9b275b19f73b96a09fd3f2f0c691f0", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729328673, + "block_time": 1729415939, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -5566,20 +5564,20 @@ }, { "block_index": 124, - "address": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "b68cd5ba32058d09a4cec3391df2638fef0e10eaad112adf8c5a47c96bc2251f", + "event": "be65810c28d4a6e23b5459a5aff489b71f797fee7c65043b9e917ebbc5897802", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729328673, + "block_time": 1729415939, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -5591,16 +5589,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "fdc41b9a899f33243268cc750b9ce72c9db1c75999a1e6c7619ab9e3de573a86", + "event": "6812bf6b8199c898a40d2bc0949e80556f9b275b19f73b96a09fd3f2f0c691f0", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729328673, + "block_time": 1729415939, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -5618,12 +5616,12 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62, - "utxo": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1:1", - "utxo_address": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "utxo": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", + "utxo_address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "confirmed": true, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -5635,16 +5633,16 @@ }, { "block_index": 195, - "address": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "a2796a7a01cac72fd1b2e54ffda7f4880fcc653db5d80725a8ec6499d028f44c", + "event": "849f54d8426192c0270d4d240627ba157876e3601948aed0ac24e730dcab52d7", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729328988, + "block_time": 1729416242, "asset_info": { "divisible": true, "asset_longname": null, @@ -5656,16 +5654,16 @@ }, { "block_index": 194, - "address": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "75becfa6beb8ad5af35ed1fb85254b67d1fab4fb19f4e745446677c859461e60", + "event": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729328983, + "block_time": 1729416237, "asset_info": { "divisible": true, "asset_longname": null, @@ -5677,16 +5675,16 @@ }, { "block_index": 194, - "address": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "75becfa6beb8ad5af35ed1fb85254b67d1fab4fb19f4e745446677c859461e60", + "event": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729328983, + "block_time": 1729416237, "asset_info": { "divisible": true, "asset_longname": null, @@ -5698,16 +5696,16 @@ }, { "block_index": 193, - "address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee", + "event": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729328980, + "block_time": 1729416233, "asset_info": { "divisible": true, "asset_longname": null, @@ -5725,20 +5723,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "51eed6917af775e4fdffc81b0eb1484ad7ae4677e2905bb9966e8de45f9a683d", + "tx_hash": "0c95334ce0b328f2ff4e1e44c4e96d503ba60b7b2b1fbabeabef5f3ac971b288", "block_index": 154, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729328809, + "block_time": 1729416070, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -5760,14 +5758,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "f8cb0dc42d3cfe335e564f8d99697991311e828ae2d37062a259e7463b1c263e", + "tx_hash": "a1497078258ff9f4f88b012baeee38971b3a79972c437baf8dd53c9d4571eed2", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "transfer": false, "callable": false, "call_date": 0, @@ -5782,20 +5780,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729328677, + "block_time": 1729415943, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "fdc41b9a899f33243268cc750b9ce72c9db1c75999a1e6c7619ab9e3de573a86", + "tx_hash": "6812bf6b8199c898a40d2bc0949e80556f9b275b19f73b96a09fd3f2f0c691f0", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "transfer": false, "callable": false, "call_date": 0, @@ -5810,20 +5808,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729328673, + "block_time": 1729415939, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "b68cd5ba32058d09a4cec3391df2638fef0e10eaad112adf8c5a47c96bc2251f", + "tx_hash": "be65810c28d4a6e23b5459a5aff489b71f797fee7c65043b9e917ebbc5897802", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "transfer": false, "callable": false, "call_date": 0, @@ -5838,20 +5836,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729328669, + "block_time": 1729415935, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "655c05dbe746884a61caffb235cfb4afe80cda0d2858b276eae7ca9c493dd775", + "tx_hash": "bb813d64db8f65171084ffa83e7128316586ef0283b09807d288d02a0b8e58da", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "transfer": false, "callable": false, "call_date": 0, @@ -5866,7 +5864,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729328664, + "block_time": 1729415930, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -5878,10 +5876,10 @@ "result": [ { "tx_index": 62, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "source": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1:1", - "destination": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", + "source": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", + "destination": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5889,7 +5887,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -5902,10 +5900,10 @@ }, { "tx_index": 56, - "tx_hash": "0db25b816b9c26ff7c0412f71dd828e22496d1003d9ad2febad4f57e9edf125f", + "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", "block_index": 190, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5913,7 +5911,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328967, + "block_time": 1729416220, "asset_info": { "divisible": true, "asset_longname": null, @@ -5926,10 +5924,10 @@ }, { "tx_index": 55, - "tx_hash": "e07e301352fc03f3fa32de1f8c0b07f8817a96104c5a64171cff40e24d3ed90e", + "tx_hash": "41940d57c4a9b1f5d0a22cb937643b5a48181fabeb27a4fe2ae5e3b102045d0f", "block_index": 189, - "source": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", - "destination": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -5937,7 +5935,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328963, + "block_time": 1729416215, "asset_info": { "divisible": true, "asset_longname": null, @@ -5950,10 +5948,10 @@ }, { "tx_index": 44, - "tx_hash": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1", + "tx_hash": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2", "block_index": 157, - "source": "b1992bf29a70e44735d4fc20148205984ec04dca6cd25e12333ace059f42503f:0", - "destination": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1:1", + "source": "d972a275f808c33b0e505ad254f003f5dec349cf1d198054685011911e55cdcf:0", + "destination": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5961,7 +5959,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328823, + "block_time": 1729416094, "asset_info": { "divisible": true, "asset_longname": null, @@ -5974,10 +5972,10 @@ }, { "tx_index": 43, - "tx_hash": "b1992bf29a70e44735d4fc20148205984ec04dca6cd25e12333ace059f42503f", + "tx_hash": "d972a275f808c33b0e505ad254f003f5dec349cf1d198054685011911e55cdcf", "block_index": 156, - "source": "431502146e472222b710816340a06f62edfa970858f475dc55df9a461ca3b7bf:0", - "destination": "b1992bf29a70e44735d4fc20148205984ec04dca6cd25e12333ace059f42503f:0", + "source": "cebea8c09925ead707b16a98370c550b4a41a22723ed309d31de931fe4f62b71:0", + "destination": "d972a275f808c33b0e505ad254f003f5dec349cf1d198054685011911e55cdcf:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5985,7 +5983,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328818, + "block_time": 1729416089, "asset_info": { "divisible": true, "asset_longname": null, @@ -6004,9 +6002,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542", + "tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6015,7 +6013,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6025,7 +6023,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729328743, + "block_time": 1729416013, "asset_info": { "divisible": true, "asset_longname": null, @@ -6041,9 +6039,9 @@ }, { "tx_index": 29, - "tx_hash": "25d2b8e15aaa4279392119678e91d6d29571f9a4519b788e163fc67ba60f0b14", + "tx_hash": "7f6a4ca9e3d855d805ca980cee733de3d16f239f2c2e40241d4a607e55a74b86", "block_index": 142, - "source": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6052,7 +6050,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "origin": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6062,7 +6060,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729328748, + "block_time": 1729416017, "asset_info": { "divisible": true, "asset_longname": null, @@ -6078,9 +6076,9 @@ }, { "tx_index": 30, - "tx_hash": "1e35417090f653a2903741ab9faa6151e1f08e891076183013511c2edfef26ca", + "tx_hash": "8463aade5566a0f1e8c8f67bc3a36514814d844fa9a8925b244600e282392b52", "block_index": 150, - "source": "n4ZsbPM25kFYFpE2f9V3tLtN4rhmQvv1nR", + "source": "mxn9viJTMZ952ierCiR5GaQwzaXBTAAdFh", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6088,10 +6086,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "796e5219a61e4ee75e71544091ab14ee804ba21345fcb3d80923ab01f9d657f9", - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "last_status_tx_hash": "3418f6969c77f8bec6ebfbddccf5f09827ad4f0155e0eda4417c4647d168a18f", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 0, - "last_status_tx_source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "last_status_tx_source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -6099,7 +6097,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729328792, + "block_time": 1729416053, "asset_info": { "divisible": true, "asset_longname": null, @@ -6115,18 +6113,18 @@ }, { "tx_index": 33, - "tx_hash": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b", + "tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", "block_index": 196, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "oracle_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "last_status_tx_hash": null, - "origin": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "origin": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6136,7 +6134,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -6157,9 +6155,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542", + "tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6168,7 +6166,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6178,7 +6176,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729328743, + "block_time": 1729416013, "asset_info": { "divisible": true, "asset_longname": null, @@ -6206,7 +6204,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -6214,7 +6212,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -6223,7 +6221,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -6231,7 +6229,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6240,7 +6238,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -6248,7 +6246,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6257,7 +6255,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -6272,27 +6270,27 @@ { "tx_index": 62, "dispense_index": 0, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", - "destination": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "destination": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b", + "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "oracle_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "last_status_tx_hash": null, - "origin": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "origin": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6307,7 +6305,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -6321,27 +6319,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "1fea7e4856521d6ef1a0b361c9820e9c3b8cfd4b563741479b822052676ab61e", + "tx_hash": "43c225715776decba49fea590847b184beb000f0be36e0c40c59cf79b4cc6b64", "block_index": 147, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", - "destination": "bcrt1qu2jyjw0ac8f5tpuf9frh35m7saw6rmplryv7aa", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "destination": "bcrt1qpm0krm9adpcqdeu2tmuzwdl325fr9768g564cg", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b", + "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "oracle_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "last_status_tx_hash": null, - "origin": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "origin": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6356,7 +6354,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729328769, + "block_time": 1729416039, "asset_info": { "divisible": true, "asset_longname": null, @@ -6370,19 +6368,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "a9a3578379153ca360a66660c00a998da120a92a2b8be15ae1b7ae80d2787a93", + "tx_hash": "77f26b77b205be83c57e46f437168ffa54afdd0f8fe2855da90317153ec41ae4", "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542", + "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6390,7 +6388,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6405,7 +6403,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729328743, + "block_time": 1729416013, "asset_info": { "divisible": true, "asset_longname": null, @@ -6419,19 +6417,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2596a5f3d099d83b293e6ab485266586439d3362b1dd46f02ea075eb38431b53", + "tx_hash": "ea65dde6c36bf0ee93197974ace92a2b2a68a0821b6f382104f98419c6ffe544", "block_index": 140, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542", + "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6439,7 +6437,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6454,7 +6452,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729328739, + "block_time": 1729416009, "asset_info": { "divisible": true, "asset_longname": null, @@ -6475,8 +6473,8 @@ "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "owner": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false, "supply": 0, @@ -6484,8 +6482,8 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1729328831, - "last_issuance_block_time": 1729328831, + "first_issuance_block_time": 1729416103, + "last_issuance_block_time": 1729416103, "supply_normalized": "0.00000000" } ], @@ -6495,10 +6493,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "655c05dbe746884a61caffb235cfb4afe80cda0d2858b276eae7ca9c493dd775", + "tx_hash": "bb813d64db8f65171084ffa83e7128316586ef0283b09807d288d02a0b8e58da", "tx_index": 10, "block_index": 125, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6523,7 +6521,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729328677 + "block_time": 1729415943 } ], "next_cursor": null, @@ -6532,64 +6530,64 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "f8cb0dc42d3cfe335e564f8d99697991311e828ae2d37062a259e7463b1c263e", + "tx_hash": "a1497078258ff9f4f88b012baeee38971b3a79972c437baf8dd53c9d4571eed2", "tx_index": 13, "block_index": 125, - "source": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", - "fairminter_tx_hash": "655c05dbe746884a61caffb235cfb4afe80cda0d2858b276eae7ca9c493dd775", + "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "fairminter_tx_hash": "bb813d64db8f65171084ffa83e7128316586ef0283b09807d288d02a0b8e58da", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729328677, + "block_time": 1729415943, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false } }, { - "tx_hash": "fdc41b9a899f33243268cc750b9ce72c9db1c75999a1e6c7619ab9e3de573a86", + "tx_hash": "6812bf6b8199c898a40d2bc0949e80556f9b275b19f73b96a09fd3f2f0c691f0", "tx_index": 12, "block_index": 124, - "source": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", - "fairminter_tx_hash": "655c05dbe746884a61caffb235cfb4afe80cda0d2858b276eae7ca9c493dd775", + "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "fairminter_tx_hash": "bb813d64db8f65171084ffa83e7128316586ef0283b09807d288d02a0b8e58da", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729328673, + "block_time": 1729415939, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false } }, { - "tx_hash": "b68cd5ba32058d09a4cec3391df2638fef0e10eaad112adf8c5a47c96bc2251f", + "tx_hash": "be65810c28d4a6e23b5459a5aff489b71f797fee7c65043b9e917ebbc5897802", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", - "fairminter_tx_hash": "655c05dbe746884a61caffb235cfb4afe80cda0d2858b276eae7ca9c493dd775", + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "fairminter_tx_hash": "bb813d64db8f65171084ffa83e7128316586ef0283b09807d288d02a0b8e58da", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729328669, + "block_time": 1729415935, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false } @@ -6601,22 +6599,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "b68cd5ba32058d09a4cec3391df2638fef0e10eaad112adf8c5a47c96bc2251f", + "tx_hash": "be65810c28d4a6e23b5459a5aff489b71f797fee7c65043b9e917ebbc5897802", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", - "fairminter_tx_hash": "655c05dbe746884a61caffb235cfb4afe80cda0d2858b276eae7ca9c493dd775", + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "fairminter_tx_hash": "bb813d64db8f65171084ffa83e7128316586ef0283b09807d288d02a0b8e58da", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729328669, + "block_time": 1729415935, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false } @@ -6629,9 +6627,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "417b7585cb70e5e9f3850385defa712ecae11bac8afe116a63861a98648f1b11", + "tx_hash": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8", "block_index": 184, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6646,7 +6644,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729328864, + "block_time": 1729416128, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6672,9 +6670,9 @@ }, { "tx_index": 52, - "tx_hash": "8dc06a5357ff8379528e48e73da07324302ec9fdcfc37f03305d0f9f0cfe28d5", + "tx_hash": "34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", "block_index": 187, - "source": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6689,7 +6687,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729328944, + "block_time": 1729416196, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6715,9 +6713,9 @@ }, { "tx_index": 51, - "tx_hash": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a", + "tx_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", "block_index": 188, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6732,7 +6730,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729328949, + "block_time": 1729416201, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6758,9 +6756,9 @@ }, { "tx_index": 54, - "tx_hash": "3ac7858b4e6053388907f40c38e43800f7856d7dd4d00aa2a49e1bc8cdb2c407", + "tx_hash": "e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", "block_index": 188, - "source": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6775,7 +6773,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729328949, + "block_time": 1729416201, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6801,9 +6799,9 @@ }, { "tx_index": 57, - "tx_hash": "0c2af3b2417a07ed4648e73879edfec272c01513088c21273c745f504ee68731", + "tx_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", "block_index": 192, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6818,7 +6816,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729328976, + "block_time": 1729416229, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6849,9 +6847,9 @@ "/v2/orders/": { "result": { "tx_index": 59, - "tx_hash": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee", + "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", "block_index": 193, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6866,7 +6864,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729328980, + "block_time": 1729416233, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6894,13 +6892,13 @@ "/v2/orders//matches": { "result": [ { - "id": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a_3ac7858b4e6053388907f40c38e43800f7856d7dd4d00aa2a49e1bc8cdb2c407", + "id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", "tx0_index": 51, - "tx0_hash": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a", - "tx0_address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", + "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "tx1_index": 54, - "tx1_hash": "3ac7858b4e6053388907f40c38e43800f7856d7dd4d00aa2a49e1bc8cdb2c407", - "tx1_address": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "tx1_hash": "e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", + "tx1_address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -6914,7 +6912,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729328949, + "block_time": 1729416201, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6934,13 +6932,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a_8dc06a5357ff8379528e48e73da07324302ec9fdcfc37f03305d0f9f0cfe28d5", + "id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", "tx0_index": 51, - "tx0_hash": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a", - "tx0_address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", + "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "tx1_index": 52, - "tx1_hash": "8dc06a5357ff8379528e48e73da07324302ec9fdcfc37f03305d0f9f0cfe28d5", - "tx1_address": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "tx1_hash": "34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", + "tx1_address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -6954,7 +6952,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729328944, + "block_time": 1729416196, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6981,15 +6979,15 @@ "result": [ { "tx_index": 53, - "tx_hash": "f0f47bb2d44ffbcf2807d16bbeb95fd0d7ccba0a4666bb553e30490b0fb1ef31", + "tx_hash": "e6ca911a0b08aa83675667b9ca8e02c32aeb2da53061aba62dde2da5b66b8fe8", "block_index": 187, - "source": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", - "destination": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "destination": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "btc_amount": 2000, - "order_match_id": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a_8dc06a5357ff8379528e48e73da07324302ec9fdcfc37f03305d0f9f0cfe28d5", + "order_match_id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", "status": "valid", "confirmed": true, - "block_time": 1729328944, + "block_time": 1729416196, "btc_amount_normalized": "0.00002000" } ], @@ -7000,9 +6998,9 @@ "result": [ { "tx_index": 52, - "tx_hash": "8dc06a5357ff8379528e48e73da07324302ec9fdcfc37f03305d0f9f0cfe28d5", + "tx_hash": "34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", "block_index": 187, - "source": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7020,7 +7018,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729328944, + "block_time": 1729416196, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7046,9 +7044,9 @@ }, { "tx_index": 54, - "tx_hash": "3ac7858b4e6053388907f40c38e43800f7856d7dd4d00aa2a49e1bc8cdb2c407", + "tx_hash": "e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", "block_index": 188, - "source": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -7066,7 +7064,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729328949, + "block_time": 1729416201, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7092,9 +7090,9 @@ }, { "tx_index": 49, - "tx_hash": "417b7585cb70e5e9f3850385defa712ecae11bac8afe116a63861a98648f1b11", + "tx_hash": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8", "block_index": 184, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7112,7 +7110,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729328864, + "block_time": 1729416128, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7138,9 +7136,9 @@ }, { "tx_index": 51, - "tx_hash": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a", + "tx_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", "block_index": 188, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7158,7 +7156,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729328949, + "block_time": 1729416201, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7184,9 +7182,9 @@ }, { "tx_index": 57, - "tx_hash": "0c2af3b2417a07ed4648e73879edfec272c01513088c21273c745f504ee68731", + "tx_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", "block_index": 192, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7204,7 +7202,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729328976, + "block_time": 1729416229, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7235,13 +7233,13 @@ "/v2/orders///matches": { "result": [ { - "id": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a_3ac7858b4e6053388907f40c38e43800f7856d7dd4d00aa2a49e1bc8cdb2c407", + "id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", "tx0_index": 51, - "tx0_hash": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a", - "tx0_address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", + "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "tx1_index": 54, - "tx1_hash": "3ac7858b4e6053388907f40c38e43800f7856d7dd4d00aa2a49e1bc8cdb2c407", - "tx1_address": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "tx1_hash": "e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", + "tx1_address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7258,7 +7256,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729328949, + "block_time": 1729416201, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7278,13 +7276,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a_8dc06a5357ff8379528e48e73da07324302ec9fdcfc37f03305d0f9f0cfe28d5", + "id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", "tx0_index": 51, - "tx0_hash": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a", - "tx0_address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", + "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "tx1_index": 52, - "tx1_hash": "8dc06a5357ff8379528e48e73da07324302ec9fdcfc37f03305d0f9f0cfe28d5", - "tx1_address": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "tx1_hash": "34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", + "tx1_address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7301,7 +7299,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729328944, + "block_time": 1729416196, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7321,13 +7319,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "417b7585cb70e5e9f3850385defa712ecae11bac8afe116a63861a98648f1b11_45de60b281c8ad2f70758c63cf0bb0b4f5e0f5015692a304541527b7f52bc82f", + "id": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8_31f95069423c6c4ddfe0a4574c1a3369fb58dac7a6652ba054558eb83930ed0b", "tx0_index": 49, - "tx0_hash": "417b7585cb70e5e9f3850385defa712ecae11bac8afe116a63861a98648f1b11", - "tx0_address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "tx0_hash": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8", + "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "tx1_index": 50, - "tx1_hash": "45de60b281c8ad2f70758c63cf0bb0b4f5e0f5015692a304541527b7f52bc82f", - "tx1_address": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "tx1_hash": "31f95069423c6c4ddfe0a4574c1a3369fb58dac7a6652ba054558eb83930ed0b", + "tx1_address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7344,7 +7342,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729328864, + "block_time": 1729416128, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7370,13 +7368,13 @@ "/v2/order_matches": { "result": [ { - "id": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a_3ac7858b4e6053388907f40c38e43800f7856d7dd4d00aa2a49e1bc8cdb2c407", + "id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", "tx0_index": 51, - "tx0_hash": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a", - "tx0_address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", + "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "tx1_index": 54, - "tx1_hash": "3ac7858b4e6053388907f40c38e43800f7856d7dd4d00aa2a49e1bc8cdb2c407", - "tx1_address": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "tx1_hash": "e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", + "tx1_address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7390,7 +7388,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729328949, + "block_time": 1729416201, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7410,13 +7408,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a_8dc06a5357ff8379528e48e73da07324302ec9fdcfc37f03305d0f9f0cfe28d5", + "id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", "tx0_index": 51, - "tx0_hash": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a", - "tx0_address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", + "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "tx1_index": 52, - "tx1_hash": "8dc06a5357ff8379528e48e73da07324302ec9fdcfc37f03305d0f9f0cfe28d5", - "tx1_address": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "tx1_hash": "34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", + "tx1_address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7430,7 +7428,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729328944, + "block_time": 1729416196, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7450,13 +7448,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "417b7585cb70e5e9f3850385defa712ecae11bac8afe116a63861a98648f1b11_45de60b281c8ad2f70758c63cf0bb0b4f5e0f5015692a304541527b7f52bc82f", + "id": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8_31f95069423c6c4ddfe0a4574c1a3369fb58dac7a6652ba054558eb83930ed0b", "tx0_index": 49, - "tx0_hash": "417b7585cb70e5e9f3850385defa712ecae11bac8afe116a63861a98648f1b11", - "tx0_address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "tx0_hash": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8", + "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "tx1_index": 50, - "tx1_hash": "45de60b281c8ad2f70758c63cf0bb0b4f5e0f5015692a304541527b7f52bc82f", - "tx1_address": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "tx1_hash": "31f95069423c6c4ddfe0a4574c1a3369fb58dac7a6652ba054558eb83930ed0b", + "tx1_address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7470,7 +7468,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729328864, + "block_time": 1729416128, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7515,66 +7513,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "8f228d4a4b728a07b0a601ef5af6cb6676382b151868640417028e76c715139d", + "tx_hash": "3c708852d4951ec7994feec5ab282528777c9dbf169290986261472cf1fb27fa", "block_index": 121, - "source": "bcrt1qz2w3wldndc072gvryyfcpvdy7a26k66sdr05zz", + "source": "bcrt1qwhyc990hruyqf3e7r3ee9xx3g558uugekpa3kw", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1729328659, + "block_time": 1729415925, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "25ce613c98cdad306e433862634f7b2804f91044d92de031c61538c2ffcd8c99", + "tx_hash": "9b0a770f7159fc7dd964563092a25836bcf871dd9133d1c83559069b2ac65b52", "block_index": 120, - "source": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "source": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1729328655, + "block_time": 1729415921, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "3b8214a648c3c93e4850143fb8369cc92b345e069fe89a09de868baf538390f0", + "tx_hash": "5b40993b2bcb6a081fa6fd35f641469b274a7e873d881ccd8ee10fa6f7a19caf", "block_index": 119, - "source": "bcrt1qudangnqpexn0yrqnnyjlm0waham8cyn9lw5pys", + "source": "bcrt1qsadvwd5q5legncwy7gd0e8nzcar0xtmpjd6smx", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1729328651, + "block_time": 1729415916, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "730c3780736e29b3329fde399b221493582d13e848250c8f866630e6dbd6537e", + "tx_hash": "1e5e7ad77496deeac81c1ff22674d9a02d8723b7ebb91ce1a0e4c866a85fcfbd", "block_index": 118, - "source": "bcrt1qu2jyjw0ac8f5tpuf9frh35m7saw6rmplryv7aa", + "source": "bcrt1qpm0krm9adpcqdeu2tmuzwdl325fr9768g564cg", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1729328647, + "block_time": 1729415912, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "17960e12e33ae36f5f844948ca043a7d183157940fa7b3bd8ee49513017f443a", + "tx_hash": "ec570fcd1f8c5b9495121143779d9c60083708d5ab38cd85ce3c06da15639e9b", "block_index": 117, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1729328643, + "block_time": 1729415908, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -7586,9 +7584,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542", + "tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7597,7 +7595,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7607,7 +7605,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729328743, + "block_time": 1729416013, "asset_info": { "divisible": true, "asset_longname": null, @@ -7623,9 +7621,9 @@ }, { "tx_index": 29, - "tx_hash": "25d2b8e15aaa4279392119678e91d6d29571f9a4519b788e163fc67ba60f0b14", + "tx_hash": "7f6a4ca9e3d855d805ca980cee733de3d16f239f2c2e40241d4a607e55a74b86", "block_index": 142, - "source": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7634,7 +7632,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "origin": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7644,7 +7642,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729328748, + "block_time": 1729416017, "asset_info": { "divisible": true, "asset_longname": null, @@ -7660,9 +7658,9 @@ }, { "tx_index": 30, - "tx_hash": "1e35417090f653a2903741ab9faa6151e1f08e891076183013511c2edfef26ca", + "tx_hash": "8463aade5566a0f1e8c8f67bc3a36514814d844fa9a8925b244600e282392b52", "block_index": 150, - "source": "n4ZsbPM25kFYFpE2f9V3tLtN4rhmQvv1nR", + "source": "mxn9viJTMZ952ierCiR5GaQwzaXBTAAdFh", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -7670,10 +7668,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "796e5219a61e4ee75e71544091ab14ee804ba21345fcb3d80923ab01f9d657f9", - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "last_status_tx_hash": "3418f6969c77f8bec6ebfbddccf5f09827ad4f0155e0eda4417c4647d168a18f", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 0, - "last_status_tx_source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "last_status_tx_source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -7681,7 +7679,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729328792, + "block_time": 1729416053, "asset_info": { "divisible": true, "asset_longname": null, @@ -7697,18 +7695,18 @@ }, { "tx_index": 33, - "tx_hash": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b", + "tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", "block_index": 196, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "oracle_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "last_status_tx_hash": null, - "origin": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "origin": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7718,7 +7716,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -7739,9 +7737,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542", + "tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7750,7 +7748,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7760,7 +7758,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729328743, + "block_time": 1729416013, "asset_info": { "divisible": true, "asset_longname": null, @@ -7780,19 +7778,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "a9a3578379153ca360a66660c00a998da120a92a2b8be15ae1b7ae80d2787a93", + "tx_hash": "77f26b77b205be83c57e46f437168ffa54afdd0f8fe2855da90317153ec41ae4", "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542", + "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7800,7 +7798,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7815,7 +7813,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729328743, + "block_time": 1729416013, "asset_info": { "divisible": true, "asset_longname": null, @@ -7829,19 +7827,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2596a5f3d099d83b293e6ab485266586439d3362b1dd46f02ea075eb38431b53", + "tx_hash": "ea65dde6c36bf0ee93197974ace92a2b2a68a0821b6f382104f98419c6ffe544", "block_index": 140, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542", + "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7849,7 +7847,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7864,7 +7862,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729328739, + "block_time": 1729416009, "asset_info": { "divisible": true, "asset_longname": null, @@ -7883,20 +7881,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "51eed6917af775e4fdffc81b0eb1484ad7ae4677e2905bb9966e8de45f9a683d", + "tx_hash": "0c95334ce0b328f2ff4e1e44c4e96d503ba60b7b2b1fbabeabef5f3ac971b288", "block_index": 154, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729328809, + "block_time": 1729416070, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -7917,20 +7915,20 @@ "/v2/dividends/": { "result": { "tx_index": 41, - "tx_hash": "51eed6917af775e4fdffc81b0eb1484ad7ae4677e2905bb9966e8de45f9a683d", + "tx_hash": "0c95334ce0b328f2ff4e1e44c4e96d503ba60b7b2b1fbabeabef5f3ac971b288", "block_index": 154, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729328809, + "block_time": 1729416070, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -7953,12 +7951,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "51eed6917af775e4fdffc81b0eb1484ad7ae4677e2905bb9966e8de45f9a683d", + "event": "0c95334ce0b328f2ff4e1e44c4e96d503ba60b7b2b1fbabeabef5f3ac971b288", "tx_index": 41, - "utxo": "431502146e472222b710816340a06f62edfa970858f475dc55df9a461ca3b7bf:0", - "utxo_address": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "utxo": "cebea8c09925ead707b16a98370c550b4a41a22723ed309d31de931fe4f62b71:0", + "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "confirmed": true, - "block_time": 1729328809, + "block_time": 1729416070, "asset_info": { "divisible": true, "asset_longname": null, @@ -7970,16 +7968,16 @@ }, { "block_index": 154, - "address": "bcrt1qg0yp2a86t6cxyuw2efl4ceq3tjecjled3vscyk", + "address": "bcrt1qkgcujj6uea6hshreznk6fw8e22utgsdyqd02hg", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "51eed6917af775e4fdffc81b0eb1484ad7ae4677e2905bb9966e8de45f9a683d", + "event": "0c95334ce0b328f2ff4e1e44c4e96d503ba60b7b2b1fbabeabef5f3ac971b288", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729328809, + "block_time": 1729416070, "asset_info": { "divisible": true, "asset_longname": null, @@ -8000,27 +7998,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "4b0e19998a70ce7a0bf7b637c8174fbba5baf085312ac2097891dcb834d889b7", - "messages_hash": "a3ca428483eaef8fb902f7d899a2fdd680f956bb01f834d0be6d2348137b737e", + "ledger_hash": "f94b9a0cde6ac7ff4c57657df4d33d9a8f1dae9ef5de975f5df1dcc5cc851ece", + "messages_hash": "90707f8a533719986dc3f0949bda3f2eb1e3b12b4d1113e9caccbd9b4d5efb63", "transaction_count": 1, - "txlist_hash": "fc196af6b16a0cd8b7630d9935290587a5303e9610b40774b561bb6efd0d5833", - "block_time": 1729328997 + "txlist_hash": "41aa08840203abe0c1883ea81febef8fdb9238af22a71a5495b39bfc7c1db71b", + "block_time": 1729416251 }, "tx_hash": null, "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 }, { "event_index": 562, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62 }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 }, { "event_index": 561, @@ -8029,14 +8027,14 @@ "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "destination": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b", - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -8047,9 +8045,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 }, { "event_index": 560, @@ -8058,9 +8056,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "status": 0, - "tx_hash": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b", + "tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", "asset_info": { "divisible": true, "asset_longname": null, @@ -8070,24 +8068,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -8097,9 +8095,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 } ], "next_cursor": 558, @@ -8111,15 +8109,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "4b0e19998a70ce7a0bf7b637c8174fbba5baf085312ac2097891dcb834d889b7", - "messages_hash": "a3ca428483eaef8fb902f7d899a2fdd680f956bb01f834d0be6d2348137b737e", + "ledger_hash": "f94b9a0cde6ac7ff4c57657df4d33d9a8f1dae9ef5de975f5df1dcc5cc851ece", + "messages_hash": "90707f8a533719986dc3f0949bda3f2eb1e3b12b4d1113e9caccbd9b4d5efb63", "transaction_count": 1, - "txlist_hash": "fc196af6b16a0cd8b7630d9935290587a5303e9610b40774b561bb6efd0d5833", - "block_time": 1729328997 + "txlist_hash": "41aa08840203abe0c1883ea81febef8fdb9238af22a71a5495b39bfc7c1db71b", + "block_time": 1729416251 }, "tx_hash": null, "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 } }, "/v2/events/counts": { @@ -8154,16 +8152,16 @@ "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -8173,9 +8171,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 }, { "event_index": 557, @@ -8185,12 +8183,12 @@ "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "quantity": 1500000000, "tx_index": 62, - "utxo": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", - "utxo_address": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", - "block_time": 1729328997, + "utxo": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -8200,9 +8198,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 }, { "event_index": 554, @@ -8212,39 +8210,39 @@ "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "quantity": 1500000000, "tx_index": 62, - "utxo": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", - "utxo_address": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", - "block_time": 1729328997, + "utxo": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "block_time": 1729416251, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 }, { "event_index": 540, "event": "CREDIT", "params": { - "address": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "asset": "XCP", "block_index": 194, "calling_function": "sweep", - "event": "75becfa6beb8ad5af35ed1fb85254b67d1fab4fb19f4e745446677c859461e60", + "event": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", "quantity": 74499387833, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1729328983, + "block_time": 1729416237, "asset_info": { "divisible": true, "asset_longname": null, @@ -8254,36 +8252,36 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "75becfa6beb8ad5af35ed1fb85254b67d1fab4fb19f4e745446677c859461e60", + "tx_hash": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", "block_index": 194, - "block_time": 1729328983 + "block_time": 1729416237 }, { "event_index": 538, "event": "CREDIT", "params": { - "address": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "asset": "MYASSETA", "block_index": 194, "calling_function": "sweep", - "event": "75becfa6beb8ad5af35ed1fb85254b67d1fab4fb19f4e745446677c859461e60", + "event": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", "quantity": 10, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1729328983, + "block_time": 1729416237, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "75becfa6beb8ad5af35ed1fb85254b67d1fab4fb19f4e745446677c859461e60", + "tx_hash": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", "block_index": 194, - "block_time": 1729328983 + "block_time": 1729416237 } ], "next_cursor": 536, @@ -8300,27 +8298,27 @@ { "tx_index": 62, "dispense_index": 0, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", - "destination": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "destination": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b", + "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "oracle_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "last_status_tx_hash": null, - "origin": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "origin": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8335,7 +8333,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -8349,27 +8347,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "1fea7e4856521d6ef1a0b361c9820e9c3b8cfd4b563741479b822052676ab61e", + "tx_hash": "43c225715776decba49fea590847b184beb000f0be36e0c40c59cf79b4cc6b64", "block_index": 147, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", - "destination": "bcrt1qu2jyjw0ac8f5tpuf9frh35m7saw6rmplryv7aa", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "destination": "bcrt1qpm0krm9adpcqdeu2tmuzwdl325fr9768g564cg", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b", + "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "oracle_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "last_status_tx_hash": null, - "origin": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "origin": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8384,7 +8382,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729328769, + "block_time": 1729416039, "asset_info": { "divisible": true, "asset_longname": null, @@ -8398,19 +8396,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "a9a3578379153ca360a66660c00a998da120a92a2b8be15ae1b7ae80d2787a93", + "tx_hash": "77f26b77b205be83c57e46f437168ffa54afdd0f8fe2855da90317153ec41ae4", "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542", + "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8418,7 +8416,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8433,7 +8431,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729328743, + "block_time": 1729416013, "asset_info": { "divisible": true, "asset_longname": null, @@ -8447,19 +8445,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "2596a5f3d099d83b293e6ab485266586439d3362b1dd46f02ea075eb38431b53", + "tx_hash": "ea65dde6c36bf0ee93197974ace92a2b2a68a0821b6f382104f98419c6ffe544", "block_index": 140, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "c016c992bbdab670ce8c8c0380725a9c388b8b71a3856ef63578099069069542", + "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8467,7 +8465,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8482,7 +8480,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729328739, + "block_time": 1729416009, "asset_info": { "divisible": true, "asset_longname": null, @@ -8501,10 +8499,10 @@ "result": [ { "tx_index": 62, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "source": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1:1", - "destination": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", + "source": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", + "destination": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -8512,7 +8510,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -8525,10 +8523,10 @@ }, { "tx_index": 62, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "source": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1:1", - "destination": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", + "source": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", + "destination": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -8536,11 +8534,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -8549,10 +8547,10 @@ }, { "tx_index": 56, - "tx_hash": "0db25b816b9c26ff7c0412f71dd828e22496d1003d9ad2febad4f57e9edf125f", + "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", "block_index": 190, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "asset": "XCP", "quantity": 10, "status": "valid", @@ -8560,7 +8558,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328967, + "block_time": 1729416220, "asset_info": { "divisible": true, "asset_longname": null, @@ -8573,10 +8571,10 @@ }, { "tx_index": 56, - "tx_hash": "0db25b816b9c26ff7c0412f71dd828e22496d1003d9ad2febad4f57e9edf125f", + "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", "block_index": 190, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8584,11 +8582,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328967, + "block_time": 1729416220, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -8597,10 +8595,10 @@ }, { "tx_index": 56, - "tx_hash": "0db25b816b9c26ff7c0412f71dd828e22496d1003d9ad2febad4f57e9edf125f", + "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", "block_index": 190, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "destination": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8608,11 +8606,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729328967, + "block_time": 1729416220, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -8627,14 +8625,14 @@ "result": [ { "tx_index": 48, - "tx_hash": "ad7cd24a91d670e0fb520c404cfc2fa0df0ee9a9f8bf4092b67790f6ca07c072", + "tx_hash": "bb2aa89179834fafe03acecbbade4d6fd928251f2923a59b4656957ab3685976", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "transfer": false, "callable": false, "call_date": 0, @@ -8649,20 +8647,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729328839, + "block_time": 1729416112, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "1cfc0723b6657889bf8b79917a060d28f6d6580512ca510c795b1b8d119fbf8b", + "tx_hash": "55efb0e7632d7d4e2918c6d68f1a68cf6ebb205b5bf25194db11afe19f288dc0", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "transfer": false, "callable": false, "call_date": 0, @@ -8677,20 +8675,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729328835, + "block_time": 1729416107, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "4fb72a16283af8eaa3aef5a92ab6501220aa8af621848fcd8fa6db58b588c38b", + "tx_hash": "915196486b240c228f8f48b8bc894be2372a5f29da06926a1aad6050d298f626", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "transfer": false, "callable": false, "call_date": 0, @@ -8705,20 +8703,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729328831, + "block_time": 1729416103, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "71865058eba11d6649831cdf7a6928844665cb4b60156d41fd86f75bf504d846", + "tx_hash": "d875bf5554d034912c2a9eb7d151d9f055e3135142c077fa342ce253d4b54d3e", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "transfer": false, "callable": false, "call_date": 0, @@ -8733,20 +8731,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729328827, + "block_time": 1729416098, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 44, - "tx_hash": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1", + "tx_hash": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2", "msg_index": 0, "block_index": 157, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", - "issuer": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "source": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "issuer": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "transfer": false, "callable": false, "call_date": 0, @@ -8761,7 +8759,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729328823, + "block_time": 1729416094, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -8772,14 +8770,14 @@ "/v2/issuances/": { "result": { "tx_index": 48, - "tx_hash": "ad7cd24a91d670e0fb520c404cfc2fa0df0ee9a9f8bf4092b67790f6ca07c072", + "tx_hash": "bb2aa89179834fafe03acecbbade4d6fd928251f2923a59b4656957ab3685976", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "transfer": false, "callable": false, "call_date": 0, @@ -8794,7 +8792,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729328839, + "block_time": 1729416112, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -8803,16 +8801,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "75becfa6beb8ad5af35ed1fb85254b67d1fab4fb19f4e745446677c859461e60", + "tx_hash": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", "block_index": 194, - "source": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", - "destination": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729328983, + "block_time": 1729416237, "fee_paid_normalized": "0.00600000" } ], @@ -8823,16 +8821,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "75becfa6beb8ad5af35ed1fb85254b67d1fab4fb19f4e745446677c859461e60", + "tx_hash": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", "block_index": 194, - "source": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", - "destination": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729328983, + "block_time": 1729416237, "fee_paid_normalized": "0.00600000" } ], @@ -8843,9 +8841,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "c6c3f4f28cd8a39b7cdeec66e5741c0733c6e50a40d6c9104d561d7dc89fd0f3", + "tx_hash": "1945e07d63301090025795858c49fef361dfc2d9851d9e074cc4215d9d91255f", "block_index": 138, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8853,14 +8851,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729328730, + "block_time": 1729416000, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "d643f35218e54f20347aca5fafebc46a8b2689364473bfb9cef174c653027a36", + "tx_hash": "674a65a64a4826a0b0d490aca3e07b7fd65869b1649206fa97265a826ed95b11", "block_index": 137, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -8868,7 +8866,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729328726, + "block_time": 1729415995, "fee_fraction_int_normalized": "0.00000000" } ], @@ -8878,9 +8876,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "c6c3f4f28cd8a39b7cdeec66e5741c0733c6e50a40d6c9104d561d7dc89fd0f3", + "tx_hash": "1945e07d63301090025795858c49fef361dfc2d9851d9e074cc4215d9d91255f", "block_index": 138, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8888,17 +8886,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729328730, + "block_time": 1729416000, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "f3cd8ee918135e3b1b1660a69a127e57520bdc3a177d301e4f4786d619538ba5", + "tx_hash": "68455c81e91976b50973996dd5e3b1bafeb9009b2ca1a238e4a1897afbef2d46", "tx_index": 42, "block_index": 155, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -8923,13 +8921,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729328813 + "block_time": 1729416085 }, { - "tx_hash": "c34eba9dc88240af07608224d29e4ac423e6b2a0fb83407b5a51c795fdef2d81", + "tx_hash": "251c310af851cba2ce4a58932e7cb803aeb6a9f7a55bac9bbf688ba85a48ef28", "tx_index": 22, "block_index": 135, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -8954,13 +8952,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729328718 + "block_time": 1729415987 }, { - "tx_hash": "6b9abfb51341a47410e2295ff273b93864f6753a41c256e3f388ab91bc778c6b", + "tx_hash": "dbd38cf37e8f0c24ae54d5b6169437c48f55fb84fc0583aa0d79858c0f9a69fc", "tx_index": 18, "block_index": 131, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -8985,13 +8983,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729328702 + "block_time": 1729415969 }, { - "tx_hash": "c625b42b58b9d8785ff1002e4c734b8e720b7fc7cef912557d0c76850bd363f4", + "tx_hash": "9f887ea5403be9aa383402f97d0e8f856de8951ba3327060b3af17321c9478ad", "tx_index": 14, "block_index": 130, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -9016,13 +9014,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729328697 + "block_time": 1729415965 }, { - "tx_hash": "655c05dbe746884a61caffb235cfb4afe80cda0d2858b276eae7ca9c493dd775", + "tx_hash": "bb813d64db8f65171084ffa83e7128316586ef0283b09807d288d02a0b8e58da", "tx_index": 10, "block_index": 125, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -9047,12 +9045,146 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729328677 + "block_time": 1729415943 } ], "next_cursor": null, "result_count": 5 }, + "/v2/fairmints": { + "result": [ + { + "tx_hash": "6b50dfb9f0288a39497978e107102a20fca9269f60c348a7d3252a97951c3dfa", + "tx_index": 23, + "block_index": 136, + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "fairminter_tx_hash": "251c310af851cba2ce4a58932e7cb803aeb6a9f7a55bac9bbf688ba85a48ef28", + "asset": "FAIRMINTD", + "earn_quantity": 40, + "paid_quantity": 34, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1729415991, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "divisible": true, + "locked": false + } + }, + { + "tx_hash": "ec08c12c9bbaea508612d23ebc7653d37f4f177f216252e62a801b65f3858840", + "tx_index": 21, + "block_index": 134, + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "fairminter_tx_hash": "dbd38cf37e8f0c24ae54d5b6169437c48f55fb84fc0583aa0d79858c0f9a69fc", + "asset": "FAIRMINTC", + "earn_quantity": 11, + "paid_quantity": 3, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1729415982, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "divisible": true, + "locked": false + } + }, + { + "tx_hash": "187f59a0c410f68e7a905a52efc5ca6aa0cd19f9a082e30ab709d107d8abc5a8", + "tx_index": 20, + "block_index": 133, + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "fairminter_tx_hash": "dbd38cf37e8f0c24ae54d5b6169437c48f55fb84fc0583aa0d79858c0f9a69fc", + "asset": "FAIRMINTC", + "earn_quantity": 3, + "paid_quantity": 1, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1729415978, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "divisible": true, + "locked": false + } + }, + { + "tx_hash": "77cc9d1e2521b94e0c146a22a59691f4c8bc6df0a58ab18d594ecef174baa7ae", + "tx_index": 19, + "block_index": 132, + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "fairminter_tx_hash": "dbd38cf37e8f0c24ae54d5b6169437c48f55fb84fc0583aa0d79858c0f9a69fc", + "asset": "FAIRMINTC", + "earn_quantity": 5, + "paid_quantity": 1, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1729415974, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "divisible": true, + "locked": false + } + }, + { + "tx_hash": "3c243ab902c141cee432205867f5e8b017982288a7857714a37cdfeb5c583742", + "tx_index": 17, + "block_index": 129, + "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "fairminter_tx_hash": "9f887ea5403be9aa383402f97d0e8f856de8951ba3327060b3af17321c9478ad", + "asset": "FAIRMINTB", + "earn_quantity": 100000000, + "paid_quantity": 100000000, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1729415961, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "divisible": true, + "locked": false + } + } + ], + "next_cursor": 5, + "result_count": 10 + }, + "/v2/fairmints/": { + "result": { + "tx_hash": "6b50dfb9f0288a39497978e107102a20fca9269f60c348a7d3252a97951c3dfa", + "tx_index": 23, + "block_index": 136, + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "fairminter_tx_hash": "251c310af851cba2ce4a58932e7cb803aeb6a9f7a55bac9bbf688ba85a48ef28", + "asset": "FAIRMINTD", + "earn_quantity": 40, + "paid_quantity": 34, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1729415991, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "divisible": true, + "locked": false + } + } + }, "/v2/bitcoin/addresses/utxos": { "result": [ { @@ -9061,8 +9193,8 @@ "value": 4949970000, "confirmations": 50, "amount": 49.4997, - "txid": "1fea7e4856521d6ef1a0b361c9820e9c3b8cfd4b563741479b822052676ab61e", - "address": "bcrt1qu2jyjw0ac8f5tpuf9frh35m7saw6rmplryv7aa" + "txid": "43c225715776decba49fea590847b184beb000f0be36e0c40c59cf79b4cc6b64", + "address": "bcrt1qpm0krm9adpcqdeu2tmuzwdl325fr9768g564cg" }, { "vout": 2, @@ -9070,8 +9202,8 @@ "value": 100000, "confirmations": 40, "amount": 0.001, - "txid": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1", - "address": "bcrt1qudangnqpexn0yrqnnyjlm0waham8cyn9lw5pys" + "txid": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2", + "address": "bcrt1qsadvwd5q5legncwy7gd0e8nzcar0xtmpjd6smx" } ], "next_cursor": null, @@ -9080,28 +9212,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "3ac7858b4e6053388907f40c38e43800f7856d7dd4d00aa2a49e1bc8cdb2c407" + "tx_hash": "41940d57c4a9b1f5d0a22cb937643b5a48181fabeb27a4fe2ae5e3b102045d0f" }, { - "tx_hash": "e07e301352fc03f3fa32de1f8c0b07f8817a96104c5a64171cff40e24d3ed90e" + "tx_hash": "2df6cb6457b25d97b2a3c828c2ccdf94125693a11ccd1385a63069772b1df123" }, { - "tx_hash": "c453fbe7a273ff9bf57a48941588a7603510058ae7da16dde5acbfca97f26522" + "tx_hash": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024" }, { - "tx_hash": "735e2f5c7e85a8477cf81a6916a9e0f65e434d97b273863af40b880a489e4b43" + "tx_hash": "4ca32aa99d8580d669b23533fc8915333ca201ca36a675d0713d4412a1d43d77" }, { - "tx_hash": "af232ad37b11b523b1a50157542fc184c3474026e2470c0a5456a7c7bbe4be5f" + "tx_hash": "a744820b0b584d066a290e88a83e879d7632baf3894ca06daf56aeab5281ebb7" }, { - "tx_hash": "75becfa6beb8ad5af35ed1fb85254b67d1fab4fb19f4e745446677c859461e60" + "tx_hash": "cdcf917d341dcb5152a735abf3e6fbe5c3f3df03e327bdacc1f0c3f858ddbbeb" }, { - "tx_hash": "fdc41b9a899f33243268cc750b9ce72c9db1c75999a1e6c7619ab9e3de573a86" + "tx_hash": "6812bf6b8199c898a40d2bc0949e80556f9b275b19f73b96a09fd3f2f0c691f0" }, { - "tx_hash": "6caf6f14d5c240964758a1664962a0d7c7a904a5889b4cdcde5e3226232613f1" + "tx_hash": "e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2" } ], "next_cursor": null, @@ -9109,8 +9241,8 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 5, - "tx_hash": "406ba4682d167e0c11dc3f8af9954c76b3b4ae9538b70b7cd43f0eb9141577ca" + "block_index": 8, + "tx_hash": "fa9544479a11d9853792beb7c26938301dd85ee82f3a8d9a4f3495b4c5e42512" } }, "/v2/bitcoin/addresses/
/utxos": { @@ -9121,17 +9253,17 @@ "value": 4949970000, "confirmations": 50, "amount": 49.4997, - "txid": "1fea7e4856521d6ef1a0b361c9820e9c3b8cfd4b563741479b822052676ab61e" + "txid": "43c225715776decba49fea590847b184beb000f0be36e0c40c59cf79b4cc6b64" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "03d604cba419087cd219958e0efda726c41d0eace9f1e233395345ecc412ec4f60" + "result": "026a1a918fbc2c6d5fb3aa96a683c6930e932f1484f06179aa0a146e66d4d4cb40" }, "/v2/bitcoin/transactions/": { - "result": "02000000000101d1084e07a4e2e871f16fd116acf7d0b9b0031066a645c020825fad8e51f86ca50100000000ffffffff03e8030000000000001600141d6078f1db25d3de6e9a6c6ff0c087bf1282704300000000000000000c6a0ae837e781c487bd1fcdd6dced082701000000160014614f5338bb088ad3666922da50ce1b4595dc51350247304402207f6d27e8c7ada8b610bc2fb648891ff1e7f5eda524c8668b0c45fdaf0f1ba4080220443ad861b26d73945560c415ae966477aff155c1a056647d8587d5e3ab2807c6012103a2c238a5d30d0d92ced82be4a7ce3a88e55a9b26eaa5bb3c3c888f3b94cff70900000000" + "result": "02000000000101c2521e5851fa91a88dcab7d1cdeb177b78e1187975db3f54e8704b95d235493c0100000000ffffffff03e803000000000000160014d8738784ceb0bcf1708fd9c365706baff86fe9da00000000000000000c6a0a7f8e9e8ef534ab6d96e8dced08270100000016001467aa929a8ea1b72138c4a091440afffcf0ebeb160247304402201510ffaba3089e65d1da3d6a3475dc6b6694a9a2fcb0da86c18cb2884ea6eb1b022061ade669879bbe17147ea02e83b8a55f690d02ea1673da16a5bb4ea006af4897012103101e7eeabdd5073988f3ffc0f17d1ed34e6754fb80183bcf5a60f1698898086600000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 58603 @@ -9154,27 +9286,27 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "tx_index": 63 }, - "timestamp": 1729329001.736676 + "timestamp": 1729416255.7714357 }, { - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "destination": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "memo": null, "quantity": 10000, - "source": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "status": "valid", - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "tx_index": 63, "asset_info": { "divisible": true, @@ -9185,22 +9317,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729329001.736676 + "timestamp": 1729416255.7714357 }, { - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "event": "CREDIT", "params": { - "address": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "event": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -9210,22 +9342,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729329001.736676 + "timestamp": 1729416255.7714357 }, { - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "asset": "XCP", "block_index": 196, - "event": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "event": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -9235,30 +9367,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729329001.736676 + "timestamp": 1729416255.7714357 }, { - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729329001.736676, + "block_time": 1729416255.7714357, "btc_amount": 0, - "data": "0200000000000000010000000000002710802bb48e36a1ca3ac00f4cca764c8517130910023b", + "data": "020000000000000001000000000000271080b964d3e562cdc29be80c17fb47d0461efe1c5a5d", "destination": "", "fee": 10000, - "source": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "tx_index": 63, - "utxos_info": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a:1", + "utxos_info": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "memo": null, "asset_info": { "divisible": true, @@ -9272,7 +9404,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729329001.736676 + "timestamp": 1729416255.7714357 } ], "next_cursor": null, @@ -9281,19 +9413,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "event": "CREDIT", "params": { - "address": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "event": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -9303,7 +9435,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729329001.736676 + "timestamp": 1729416255.7714357 } ], "next_cursor": null, @@ -9312,27 +9444,27 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "tx_index": 63 }, - "timestamp": 1729329001.736676 + "timestamp": 1729416255.7714357 }, { - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "destination": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "memo": null, "quantity": 10000, - "source": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "status": "valid", - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "tx_index": 63, "asset_info": { "divisible": true, @@ -9343,22 +9475,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729329001.736676 + "timestamp": 1729416255.7714357 }, { - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "event": "CREDIT", "params": { - "address": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "event": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -9368,22 +9500,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729329001.736676 + "timestamp": 1729416255.7714357 }, { - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "asset": "XCP", "block_index": 196, - "event": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "event": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -9393,30 +9525,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729329001.736676 + "timestamp": 1729416255.7714357 }, { - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729329001.736676, + "block_time": 1729416255.7714357, "btc_amount": 0, - "data": "0200000000000000010000000000002710802bb48e36a1ca3ac00f4cca764c8517130910023b", + "data": "020000000000000001000000000000271080b964d3e562cdc29be80c17fb47d0461efe1c5a5d", "destination": "", "fee": 10000, - "source": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", - "tx_hash": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a", + "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", "tx_index": 63, - "utxos_info": "89e43c95c0b47e831776d29f3404afa8daa127127c96c3840f733c8843bd0f5a:1", + "utxos_info": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "memo": null, "asset_info": { "divisible": true, @@ -9430,7 +9562,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729329001.736676 + "timestamp": 1729416255.7714357 } ], "next_cursor": null, @@ -9452,15 +9584,15 @@ "event_index": 550, "event": "NEW_BLOCK", "params": { - "block_hash": "6cc2b82f06aeb0c72e06479a6b4c738aa8b77e6f9950befce25b29af7462b71a", + "block_hash": "6507d71596a5bde486e1a5c1e33be2c96c037acf161f1c5cb41cd6e966e2d3a2", "block_index": 196, - "block_time": 1729328997, + "block_time": 1729416251, "difficulty": 545259519, - "previous_block_hash": "077fdc319fd71dd9c240c75deca71a0d77e058a388264622e922d44c1245be33" + "previous_block_hash": "3ecdd06511d985f7dd0ec1b9070e68ab57bd0c147b76d85bc1ac386a188c75a3" }, "tx_hash": null, "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 } ], "next_cursor": 544, @@ -9472,17 +9604,17 @@ "event_index": 551, "event": "NEW_TRANSACTION", "params": { - "block_hash": "6cc2b82f06aeb0c72e06479a6b4c738aa8b77e6f9950befce25b29af7462b71a", + "block_hash": "6507d71596a5bde486e1a5c1e33be2c96c037acf161f1c5cb41cd6e966e2d3a2", "block_index": 196, - "block_time": 1729328997, + "block_time": 1729416251, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "destination": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "fee": 0, - "source": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "source": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62, - "utxos_info": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1:1 5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", + "utxos_info": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1 9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9492,9 +9624,9 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 } ], "next_cursor": 545, @@ -9508,16 +9640,16 @@ "params": { "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "destination": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "out_index": 0, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62, - "block_time": 1729328997, + "block_time": 1729416251, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 } ], "next_cursor": 277, @@ -9530,15 +9662,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "4b0e19998a70ce7a0bf7b637c8174fbba5baf085312ac2097891dcb834d889b7", - "messages_hash": "a3ca428483eaef8fb902f7d899a2fdd680f956bb01f834d0be6d2348137b737e", + "ledger_hash": "f94b9a0cde6ac7ff4c57657df4d33d9a8f1dae9ef5de975f5df1dcc5cc851ece", + "messages_hash": "90707f8a533719986dc3f0949bda3f2eb1e3b12b4d1113e9caccbd9b4d5efb63", "transaction_count": 1, - "txlist_hash": "fc196af6b16a0cd8b7630d9935290587a5303e9610b40774b561bb6efd0d5833", - "block_time": 1729328997 + "txlist_hash": "41aa08840203abe0c1883ea81febef8fdb9238af22a71a5495b39bfc7c1db71b", + "block_time": 1729416251 }, "tx_hash": null, "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 } ], "next_cursor": 549, @@ -9551,12 +9683,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62 }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 } ], "next_cursor": 548, @@ -9572,12 +9704,12 @@ "address": null, "asset": "XCP", "block_index": 196, - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "quantity": 1500000000, "tx_index": 62, - "utxo": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1:1", - "utxo_address": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", - "block_time": 1729328997, + "utxo": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", + "utxo_address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -9587,9 +9719,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 } ], "next_cursor": 553, @@ -9601,16 +9733,16 @@ "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -9620,9 +9752,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 } ], "next_cursor": 557, @@ -9636,14 +9768,14 @@ "params": { "asset": "XCP", "block_index": 189, - "destination": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "memo": null, "quantity": 10000, - "source": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "status": "valid", - "tx_hash": "e07e301352fc03f3fa32de1f8c0b07f8817a96104c5a64171cff40e24d3ed90e", + "tx_hash": "41940d57c4a9b1f5d0a22cb937643b5a48181fabeb27a4fe2ae5e3b102045d0f", "tx_index": 55, - "block_time": 1729328963, + "block_time": 1729416215, "asset_info": { "divisible": true, "asset_longname": null, @@ -9653,9 +9785,9 @@ }, "quantity_normalized": "0.00010000" }, - "tx_hash": "e07e301352fc03f3fa32de1f8c0b07f8817a96104c5a64171cff40e24d3ed90e", + "tx_hash": "41940d57c4a9b1f5d0a22cb937643b5a48181fabeb27a4fe2ae5e3b102045d0f", "block_index": 189, - "block_time": 1729328963 + "block_time": 1729416215 } ], "next_cursor": null, @@ -9669,15 +9801,15 @@ "params": { "asset": "XCP", "block_index": 190, - "destination": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "status": "valid", - "tx_hash": "0db25b816b9c26ff7c0412f71dd828e22496d1003d9ad2febad4f57e9edf125f", + "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", "tx_index": 56, - "block_time": 1729328967, + "block_time": 1729416220, "asset_info": { "divisible": true, "asset_longname": null, @@ -9687,9 +9819,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "0db25b816b9c26ff7c0412f71dd828e22496d1003d9ad2febad4f57e9edf125f", + "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", "block_index": 190, - "block_time": 1729328967 + "block_time": 1729416220 } ], "next_cursor": 509, @@ -9712,20 +9844,20 @@ "event": "SWEEP", "params": { "block_index": 194, - "destination": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "status": "valid", - "tx_hash": "75becfa6beb8ad5af35ed1fb85254b67d1fab4fb19f4e745446677c859461e60", + "tx_hash": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", "tx_index": 60, - "block_time": 1729328983, + "block_time": 1729416237, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "75becfa6beb8ad5af35ed1fb85254b67d1fab4fb19f4e745446677c859461e60", + "tx_hash": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", "block_index": 194, - "block_time": 1729328983 + "block_time": 1729416237 } ], "next_cursor": null, @@ -9742,15 +9874,15 @@ "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "status": "valid", - "tx_hash": "51eed6917af775e4fdffc81b0eb1484ad7ae4677e2905bb9966e8de45f9a683d", + "tx_hash": "0c95334ce0b328f2ff4e1e44c4e96d503ba60b7b2b1fbabeabef5f3ac971b288", "tx_index": 41, - "block_time": 1729328809, + "block_time": 1729416070, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, @@ -9764,9 +9896,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "51eed6917af775e4fdffc81b0eb1484ad7ae4677e2905bb9966e8de45f9a683d", + "tx_hash": "0c95334ce0b328f2ff4e1e44c4e96d503ba60b7b2b1fbabeabef5f3ac971b288", "block_index": 154, - "block_time": 1729328809 + "block_time": 1729416070 } ], "next_cursor": null, @@ -9787,11 +9919,11 @@ "asset_longname": "A95428959745315388.SUBNUMERIC", "asset_name": "A95428956980101314", "block_index": 161, - "block_time": 1729328839 + "block_time": 1729416112 }, - "tx_hash": "ad7cd24a91d670e0fb520c404cfc2fa0df0ee9a9f8bf4092b67790f6ca07c072", + "tx_hash": "bb2aa89179834fafe03acecbbade4d6fd928251f2923a59b4656957ab3685976", "block_index": 161, - "block_time": 1729328839 + "block_time": 1729416112 } ], "next_cursor": 381, @@ -9814,22 +9946,22 @@ "description_locked": false, "divisible": true, "fee_paid": 0, - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "status": "valid", "transfer": false, - "tx_hash": "ad7cd24a91d670e0fb520c404cfc2fa0df0ee9a9f8bf4092b67790f6ca07c072", + "tx_hash": "bb2aa89179834fafe03acecbbade4d6fd928251f2923a59b4656957ab3685976", "tx_index": 48, - "block_time": 1729328839, + "block_time": 1729416112, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "ad7cd24a91d670e0fb520c404cfc2fa0df0ee9a9f8bf4092b67790f6ca07c072", + "tx_hash": "bb2aa89179834fafe03acecbbade4d6fd928251f2923a59b4656957ab3685976", "block_index": 161, - "block_time": 1729328839 + "block_time": 1729416112 } ], "next_cursor": 388, @@ -9844,12 +9976,12 @@ "asset": "XCP", "block_index": 195, "quantity": 1, - "source": "bcrt1qemedvke8utc5s2ec05ly8p4zef3jn085nmpz3r", + "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", "status": "valid", "tag": "64657374726f79", - "tx_hash": "a2796a7a01cac72fd1b2e54ffda7f4880fcc653db5d80725a8ec6499d028f44c", + "tx_hash": "849f54d8426192c0270d4d240627ba157876e3601948aed0ac24e730dcab52d7", "tx_index": 61, - "block_time": 1729328988, + "block_time": 1729416242, "asset_info": { "divisible": true, "asset_longname": null, @@ -9859,9 +9991,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "a2796a7a01cac72fd1b2e54ffda7f4880fcc653db5d80725a8ec6499d028f44c", + "tx_hash": "849f54d8426192c0270d4d240627ba157876e3601948aed0ac24e730dcab52d7", "block_index": 195, - "block_time": 1729328988 + "block_time": 1729416242 } ], "next_cursor": 157, @@ -9886,11 +10018,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "status": "open", - "tx_hash": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee", + "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", "tx_index": 59, - "block_time": 1729328980, + "block_time": 1729416233, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9914,9 +10046,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "72cacda8531c97fb0173fdc4a076faf761cee50edecff18bbc1c3f81453d65ee", + "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", "block_index": 193, - "block_time": 1729328980 + "block_time": 1729416233 } ], "next_cursor": 516, @@ -9934,20 +10066,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a_3ac7858b4e6053388907f40c38e43800f7856d7dd4d00aa2a49e1bc8cdb2c407", + "id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", "match_expire_index": 208, "status": "pending", - "tx0_address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "tx0_block_index": 186, "tx0_expiration": 21, - "tx0_hash": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a", + "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", "tx0_index": 51, - "tx1_address": "bcrt1q9w6gud4pegavqr6vefmyepghzvy3qq3m8mup24", + "tx1_address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", "tx1_block_index": 188, "tx1_expiration": 21, - "tx1_hash": "3ac7858b4e6053388907f40c38e43800f7856d7dd4d00aa2a49e1bc8cdb2c407", + "tx1_hash": "e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", "tx1_index": 54, - "block_time": 1729328949, + "block_time": 1729416201, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -9966,9 +10098,9 @@ "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "3ac7858b4e6053388907f40c38e43800f7856d7dd4d00aa2a49e1bc8cdb2c407", + "tx_hash": "e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", "block_index": 188, - "block_time": 1729328949 + "block_time": 1729416201 } ], "next_cursor": 475, @@ -9981,11 +10113,11 @@ "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "0c2af3b2417a07ed4648e73879edfec272c01513088c21273c745f504ee68731" + "tx_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d" }, - "tx_hash": "2b0f3f831aaf9342b4b2729c9f9ae4017edf58e751e2073a2025d0a7c1d8856a", + "tx_hash": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa", "block_index": 192, - "block_time": 1729328976 + "block_time": 1729416229 } ], "next_cursor": 490, @@ -9998,11 +10130,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "8dc06a5357ff8379528e48e73da07324302ec9fdcfc37f03305d0f9f0cfe28d5" + "tx_hash": "34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80" }, - "tx_hash": "f0f47bb2d44ffbcf2807d16bbeb95fd0d7ccba0a4666bb553e30490b0fb1ef31", + "tx_hash": "e6ca911a0b08aa83675667b9ca8e02c32aeb2da53061aba62dde2da5b66b8fe8", "block_index": 187, - "block_time": 1729328944 + "block_time": 1729416196 } ], "next_cursor": null, @@ -10014,13 +10146,13 @@ "event_index": 481, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a_8dc06a5357ff8379528e48e73da07324302ec9fdcfc37f03305d0f9f0cfe28d5", - "order_match_id": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a_8dc06a5357ff8379528e48e73da07324302ec9fdcfc37f03305d0f9f0cfe28d5", + "id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", + "order_match_id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", "status": "completed" }, - "tx_hash": "f0f47bb2d44ffbcf2807d16bbeb95fd0d7ccba0a4666bb553e30490b0fb1ef31", + "tx_hash": "e6ca911a0b08aa83675667b9ca8e02c32aeb2da53061aba62dde2da5b66b8fe8", "block_index": 187, - "block_time": 1729328944 + "block_time": 1729416196 } ], "next_cursor": 454, @@ -10034,18 +10166,18 @@ "params": { "block_index": 187, "btc_amount": 2000, - "destination": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "order_match_id": "fda1a910f05f203242acf5f6a67264077708c7bdd85b6a04398cd07a0146539a_8dc06a5357ff8379528e48e73da07324302ec9fdcfc37f03305d0f9f0cfe28d5", - "source": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "destination": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "order_match_id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "status": "valid", - "tx_hash": "f0f47bb2d44ffbcf2807d16bbeb95fd0d7ccba0a4666bb553e30490b0fb1ef31", + "tx_hash": "e6ca911a0b08aa83675667b9ca8e02c32aeb2da53061aba62dde2da5b66b8fe8", "tx_index": 53, - "block_time": 1729328944, + "block_time": 1729416196, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "f0f47bb2d44ffbcf2807d16bbeb95fd0d7ccba0a4666bb553e30490b0fb1ef31", + "tx_hash": "e6ca911a0b08aa83675667b9ca8e02c32aeb2da53061aba62dde2da5b66b8fe8", "block_index": 187, - "block_time": 1729328944 + "block_time": 1729416196 } ], "next_cursor": null, @@ -10058,16 +10190,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "0c2af3b2417a07ed4648e73879edfec272c01513088c21273c745f504ee68731", - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "offer_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "status": "valid", - "tx_hash": "2b0f3f831aaf9342b4b2729c9f9ae4017edf58e751e2073a2025d0a7c1d8856a", + "tx_hash": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa", "tx_index": 58, - "block_time": 1729328976 + "block_time": 1729416229 }, - "tx_hash": "2b0f3f831aaf9342b4b2729c9f9ae4017edf58e751e2073a2025d0a7c1d8856a", + "tx_hash": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa", "block_index": 192, - "block_time": 1729328976 + "block_time": 1729416229 } ], "next_cursor": null, @@ -10080,13 +10212,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 184, - "order_hash": "45de60b281c8ad2f70758c63cf0bb0b4f5e0f5015692a304541527b7f52bc82f", - "source": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", - "block_time": 1729328864 + "order_hash": "31f95069423c6c4ddfe0a4574c1a3369fb58dac7a6652ba054558eb83930ed0b", + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "block_time": 1729416128 }, "tx_hash": null, "block_index": 184, - "block_time": 1729328864 + "block_time": 1729416128 } ], "next_cursor": 460, @@ -10099,14 +10231,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 184, - "order_match_id": "417b7585cb70e5e9f3850385defa712ecae11bac8afe116a63861a98648f1b11_45de60b281c8ad2f70758c63cf0bb0b4f5e0f5015692a304541527b7f52bc82f", - "tx0_address": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "tx1_address": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", - "block_time": 1729328864 + "order_match_id": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8_31f95069423c6c4ddfe0a4574c1a3369fb58dac7a6652ba054558eb83930ed0b", + "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "tx1_address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "block_time": 1729416128 }, "tx_hash": null, "block_index": 184, - "block_time": 1729328864 + "block_time": 1729416128 } ], "next_cursor": null, @@ -10124,14 +10256,14 @@ "escrow_quantity": 10000, "give_quantity": 1, "give_remaining": 10000, - "oracle_address": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", - "origin": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "oracle_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "origin": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "satoshirate": 1, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "status": 0, - "tx_hash": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b", + "tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", "tx_index": 33, - "block_time": 1729328765, + "block_time": 1729416035, "asset_info": { "divisible": true, "asset_longname": null, @@ -10144,9 +10276,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b", + "tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", "block_index": 146, - "block_time": 1729328765 + "block_time": 1729416035 } ], "next_cursor": 254, @@ -10161,9 +10293,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "status": 0, - "tx_hash": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b", + "tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", "asset_info": { "divisible": true, "asset_longname": null, @@ -10173,9 +10305,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 } ], "next_cursor": 302, @@ -10189,13 +10321,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "n4ZsbPM25kFYFpE2f9V3tLtN4rhmQvv1nR", + "destination": "mxn9viJTMZ952ierCiR5GaQwzaXBTAAdFh", "dispense_quantity": 10, - "dispenser_tx_hash": "1e35417090f653a2903741ab9faa6151e1f08e891076183013511c2edfef26ca", - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", - "tx_hash": "e2ad17b52b9ef53dbf15e1fee1272c70afb2adc61638c05992799a0d8c6df1d9", + "dispenser_tx_hash": "8463aade5566a0f1e8c8f67bc3a36514814d844fa9a8925b244600e282392b52", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "tx_hash": "6a06e123de94dc01dda7d60f67d09fe6d4a304f0b7fcb2ddd6642b6895f8bf8a", "tx_index": 31, - "block_time": 1729328756, + "block_time": 1729416026, "asset_info": { "divisible": true, "asset_longname": null, @@ -10205,9 +10337,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "e2ad17b52b9ef53dbf15e1fee1272c70afb2adc61638c05992799a0d8c6df1d9", + "tx_hash": "6a06e123de94dc01dda7d60f67d09fe6d4a304f0b7fcb2ddd6642b6895f8bf8a", "block_index": 144, - "block_time": 1729328756 + "block_time": 1729416026 } ], "next_cursor": null, @@ -10222,14 +10354,14 @@ "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qv984xw9mpz9dxenfytd9pnsmgk2ac5f4czw7pe", + "destination": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "3fc839473e2e243ee9829cdf79c521828af34c7254f2d27c4777e6cf20feaf1b", - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -10240,9 +10372,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 } ], "next_cursor": 280, @@ -10257,19 +10389,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qr4s83uwmyhfaum56d3hlpsy8hufgyuzr3zkcss", + "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "c6c3f4f28cd8a39b7cdeec66e5741c0733c6e50a40d6c9104d561d7dc89fd0f3", + "tx_hash": "1945e07d63301090025795858c49fef361dfc2d9851d9e074cc4215d9d91255f", "tx_index": 25, "value": 66600.0, - "block_time": 1729328730, + "block_time": 1729416000, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "c6c3f4f28cd8a39b7cdeec66e5741c0733c6e50a40d6c9104d561d7dc89fd0f3", + "tx_hash": "1945e07d63301090025795858c49fef361dfc2d9851d9e074cc4215d9d91255f", "block_index": 138, - "block_time": 1729328730 + "block_time": 1729416000 } ], "next_cursor": 213, @@ -10300,16 +10432,16 @@ "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "start_block": 0, "status": "open", - "tx_hash": "f3cd8ee918135e3b1b1660a69a127e57520bdc3a177d301e4f4786d619538ba5", + "tx_hash": "68455c81e91976b50973996dd5e3b1bafeb9009b2ca1a238e4a1897afbef2d46", "tx_index": 42, - "block_time": 1729328813 + "block_time": 1729416085 }, - "tx_hash": "f3cd8ee918135e3b1b1660a69a127e57520bdc3a177d301e4f4786d619538ba5", + "tx_hash": "68455c81e91976b50973996dd5e3b1bafeb9009b2ca1a238e4a1897afbef2d46", "block_index": 155, - "block_time": 1729328813 + "block_time": 1729416085 } ], "next_cursor": 196, @@ -10322,11 +10454,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "c625b42b58b9d8785ff1002e4c734b8e720b7fc7cef912557d0c76850bd363f4" + "tx_hash": "9f887ea5403be9aa383402f97d0e8f856de8951ba3327060b3af17321c9478ad" }, "tx_hash": null, "block_index": 130, - "block_time": 1729328697 + "block_time": 1729415965 } ], "next_cursor": 110, @@ -10342,24 +10474,24 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "c34eba9dc88240af07608224d29e4ac423e6b2a0fb83407b5a51c795fdef2d81", + "fairminter_tx_hash": "251c310af851cba2ce4a58932e7cb803aeb6a9f7a55bac9bbf688ba85a48ef28", "paid_quantity": 34, - "source": "bcrt1q5ut2lhq0nl62xf07j3xtxzlg754vczjkt5hfrg", + "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", "status": "valid", - "tx_hash": "2015c6155642a55cbbd4b5fecfe861da6677293d1bc2d945a04daacd6ab34357", + "tx_hash": "6b50dfb9f0288a39497978e107102a20fca9269f60c348a7d3252a97951c3dfa", "tx_index": 23, - "block_time": 1729328722, + "block_time": 1729415991, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false } }, - "tx_hash": "2015c6155642a55cbbd4b5fecfe861da6677293d1bc2d945a04daacd6ab34357", + "tx_hash": "6b50dfb9f0288a39497978e107102a20fca9269f60c348a7d3252a97951c3dfa", "block_index": 136, - "block_time": 1729328722 + "block_time": 1729415991 } ], "next_cursor": 190, @@ -10373,28 +10505,28 @@ "params": { "asset": "MYASSETA", "block_index": 152, - "destination": "e630b15a8dd1629ee5d8c712ceeb4baaa1f861580e65556651bd38e7509e0463:1", + "destination": "aebd60a74f16beb780629243965a4832b6c9e75043be78503b78cb904acba5d6:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "status": "valid", - "tx_hash": "e630b15a8dd1629ee5d8c712ceeb4baaa1f861580e65556651bd38e7509e0463", + "tx_hash": "aebd60a74f16beb780629243965a4832b6c9e75043be78503b78cb904acba5d6", "tx_index": 39, - "block_time": 1729328801, + "block_time": 1729416061, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "e630b15a8dd1629ee5d8c712ceeb4baaa1f861580e65556651bd38e7509e0463", + "tx_hash": "aebd60a74f16beb780629243965a4832b6c9e75043be78503b78cb904acba5d6", "block_index": 152, - "block_time": 1729328801 + "block_time": 1729416061 } ], "next_cursor": 296, @@ -10408,28 +10540,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qg0yp2a86t6cxyuw2efl4ceq3tjecjled3vscyk", + "destination": "bcrt1qkgcujj6uea6hshreznk6fw8e22utgsdyqd02hg", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "735e2f5c7e85a8477cf81a6916a9e0f65e434d97b273863af40b880a489e4b43:0", + "source": "cdcf917d341dcb5152a735abf3e6fbe5c3f3df03e327bdacc1f0c3f858ddbbeb:0", "status": "valid", - "tx_hash": "b13446e62c4017231e1ac95bfb722cf296127f85ebbb20d2fbf187c4bf74dce3", + "tx_hash": "e755d7b8872d3d225da4d98c83eb4694a52915378b4b246272aff784b230d963", "tx_index": 38, - "block_time": 1729328796, + "block_time": 1729416057, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4yj3wtcv8d9p5uk62fty9jahy9ffghv9a73vcp", + "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "b13446e62c4017231e1ac95bfb722cf296127f85ebbb20d2fbf187c4bf74dce3", + "tx_hash": "e755d7b8872d3d225da4d98c83eb4694a52915378b4b246272aff784b230d963", "block_index": 151, - "block_time": 1729328796 + "block_time": 1729416057 } ], "next_cursor": null, @@ -10443,14 +10575,14 @@ "params": { "asset": "XCP", "block_index": 196, - "destination": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857:0", + "destination": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", "msg_index": 1, "quantity": 1500000000, - "source": "a56cf8518ead5f8220c045a6661003b0b9d0f7ac16d16ff171e8e2a4074e08d1:1", + "source": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", "status": "valid", - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "tx_index": 62, - "block_time": 1729328997, + "block_time": 1729416251, "asset_info": { "divisible": true, "asset_longname": null, @@ -10460,9 +10592,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "5d3769cd9221d936c53aa76e1bc9ab986075216db9c6be39be88bb7164531857", + "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", "block_index": 196, - "block_time": 1729328997 + "block_time": 1729416251 } ], "next_cursor": 555, @@ -10477,17 +10609,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qz2w3wldndc072gvryyfcpvdy7a26k66sdr05zz", + "source": "bcrt1qwhyc990hruyqf3e7r3ee9xx3g558uugekpa3kw", "status": "valid", - "tx_hash": "8f228d4a4b728a07b0a601ef5af6cb6676382b151868640417028e76c715139d", + "tx_hash": "3c708852d4951ec7994feec5ab282528777c9dbf169290986261472cf1fb27fa", "tx_index": 9, - "block_time": 1729328659, + "block_time": 1729415925, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "8f228d4a4b728a07b0a601ef5af6cb6676382b151868640417028e76c715139d", + "tx_hash": "3c708852d4951ec7994feec5ab282528777c9dbf169290986261472cf1fb27fa", "block_index": 121, - "block_time": 1729328659 + "block_time": 1729415925 } ], "next_cursor": 65, diff --git a/counterparty-core/counterpartycore/test/regtest/genapidoc.py b/counterparty-core/counterpartycore/test/regtest/genapidoc.py index f527c67229..97ad0eafd0 100644 --- a/counterparty-core/counterpartycore/test/regtest/genapidoc.py +++ b/counterparty-core/counterpartycore/test/regtest/genapidoc.py @@ -483,6 +483,11 @@ def generate_regtest_fixtures(db): regtest_fixtures["$LAST_FAIRMINTER_BLOCK"] = row["block_index"] regtest_fixtures["$LAST_FAIRMINTER_TX_HASH"] = row["tx_hash"] + # tx with fairmint + cursor.execute("SELECT tx_hash FROM fairmints ORDER BY rowid DESC LIMIT 1") + row = cursor.fetchone() + regtest_fixtures["$LAST_FAIRMINT_TX_HASH"] = row["tx_hash"] + # get utxo from bitcoin-cli utxo = json.loads( bitcoin_cli( diff --git a/counterparty-core/counterpartycore/test/regtest/testscenarios.py b/counterparty-core/counterpartycore/test/regtest/testscenarios.py index a204ec79bc..3fff49748f 100644 --- a/counterparty-core/counterpartycore/test/regtest/testscenarios.py +++ b/counterparty-core/counterpartycore/test/regtest/testscenarios.py @@ -205,7 +205,13 @@ def run_item(node, item, context): ) # test that the mempool is properly cleaned after each regtest transaction is confirmed if not no_confirmation: - mempool_events = node.api_call("mempool/events")["result"] + while True: + try: + mempool_events = node.api_call("mempool/events")["result"] + break + except KeyError: + print("Error getting mempool events, retrying...") + time.sleep(1) if len(mempool_events) != 0: raise Exception(f"Mempool events not empty after transaction: {mempool_events}") except ComposeError as e: diff --git a/dredd.yml b/dredd.yml index bcf3744bcd..88b1db1063 100644 --- a/dredd.yml +++ b/dredd.yml @@ -135,6 +135,8 @@ only: - Fairminters > Get All Fairminters > Get All Fairminters - Fairminters > Get Fairminter > Get Fairminter - Fairminters > Get Fairmints By Fairminter > Get Fairmints By Fairminter +- Fairmints > Get All Fairmints > Get All Fairmints +- Fairmints > Get Fairmint > Get Fairmint - Bitcoin > Get Unspent Txouts By Addresses > Get Unspent Txouts By Addresses - Bitcoin > Get Transactions By Address > Get Transactions By Address - Bitcoin > Get Oldest Transaction By Address > Get Oldest Transaction By Address diff --git a/release-notes/release-notes-v10.5.0.md b/release-notes/release-notes-v10.5.0.md index 1754b301e6..1e45650547 100644 --- a/release-notes/release-notes-v10.5.0.md +++ b/release-notes/release-notes-v10.5.0.md @@ -30,6 +30,9 @@ This update requires an automatic reparse from block 865999. - Have `--force` bypass checks that node is caught up - Have `/v2/blocks/last` return the last parsed block and not the block currently being parsed +- Add the following new routes: + - `/v2/fairmints` + - `/v2/fairmints/` ## CLI From 373f7a801c27953aaf4733114f0b4c479efc9398 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sun, 20 Oct 2024 10:19:17 +0000 Subject: [PATCH 19/37] /mints -> /fairmints --- apiary.apib | 3637 ++++++++--------- .../counterpartycore/lib/api/routes.py | 2 +- .../test/fixtures/api_v2_fixtures.json | 2 +- .../test/regtest/apidoc/apicache.json | 3297 ++++++++------- release-notes/release-notes-v10.5.0.md | 1 + 5 files changed, 3445 insertions(+), 3494 deletions(-) diff --git a/apiary.apib b/apiary.apib index a0662a1dcf..a6d796d6b7 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-10-20 09:24:32.717662. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-10-20 10:15:16.359919. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -180,15 +180,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 550, "event": "NEW_BLOCK", "params": { - "block_hash": "6507d71596a5bde486e1a5c1e33be2c96c037acf161f1c5cb41cd6e966e2d3a2", + "block_hash": "26010869f45387e5100f965afbf68e7ac474fd78998b5120bd34d7046c79ae6f", "block_index": 196, - "block_time": 1729416251, + "block_time": 1729419295, "difficulty": 545259519, - "previous_block_hash": "3ecdd06511d985f7dd0ec1b9070e68ab57bd0c147b76d85bc1ac386a188c75a3" + "previous_block_hash": "45a86bea1b49d417d16f0cf58b6a3caa438b49eb73a1150d3654da0866e1c113" }, "tx_hash": null, "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 } ], "next_cursor": 544, @@ -205,17 +205,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 551, "event": "NEW_TRANSACTION", "params": { - "block_hash": "6507d71596a5bde486e1a5c1e33be2c96c037acf161f1c5cb41cd6e966e2d3a2", + "block_hash": "26010869f45387e5100f965afbf68e7ac474fd78998b5120bd34d7046c79ae6f", "block_index": 196, - "block_time": 1729416251, + "block_time": 1729419295, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "destination": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "fee": 0, - "source": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "source": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62, - "utxos_info": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1 9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "utxos_info": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1 02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -225,9 +225,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 } ], "next_cursor": 545, @@ -246,16 +246,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "destination": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "out_index": 0, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62, - "block_time": 1729416251, + "block_time": 1729419295, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 } ], "next_cursor": 277, @@ -273,15 +273,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "f94b9a0cde6ac7ff4c57657df4d33d9a8f1dae9ef5de975f5df1dcc5cc851ece", - "messages_hash": "90707f8a533719986dc3f0949bda3f2eb1e3b12b4d1113e9caccbd9b4d5efb63", + "ledger_hash": "eead9d1cf4256ee6a5064148d170bd143227743df35f8eaf771be669fbacdefc", + "messages_hash": "ed329d64324602888971f8c2cfcdb14ded0ce770d8b6530880d3cdb734881033", "transaction_count": 1, - "txlist_hash": "41aa08840203abe0c1883ea81febef8fdb9238af22a71a5495b39bfc7c1db71b", - "block_time": 1729416251 + "txlist_hash": "4168e789766cc3d4a561e1a4d9324b0838ffcd186cbb040b504e385bbfab51dc", + "block_time": 1729419295 }, "tx_hash": null, "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 } ], "next_cursor": 549, @@ -299,12 +299,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62 }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 } ], "next_cursor": 548, @@ -327,12 +327,12 @@ Here is a list of events classified by theme and for each an example response: "address": null, "asset": "XCP", "block_index": 196, - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "quantity": 1500000000, "tx_index": 62, - "utxo": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", - "utxo_address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", - "block_time": 1729416251, + "utxo": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", + "utxo_address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -342,9 +342,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 } ], "next_cursor": 553, @@ -361,16 +361,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -380,9 +380,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 } ], "next_cursor": 557, @@ -401,14 +401,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 189, - "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "destination": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "memo": null, "quantity": 10000, - "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "source": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "status": "valid", - "tx_hash": "41940d57c4a9b1f5d0a22cb937643b5a48181fabeb27a4fe2ae5e3b102045d0f", + "tx_hash": "9e959e4d7992f9ebacdffa06990aeb2dc4ae9b61a3bce8e456f2a54430c2047a", "tx_index": 55, - "block_time": 1729416215, + "block_time": 1729419244, "asset_info": { "divisible": true, "asset_longname": null, @@ -418,9 +418,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00010000" }, - "tx_hash": "41940d57c4a9b1f5d0a22cb937643b5a48181fabeb27a4fe2ae5e3b102045d0f", + "tx_hash": "9e959e4d7992f9ebacdffa06990aeb2dc4ae9b61a3bce8e456f2a54430c2047a", "block_index": 189, - "block_time": 1729416215 + "block_time": 1729419244 } ], "next_cursor": null, @@ -439,15 +439,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 190, - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "status": "valid", - "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", + "tx_hash": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", "tx_index": 56, - "block_time": 1729416220, + "block_time": 1729419248, "asset_info": { "divisible": true, "asset_longname": null, @@ -457,9 +457,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", + "tx_hash": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", "block_index": 190, - "block_time": 1729416220 + "block_time": 1729419248 } ], "next_cursor": 509, @@ -497,20 +497,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 194, - "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "destination": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "source": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "status": "valid", - "tx_hash": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", + "tx_hash": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b", "tx_index": 60, - "block_time": 1729416237, + "block_time": 1729419276, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", + "tx_hash": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b", "block_index": 194, - "block_time": 1729416237 + "block_time": 1729419276 } ], "next_cursor": null, @@ -532,15 +532,15 @@ Here is a list of events classified by theme and for each an example response: "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "status": "valid", - "tx_hash": "0c95334ce0b328f2ff4e1e44c4e96d503ba60b7b2b1fbabeabef5f3ac971b288", + "tx_hash": "5954cbb59b8f533b6dc597f67642fe125d0f54d58dd8bd6109079010bc39416b", "tx_index": 41, - "block_time": 1729416070, + "block_time": 1729419109, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -554,9 +554,9 @@ Here is a list of events classified by theme and for each an example response: "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "0c95334ce0b328f2ff4e1e44c4e96d503ba60b7b2b1fbabeabef5f3ac971b288", + "tx_hash": "5954cbb59b8f533b6dc597f67642fe125d0f54d58dd8bd6109079010bc39416b", "block_index": 154, - "block_time": 1729416070 + "block_time": 1729419109 } ], "next_cursor": null, @@ -589,11 +589,11 @@ Here is a list of events classified by theme and for each an example response: "asset_longname": "A95428959745315388.SUBNUMERIC", "asset_name": "A95428956980101314", "block_index": 161, - "block_time": 1729416112 + "block_time": 1729419150 }, - "tx_hash": "bb2aa89179834fafe03acecbbade4d6fd928251f2923a59b4656957ab3685976", + "tx_hash": "e3935cf288cec52794daa26e2783ae06125ca6965f257e7d9ff3585239657033", "block_index": 161, - "block_time": 1729416112 + "block_time": 1729419150 } ], "next_cursor": 381, @@ -621,22 +621,22 @@ Here is a list of events classified by theme and for each an example response: "description_locked": false, "divisible": true, "fee_paid": 0, - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "status": "valid", "transfer": false, - "tx_hash": "bb2aa89179834fafe03acecbbade4d6fd928251f2923a59b4656957ab3685976", + "tx_hash": "e3935cf288cec52794daa26e2783ae06125ca6965f257e7d9ff3585239657033", "tx_index": 48, - "block_time": 1729416112, + "block_time": 1729419150, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "bb2aa89179834fafe03acecbbade4d6fd928251f2923a59b4656957ab3685976", + "tx_hash": "e3935cf288cec52794daa26e2783ae06125ca6965f257e7d9ff3585239657033", "block_index": 161, - "block_time": 1729416112 + "block_time": 1729419150 } ], "next_cursor": 388, @@ -656,12 +656,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 195, "quantity": 1, - "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "status": "valid", "tag": "64657374726f79", - "tx_hash": "849f54d8426192c0270d4d240627ba157876e3601948aed0ac24e730dcab52d7", + "tx_hash": "857b0199761f230748e7583d48033e2dcc3de8fbea85b2ca971f83f5261bd29a", "tx_index": 61, - "block_time": 1729416242, + "block_time": 1729419281, "asset_info": { "divisible": true, "asset_longname": null, @@ -671,9 +671,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "849f54d8426192c0270d4d240627ba157876e3601948aed0ac24e730dcab52d7", + "tx_hash": "857b0199761f230748e7583d48033e2dcc3de8fbea85b2ca971f83f5261bd29a", "block_index": 195, - "block_time": 1729416242 + "block_time": 1729419281 } ], "next_cursor": 157, @@ -705,11 +705,11 @@ Here is a list of events classified by theme and for each an example response: "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "status": "open", - "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", + "tx_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", "tx_index": 59, - "block_time": 1729416233, + "block_time": 1729419272, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -733,9 +733,9 @@ Here is a list of events classified by theme and for each an example response: "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", + "tx_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", "block_index": 193, - "block_time": 1729416233 + "block_time": 1729419272 } ], "next_cursor": 516, @@ -758,20 +758,20 @@ Here is a list of events classified by theme and for each an example response: "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", + "id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", "match_expire_index": 208, "status": "pending", - "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "tx0_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "tx0_block_index": 186, "tx0_expiration": 21, - "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", + "tx0_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", "tx0_index": 51, - "tx1_address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "tx1_address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "tx1_block_index": 188, "tx1_expiration": 21, - "tx1_hash": "e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", + "tx1_hash": "f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", "tx1_index": 54, - "block_time": 1729416201, + "block_time": 1729419239, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -790,9 +790,9 @@ Here is a list of events classified by theme and for each an example response: "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", + "tx_hash": "f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", "block_index": 188, - "block_time": 1729416201 + "block_time": 1729419239 } ], "next_cursor": 475, @@ -810,11 +810,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d" + "tx_hash": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9" }, - "tx_hash": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa", + "tx_hash": "f034d2fc20879fa54967667975c28e61b9e666da655c2cdeef7b284f057afff6", "block_index": 192, - "block_time": 1729416229 + "block_time": 1729419257 } ], "next_cursor": 490, @@ -832,11 +832,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80" + "tx_hash": "a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6" }, - "tx_hash": "e6ca911a0b08aa83675667b9ca8e02c32aeb2da53061aba62dde2da5b66b8fe8", + "tx_hash": "093e49f3c5553048e93710a95ae3f813e9e9ed5288b166ef5352fa88f6ee9d32", "block_index": 187, - "block_time": 1729416196 + "block_time": 1729419235 } ], "next_cursor": null, @@ -853,13 +853,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 481, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", - "order_match_id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", + "id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", + "order_match_id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", "status": "completed" }, - "tx_hash": "e6ca911a0b08aa83675667b9ca8e02c32aeb2da53061aba62dde2da5b66b8fe8", + "tx_hash": "093e49f3c5553048e93710a95ae3f813e9e9ed5288b166ef5352fa88f6ee9d32", "block_index": 187, - "block_time": 1729416196 + "block_time": 1729419235 } ], "next_cursor": 454, @@ -878,18 +878,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 187, "btc_amount": 2000, - "destination": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "order_match_id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "destination": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "order_match_id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "status": "valid", - "tx_hash": "e6ca911a0b08aa83675667b9ca8e02c32aeb2da53061aba62dde2da5b66b8fe8", + "tx_hash": "093e49f3c5553048e93710a95ae3f813e9e9ed5288b166ef5352fa88f6ee9d32", "tx_index": 53, - "block_time": 1729416196, + "block_time": 1729419235, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "e6ca911a0b08aa83675667b9ca8e02c32aeb2da53061aba62dde2da5b66b8fe8", + "tx_hash": "093e49f3c5553048e93710a95ae3f813e9e9ed5288b166ef5352fa88f6ee9d32", "block_index": 187, - "block_time": 1729416196 + "block_time": 1729419235 } ], "next_cursor": null, @@ -907,16 +907,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "offer_hash": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "status": "valid", - "tx_hash": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa", + "tx_hash": "f034d2fc20879fa54967667975c28e61b9e666da655c2cdeef7b284f057afff6", "tx_index": 58, - "block_time": 1729416229 + "block_time": 1729419257 }, - "tx_hash": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa", + "tx_hash": "f034d2fc20879fa54967667975c28e61b9e666da655c2cdeef7b284f057afff6", "block_index": 192, - "block_time": 1729416229 + "block_time": 1729419257 } ], "next_cursor": null, @@ -934,13 +934,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 184, - "order_hash": "31f95069423c6c4ddfe0a4574c1a3369fb58dac7a6652ba054558eb83930ed0b", - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", - "block_time": 1729416128 + "order_hash": "97a614c1cd5ebc6475742cff5c39401b7d7a1c7b9432bf2f31b973c81a8ceeac", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "block_time": 1729419167 }, "tx_hash": null, "block_index": 184, - "block_time": 1729416128 + "block_time": 1729419167 } ], "next_cursor": 460, @@ -958,14 +958,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 184, - "order_match_id": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8_31f95069423c6c4ddfe0a4574c1a3369fb58dac7a6652ba054558eb83930ed0b", - "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "tx1_address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", - "block_time": 1729416128 + "order_match_id": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b_97a614c1cd5ebc6475742cff5c39401b7d7a1c7b9432bf2f31b973c81a8ceeac", + "tx0_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "tx1_address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "block_time": 1729419167 }, "tx_hash": null, "block_index": 184, - "block_time": 1729416128 + "block_time": 1729419167 } ], "next_cursor": null, @@ -990,14 +990,14 @@ Here is a list of events classified by theme and for each an example response: "escrow_quantity": 10000, "give_quantity": 1, "give_remaining": 10000, - "oracle_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", - "origin": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "oracle_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "origin": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "satoshirate": 1, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "status": 0, - "tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", + "tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", "tx_index": 33, - "block_time": 1729416035, + "block_time": 1729419074, "asset_info": { "divisible": true, "asset_longname": null, @@ -1010,9 +1010,9 @@ Here is a list of events classified by theme and for each an example response: "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", + "tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", "block_index": 146, - "block_time": 1729416035 + "block_time": 1729419074 } ], "next_cursor": 254, @@ -1032,9 +1032,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "status": 0, - "tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", + "tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", "asset_info": { "divisible": true, "asset_longname": null, @@ -1044,9 +1044,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 } ], "next_cursor": 302, @@ -1065,13 +1065,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "mxn9viJTMZ952ierCiR5GaQwzaXBTAAdFh", + "destination": "mgm25pVEpj1Ey3H9pdvQUT6kCysXns3ZpB", "dispense_quantity": 10, - "dispenser_tx_hash": "8463aade5566a0f1e8c8f67bc3a36514814d844fa9a8925b244600e282392b52", - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "tx_hash": "6a06e123de94dc01dda7d60f67d09fe6d4a304f0b7fcb2ddd6642b6895f8bf8a", + "dispenser_tx_hash": "03163da185ecd4f58783c6feb8cdf29574011d5410f7983f983644aaaec1d685", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "tx_hash": "5bf2a1fde45df978c1bc9fb8fb6cf057b80b9b6c8f39021ca122b3d9f3276246", "tx_index": 31, - "block_time": 1729416026, + "block_time": 1729419056, "asset_info": { "divisible": true, "asset_longname": null, @@ -1081,9 +1081,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "6a06e123de94dc01dda7d60f67d09fe6d4a304f0b7fcb2ddd6642b6895f8bf8a", + "tx_hash": "5bf2a1fde45df978c1bc9fb8fb6cf057b80b9b6c8f39021ca122b3d9f3276246", "block_index": 144, - "block_time": 1729416026 + "block_time": 1729419056 } ], "next_cursor": null, @@ -1103,14 +1103,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "destination": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "dispenser_tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -1121,9 +1121,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 } ], "next_cursor": 280, @@ -1145,19 +1145,19 @@ Here is a list of events classified by theme and for each an example response: "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "1945e07d63301090025795858c49fef361dfc2d9851d9e074cc4215d9d91255f", + "tx_hash": "fcd3ac244dcdca9116bd6de331c88e6b7fc07a65cbc5f45a7f4f2731ad085430", "tx_index": 25, "value": 66600.0, - "block_time": 1729416000, + "block_time": 1729419020, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "1945e07d63301090025795858c49fef361dfc2d9851d9e074cc4215d9d91255f", + "tx_hash": "fcd3ac244dcdca9116bd6de331c88e6b7fc07a65cbc5f45a7f4f2731ad085430", "block_index": 138, - "block_time": 1729416000 + "block_time": 1729419020 } ], "next_cursor": 213, @@ -1195,16 +1195,16 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "start_block": 0, "status": "open", - "tx_hash": "68455c81e91976b50973996dd5e3b1bafeb9009b2ca1a238e4a1897afbef2d46", + "tx_hash": "c8665b67e71ee218d3415890729798887bbc54fb90e4c5e9cfeb24ce802a5b34", "tx_index": 42, - "block_time": 1729416085 + "block_time": 1729419113 }, - "tx_hash": "68455c81e91976b50973996dd5e3b1bafeb9009b2ca1a238e4a1897afbef2d46", + "tx_hash": "c8665b67e71ee218d3415890729798887bbc54fb90e4c5e9cfeb24ce802a5b34", "block_index": 155, - "block_time": 1729416085 + "block_time": 1729419113 } ], "next_cursor": 196, @@ -1222,11 +1222,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "9f887ea5403be9aa383402f97d0e8f856de8951ba3327060b3af17321c9478ad" + "tx_hash": "5dbec8408aedd6f8d6d3e7996757c0f4cc868053ef22cea6e506b00fda3c0efd" }, "tx_hash": null, "block_index": 130, - "block_time": 1729415965 + "block_time": 1729418986 } ], "next_cursor": 110, @@ -1247,24 +1247,24 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "251c310af851cba2ce4a58932e7cb803aeb6a9f7a55bac9bbf688ba85a48ef28", + "fairminter_tx_hash": "f38ae5c8abb6b49f9591e5eaae9ea1d072612f70aaa73853f25ba05480b5076c", "paid_quantity": 34, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "status": "valid", - "tx_hash": "6b50dfb9f0288a39497978e107102a20fca9269f60c348a7d3252a97951c3dfa", + "tx_hash": "27f936d6cbc64295fbb696767820d4b39f85fcf3a8bd6345ef8efaf104da5fd0", "tx_index": 23, - "block_time": 1729415991, + "block_time": 1729419011, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false } }, - "tx_hash": "6b50dfb9f0288a39497978e107102a20fca9269f60c348a7d3252a97951c3dfa", + "tx_hash": "27f936d6cbc64295fbb696767820d4b39f85fcf3a8bd6345ef8efaf104da5fd0", "block_index": 136, - "block_time": 1729415991 + "block_time": 1729419011 } ], "next_cursor": 190, @@ -1285,28 +1285,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 152, - "destination": "aebd60a74f16beb780629243965a4832b6c9e75043be78503b78cb904acba5d6:1", + "destination": "19241abee68c758ce2acf9aa205d89e2974a82660ba244e8539a1e2db77bf4f6:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "status": "valid", - "tx_hash": "aebd60a74f16beb780629243965a4832b6c9e75043be78503b78cb904acba5d6", + "tx_hash": "19241abee68c758ce2acf9aa205d89e2974a82660ba244e8539a1e2db77bf4f6", "tx_index": 39, - "block_time": 1729416061, + "block_time": 1729419100, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "aebd60a74f16beb780629243965a4832b6c9e75043be78503b78cb904acba5d6", + "tx_hash": "19241abee68c758ce2acf9aa205d89e2974a82660ba244e8539a1e2db77bf4f6", "block_index": 152, - "block_time": 1729416061 + "block_time": 1729419100 } ], "next_cursor": 296, @@ -1325,28 +1325,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qkgcujj6uea6hshreznk6fw8e22utgsdyqd02hg", + "destination": "bcrt1qg6cl5djlpjf8ne6z88eh7rpjt2c9ttupg48l6x", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "cdcf917d341dcb5152a735abf3e6fbe5c3f3df03e327bdacc1f0c3f858ddbbeb:0", + "source": "b97859d82df08aec2a7034a1721052c7eb6e72e5a41716e18796c69e00b4a59b:0", "status": "valid", - "tx_hash": "e755d7b8872d3d225da4d98c83eb4694a52915378b4b246272aff784b230d963", + "tx_hash": "b0bd44f210f49eeff94e14b96de922cb147dc9069d998d38e9ca17d5ad033d1d", "tx_index": 38, - "block_time": 1729416057, + "block_time": 1729419095, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "e755d7b8872d3d225da4d98c83eb4694a52915378b4b246272aff784b230d963", + "tx_hash": "b0bd44f210f49eeff94e14b96de922cb147dc9069d998d38e9ca17d5ad033d1d", "block_index": 151, - "block_time": 1729416057 + "block_time": 1729419095 } ], "next_cursor": null, @@ -1365,14 +1365,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 196, - "destination": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "destination": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", "msg_index": 1, "quantity": 1500000000, - "source": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", + "source": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", "status": "valid", - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -1382,9 +1382,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 } ], "next_cursor": 555, @@ -1406,17 +1406,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qwhyc990hruyqf3e7r3ee9xx3g558uugekpa3kw", + "source": "bcrt1qwel02ewd5s0334xz3z95wd9t2ycslyadsevzhv", "status": "valid", - "tx_hash": "3c708852d4951ec7994feec5ab282528777c9dbf169290986261472cf1fb27fa", + "tx_hash": "aeb9c55ef28fc0085850c3f2ab1825dcc5c218dd40c691ca08b32a7f0413ef81", "tx_index": 9, - "block_time": 1729415925, + "block_time": 1729418948, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "3c708852d4951ec7994feec5ab282528777c9dbf169290986261472cf1fb27fa", + "tx_hash": "aeb9c55ef28fc0085850c3f2ab1825dcc5c218dd40c691ca08b32a7f0413ef81", "block_index": 121, - "block_time": 1729415925 + "block_time": 1729418948 } ], "next_cursor": 65, @@ -1473,61 +1473,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 196, - "block_hash": "6507d71596a5bde486e1a5c1e33be2c96c037acf161f1c5cb41cd6e966e2d3a2", - "block_time": 1729416251, - "previous_block_hash": "3ecdd06511d985f7dd0ec1b9070e68ab57bd0c147b76d85bc1ac386a188c75a3", + "block_hash": "26010869f45387e5100f965afbf68e7ac474fd78998b5120bd34d7046c79ae6f", + "block_time": 1729419295, + "previous_block_hash": "45a86bea1b49d417d16f0cf58b6a3caa438b49eb73a1150d3654da0866e1c113", "difficulty": 545259519, - "ledger_hash": "f94b9a0cde6ac7ff4c57657df4d33d9a8f1dae9ef5de975f5df1dcc5cc851ece", - "txlist_hash": "41aa08840203abe0c1883ea81febef8fdb9238af22a71a5495b39bfc7c1db71b", - "messages_hash": "90707f8a533719986dc3f0949bda3f2eb1e3b12b4d1113e9caccbd9b4d5efb63", + "ledger_hash": "eead9d1cf4256ee6a5064148d170bd143227743df35f8eaf771be669fbacdefc", + "txlist_hash": "4168e789766cc3d4a561e1a4d9324b0838ffcd186cbb040b504e385bbfab51dc", + "messages_hash": "ed329d64324602888971f8c2cfcdb14ded0ce770d8b6530880d3cdb734881033", "transaction_count": 1, "confirmed": true }, { "block_index": 195, - "block_hash": "3ecdd06511d985f7dd0ec1b9070e68ab57bd0c147b76d85bc1ac386a188c75a3", - "block_time": 1729416242, - "previous_block_hash": "728a813061fac83aa7ba84782106a41b12625043d7d6bfa23a9c143df030f128", + "block_hash": "45a86bea1b49d417d16f0cf58b6a3caa438b49eb73a1150d3654da0866e1c113", + "block_time": 1729419281, + "previous_block_hash": "714288ba07f8f87419ab198860e8bb0175209a1f6f0566ee68441fdb0a948d13", "difficulty": 545259519, - "ledger_hash": "cc718c23e625491aee2fc62a05bc61a9757c4a93b694ef86bc4ce5156e1d95e4", - "txlist_hash": "a07cf4e2952739cbc92e3c6ab24d5641f416fc170b9760e7c474d9f39f5aea26", - "messages_hash": "9091c829a5aa11609cd32fe2f67938ba0dbcf5bcf4a65e90c10e54461f9f80cf", + "ledger_hash": "8d4a675808c86f3d5cf275fbb2b01ebcb78ff46be836ae5196368422f3518c58", + "txlist_hash": "6c00273b2d15d31cadacc162ba8812c4c69ffec8f2bc984e069159713b46fe6c", + "messages_hash": "f9546c1da9c14cc0197a5b5cf5e80bbb1b830595b6dbbd1e4a2c3a32e38c1ba2", "transaction_count": 1, "confirmed": true }, { "block_index": 194, - "block_hash": "728a813061fac83aa7ba84782106a41b12625043d7d6bfa23a9c143df030f128", - "block_time": 1729416237, - "previous_block_hash": "4711586e156dc07bc446b0d13bd07197fb6073457f04e8c962b18601d7aab73c", + "block_hash": "714288ba07f8f87419ab198860e8bb0175209a1f6f0566ee68441fdb0a948d13", + "block_time": 1729419276, + "previous_block_hash": "57dfced2294a097ac30ded16acb47a12f446095f608438f62863069eb55f26a9", "difficulty": 545259519, - "ledger_hash": "16819ea6b16871368675990819b6ee38eaf09dd756eb3266992d9bbcbfb612e0", - "txlist_hash": "cf42fdd132d3436f7c386a132cbf5f28490b0d2a730f870efeb94abc5c539730", - "messages_hash": "5924462778e58daed75d47fc78480ebda5c1e5c0253ed48c30ce5e9981a12f86", + "ledger_hash": "b23221b39e36fbdaf365a1416a2137f711bdc4c62bffb6cfa5cb35035789df0c", + "txlist_hash": "0f0866eae37543ff2b55a46ec365f0d8f884827de8a1c455ff871d33ea32bcf3", + "messages_hash": "150f3f2112bc4a497ace7a7c6e75acd2ee44c3db7eaddacc49dcbfd24abb4726", "transaction_count": 1, "confirmed": true }, { "block_index": 193, - "block_hash": "4711586e156dc07bc446b0d13bd07197fb6073457f04e8c962b18601d7aab73c", - "block_time": 1729416233, - "previous_block_hash": "7ed678c7467e7efadcf543e389f591346431c76c567638ba2fc748d67b102781", + "block_hash": "57dfced2294a097ac30ded16acb47a12f446095f608438f62863069eb55f26a9", + "block_time": 1729419272, + "previous_block_hash": "3658d2f90d22c5ac539825f061b3e1485c9d4cc338f3f9f38f7f545f4254effd", "difficulty": 545259519, - "ledger_hash": "0d713822dd49df58abf0df8423b2b429ac36d2da7e181df4fa32919413307a8b", - "txlist_hash": "7f95f439866514d156baead34f58896d8ed0dd87c5730eef21ff376b9d7d322e", - "messages_hash": "665d3418c0246f5af0c06d3668b67a110dd798d17bfae6384e9b309030c754af", + "ledger_hash": "0e3b11652d642ddf2981f2f07cf7782c851ba0b7d4e6beb5b0e7e2a6a72a2fda", + "txlist_hash": "2e0a754fcc764ec28ca313c161c5ddda153c3da1316ae2cc2bda8eb1b25aa916", + "messages_hash": "0dc42b030d4b5ce7631274571320b2003f089b2b941310ff17687a1a7143d91a", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "7ed678c7467e7efadcf543e389f591346431c76c567638ba2fc748d67b102781", - "block_time": 1729416229, - "previous_block_hash": "2fb7daac12d57d03a72504b4a83dcdcf2526bf0ddd4ef79a494697e3933b3d32", + "block_hash": "3658d2f90d22c5ac539825f061b3e1485c9d4cc338f3f9f38f7f545f4254effd", + "block_time": 1729419257, + "previous_block_hash": "5a79892b45761c6b06ee6c4b9265e5b99130ebf3f085b1f3f60c31c331cb99c7", "difficulty": 545259519, - "ledger_hash": "a4b01c2e43a0d3d158d89eb1daf965eefb4587fd04080947c4915581c1f9fb75", - "txlist_hash": "5eefd74579a8915f71f7aa0d2b2140c088ed41c582e39ac3ec356ac23561ea7b", - "messages_hash": "d341d3e3d54cb95d6ac5eda6bd925d32cb00afa9ed7b6cc05e227c6bad69e92e", + "ledger_hash": "ba9d083664623fb74cb71cce6e292b5ae927fd52814e53759c82ac38de7b52dc", + "txlist_hash": "24644b6aebff4a38f6034c3d8e6b52630235a164b265c8b3f8ff72b548215193", + "messages_hash": "7574667d077c75564e36a68f0b931f74c74ece654314b7d527fda809ce11e73d", "transaction_count": 1, "confirmed": true } @@ -1564,13 +1564,13 @@ Return the information of a block { "result": { "block_index": 196, - "block_hash": "6507d71596a5bde486e1a5c1e33be2c96c037acf161f1c5cb41cd6e966e2d3a2", - "block_time": 1729416251, - "previous_block_hash": "3ecdd06511d985f7dd0ec1b9070e68ab57bd0c147b76d85bc1ac386a188c75a3", + "block_hash": "26010869f45387e5100f965afbf68e7ac474fd78998b5120bd34d7046c79ae6f", + "block_time": 1729419295, + "previous_block_hash": "45a86bea1b49d417d16f0cf58b6a3caa438b49eb73a1150d3654da0866e1c113", "difficulty": 545259519, - "ledger_hash": "f94b9a0cde6ac7ff4c57657df4d33d9a8f1dae9ef5de975f5df1dcc5cc851ece", - "txlist_hash": "41aa08840203abe0c1883ea81febef8fdb9238af22a71a5495b39bfc7c1db71b", - "messages_hash": "90707f8a533719986dc3f0949bda3f2eb1e3b12b4d1113e9caccbd9b4d5efb63", + "ledger_hash": "eead9d1cf4256ee6a5064148d170bd143227743df35f8eaf771be669fbacdefc", + "txlist_hash": "4168e789766cc3d4a561e1a4d9324b0838ffcd186cbb040b504e385bbfab51dc", + "messages_hash": "ed329d64324602888971f8c2cfcdb14ded0ce770d8b6530880d3cdb734881033", "transaction_count": 1, "confirmed": true } @@ -1582,7 +1582,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `6507d71596a5bde486e1a5c1e33be2c96c037acf161f1c5cb41cd6e966e2d3a2` (str, required) - The index of the block to return + + block_hash: `26010869f45387e5100f965afbf68e7ac474fd78998b5120bd34d7046c79ae6f` (str, required) - The index of the block to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -1594,13 +1594,13 @@ Return the information of a block { "result": { "block_index": 196, - "block_hash": "6507d71596a5bde486e1a5c1e33be2c96c037acf161f1c5cb41cd6e966e2d3a2", - "block_time": 1729416251, - "previous_block_hash": "3ecdd06511d985f7dd0ec1b9070e68ab57bd0c147b76d85bc1ac386a188c75a3", + "block_hash": "26010869f45387e5100f965afbf68e7ac474fd78998b5120bd34d7046c79ae6f", + "block_time": 1729419295, + "previous_block_hash": "45a86bea1b49d417d16f0cf58b6a3caa438b49eb73a1150d3654da0866e1c113", "difficulty": 545259519, - "ledger_hash": "f94b9a0cde6ac7ff4c57657df4d33d9a8f1dae9ef5de975f5df1dcc5cc851ece", - "txlist_hash": "41aa08840203abe0c1883ea81febef8fdb9238af22a71a5495b39bfc7c1db71b", - "messages_hash": "90707f8a533719986dc3f0949bda3f2eb1e3b12b4d1113e9caccbd9b4d5efb63", + "ledger_hash": "eead9d1cf4256ee6a5064148d170bd143227743df35f8eaf771be669fbacdefc", + "txlist_hash": "4168e789766cc3d4a561e1a4d9324b0838ffcd186cbb040b504e385bbfab51dc", + "messages_hash": "ed329d64324602888971f8c2cfcdb14ded0ce770d8b6530880d3cdb734881033", "transaction_count": 1, "confirmed": true } @@ -1631,17 +1631,17 @@ Returns the transactions of a block "result": [ { "tx_index": 62, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_hash": "6507d71596a5bde486e1a5c1e33be2c96c037acf161f1c5cb41cd6e966e2d3a2", - "block_time": 1729416251, - "source": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", - "destination": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "block_hash": "26010869f45387e5100f965afbf68e7ac474fd78998b5120bd34d7046c79ae6f", + "block_time": 1729419295, + "source": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "destination": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1 9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "utxos_info": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1 02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1687,11 +1687,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "f94b9a0cde6ac7ff4c57657df4d33d9a8f1dae9ef5de975f5df1dcc5cc851ece", - "messages_hash": "90707f8a533719986dc3f0949bda3f2eb1e3b12b4d1113e9caccbd9b4d5efb63", + "ledger_hash": "eead9d1cf4256ee6a5064148d170bd143227743df35f8eaf771be669fbacdefc", + "messages_hash": "ed329d64324602888971f8c2cfcdb14ded0ce770d8b6530880d3cdb734881033", "transaction_count": 1, - "txlist_hash": "41aa08840203abe0c1883ea81febef8fdb9238af22a71a5495b39bfc7c1db71b", - "block_time": 1729416251 + "txlist_hash": "4168e789766cc3d4a561e1a4d9324b0838ffcd186cbb040b504e385bbfab51dc", + "block_time": 1729419295 }, "tx_hash": null }, @@ -1700,10 +1700,10 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62 }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287" + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89" }, { "event_index": 561, @@ -1712,14 +1712,14 @@ Returns the events of a block "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "destination": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "dispenser_tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -1730,7 +1730,7 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287" + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89" }, { "event_index": 560, @@ -1739,9 +1739,9 @@ Returns the events of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "status": 0, - "tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", + "tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", "asset_info": { "divisible": true, "asset_longname": null, @@ -1751,22 +1751,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287" + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89" }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -1776,7 +1776,7 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287" + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89" } ], "next_cursor": 558, @@ -1859,16 +1859,16 @@ Returns the events of a block filtered by event "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -1878,7 +1878,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287" + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89" }, { "event_index": 557, @@ -1888,12 +1888,12 @@ Returns the events of a block filtered by event "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "quantity": 1500000000, "tx_index": 62, - "utxo": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", - "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", - "block_time": 1729416251, + "utxo": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", + "utxo_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -1903,7 +1903,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "15.00000000" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287" + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89" }, { "event_index": 554, @@ -1913,22 +1913,22 @@ Returns the events of a block filtered by event "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "quantity": 1500000000, "tx_index": 62, - "utxo": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", - "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", - "block_time": 1729416251, + "utxo": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", + "utxo_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "block_time": 1729419295, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287" + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89" } ], "next_cursor": null, @@ -1991,16 +1991,16 @@ Returns the credits of a block "result": [ { "block_index": 196, - "address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -2016,12 +2016,12 @@ Returns the credits of a block "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62, - "utxo": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", - "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "utxo": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", + "utxo_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "confirmed": true, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -2037,16 +2037,16 @@ Returns the credits of a block "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62, - "utxo": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", - "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "utxo": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", + "utxo_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "confirmed": true, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -2106,12 +2106,12 @@ Returns the debits of a block "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62, - "utxo": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", - "utxo_address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "utxo": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", + "utxo_address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "confirmed": true, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -2127,16 +2127,16 @@ Returns the debits of a block "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62, - "utxo": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", - "utxo_address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "utxo": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", + "utxo_address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "confirmed": true, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -2172,24 +2172,24 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "31f95069423c6c4ddfe0a4574c1a3369fb58dac7a6652ba054558eb83930ed0b", + "object_id": "97a614c1cd5ebc6475742cff5c39401b7d7a1c7b9432bf2f31b973c81a8ceeac", "block_index": 184, "confirmed": true, - "block_time": 1729416128 + "block_time": 1729419167 }, { "type": "order", - "object_id": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8", + "object_id": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b", "block_index": 184, "confirmed": true, - "block_time": 1729416128 + "block_time": 1729419167 }, { "type": "order_match", - "object_id": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8_31f95069423c6c4ddfe0a4574c1a3369fb58dac7a6652ba054558eb83930ed0b", + "object_id": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b_97a614c1cd5ebc6475742cff5c39401b7d7a1c7b9432bf2f31b973c81a8ceeac", "block_index": 184, "confirmed": true, - "block_time": 1729416128 + "block_time": 1729419167 } ], "next_cursor": null, @@ -2221,13 +2221,13 @@ Returns the cancels of a block "result": [ { "tx_index": 58, - "tx_hash": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa", + "tx_hash": "f034d2fc20879fa54967667975c28e61b9e666da655c2cdeef7b284f057afff6", "block_index": 192, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "offer_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "offer_hash": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", "status": "valid", "confirmed": true, - "block_time": 1729416229 + "block_time": 1729419257 } ], "next_cursor": null, @@ -2259,15 +2259,15 @@ Returns the destructions of a block "result": [ { "tx_index": 61, - "tx_hash": "849f54d8426192c0270d4d240627ba157876e3601948aed0ac24e730dcab52d7", + "tx_hash": "857b0199761f230748e7583d48033e2dcc3de8fbea85b2ca971f83f5261bd29a", "block_index": 195, - "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1729416242, + "block_time": 1729419281, "asset_info": { "divisible": true, "asset_longname": null, @@ -2307,14 +2307,14 @@ Returns the issuances of a block "result": [ { "tx_index": 48, - "tx_hash": "bb2aa89179834fafe03acecbbade4d6fd928251f2923a59b4656957ab3685976", + "tx_hash": "e3935cf288cec52794daa26e2783ae06125ca6965f257e7d9ff3585239657033", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "transfer": false, "callable": false, "call_date": 0, @@ -2329,7 +2329,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729416112, + "block_time": 1729419150, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -2363,10 +2363,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 62, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "source": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", - "destination": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "source": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", + "destination": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -2374,7 +2374,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -2387,10 +2387,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 62, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "source": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", - "destination": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "source": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", + "destination": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -2398,11 +2398,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -2440,27 +2440,27 @@ Returns the dispenses of a block { "tx_index": 62, "dispense_index": 0, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", - "destination": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "destination": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", + "dispenser_tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "oracle_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "last_status_tx_hash": null, - "origin": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "origin": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2475,7 +2475,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -2516,16 +2516,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 60, - "tx_hash": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", + "tx_hash": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b", "block_index": 194, - "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", - "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "source": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "destination": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729416237, + "block_time": 1729419276, "fee_paid_normalized": "0.00600000" } ], @@ -2559,17 +2559,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "1945e07d63301090025795858c49fef361dfc2d9851d9e074cc4215d9d91255f", + "tx_hash": "fcd3ac244dcdca9116bd6de331c88e6b7fc07a65cbc5f45a7f4f2731ad085430", "block_index": 138, - "block_hash": "48b6ee7734dac157a347a776c990f4ea080e743d11d49a0c8fd2e4d5f6e43a4b", - "block_time": 1729416000, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "block_hash": "6c467086764806b7735d334249f86774ffb144f79bb74c42594c1a9eefbba122", + "block_time": 1729419020, + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "1945e07d63301090025795858c49fef361dfc2d9851d9e074cc4215d9d91255f:1", + "utxos_info": "fcd3ac244dcdca9116bd6de331c88e6b7fc07a65cbc5f45a7f4f2731ad085430:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2594,25 +2594,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 53, - "tx_hash": "e6ca911a0b08aa83675667b9ca8e02c32aeb2da53061aba62dde2da5b66b8fe8", + "tx_hash": "093e49f3c5553048e93710a95ae3f813e9e9ed5288b166ef5352fa88f6ee9d32", "block_index": 187, - "block_hash": "73fddac4584bdd33b80d2b73fe415da9f48d23e506dfb7ba55e3e91b4449e625", - "block_time": 1729416196, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", - "destination": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "block_hash": "1e3ef7feb2b0cc9956125c6848ee0b6e7b21aaf7ce801dd0083afef4b9c163fa", + "block_time": 1729419235, + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "destination": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "btc_amount": 2000, "fee": 10000, - "data": "0b0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da3934797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", + "data": "0bb4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", "supported": true, - "utxos_info": "e6ca911a0b08aa83675667b9ca8e02c32aeb2da53061aba62dde2da5b66b8fe8:0", + "utxos_info": "093e49f3c5553048e93710a95ae3f813e9e9ed5288b166ef5352fa88f6ee9d32:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", - "tx1_hash": "34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", - "order_match_id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", + "tx0_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", + "tx1_hash": "a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", + "order_match_id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", "status": "valid" } }, @@ -2627,23 +2627,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 58, - "tx_hash": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa", + "tx_hash": "f034d2fc20879fa54967667975c28e61b9e666da655c2cdeef7b284f057afff6", "block_index": 192, - "block_hash": "7ed678c7467e7efadcf543e389f591346431c76c567638ba2fc748d67b102781", - "block_time": 1729416229, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "block_hash": "3658d2f90d22c5ac539825f061b3e1485c9d4cc338f3f9f38f7f545f4254effd", + "block_time": 1729419257, + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "460a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", + "data": "468fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", "supported": true, - "utxos_info": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa:1", + "utxos_info": "f034d2fc20879fa54967667975c28e61b9e666da655c2cdeef7b284f057afff6:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", + "offer_hash": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", "status": "valid" } }, @@ -2658,17 +2658,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 61, - "tx_hash": "849f54d8426192c0270d4d240627ba157876e3601948aed0ac24e730dcab52d7", + "tx_hash": "857b0199761f230748e7583d48033e2dcc3de8fbea85b2ca971f83f5261bd29a", "block_index": 195, - "block_hash": "3ecdd06511d985f7dd0ec1b9070e68ab57bd0c147b76d85bc1ac386a188c75a3", - "block_time": 1729416242, - "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "block_hash": "45a86bea1b49d417d16f0cf58b6a3caa438b49eb73a1150d3654da0866e1c113", + "block_time": 1729419281, + "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "849f54d8426192c0270d4d240627ba157876e3601948aed0ac24e730dcab52d7:1", + "utxos_info": "857b0199761f230748e7583d48033e2dcc3de8fbea85b2ca971f83f5261bd29a:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2698,17 +2698,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 33, - "tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", + "tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", "block_index": 146, - "block_hash": "51043a618d96f9687769ae64fa0eb9d1a1079f3ded8bbe5e49418384ff97bca9", - "block_time": 1729416035, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "block_hash": "3aa4fc3a15314e3ee2b1a49c17b202d0fab33113d94205021e664ad783902083", + "block_time": 1729419074, + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0c00000000000000010000000000000001000000000000271000000000000000010080d8738784ceb0bcf1708fd9c365706baff86fe9da", + "data": "0c00000000000000010000000000000001000000000000271000000000000000010080be349a1393f05baf3bf827e20714733ce47e0a21", "supported": true, - "utxos_info": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d:1", + "utxos_info": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2720,7 +2720,7 @@ Here is sample API output for each of these transactions: "mainchainrate": 1, "dispenser_status": 0, "action_address": null, - "oracle_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "oracle_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "status": "valid", "asset_info": { "divisible": true, @@ -2744,17 +2744,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 62, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_hash": "6507d71596a5bde486e1a5c1e33be2c96c037acf161f1c5cb41cd6e966e2d3a2", - "block_time": 1729416251, - "source": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", - "destination": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "block_hash": "26010869f45387e5100f965afbf68e7ac474fd78998b5120bd34d7046c79ae6f", + "block_time": 1729419295, + "source": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "destination": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1 9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "utxos_info": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1 02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2774,17 +2774,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 41, - "tx_hash": "0c95334ce0b328f2ff4e1e44c4e96d503ba60b7b2b1fbabeabef5f3ac971b288", + "tx_hash": "5954cbb59b8f533b6dc597f67642fe125d0f54d58dd8bd6109079010bc39416b", "block_index": 154, - "block_hash": "0b93f216226ac6e70d0eba16dee49d06deb99a6512254aaa8f3073f4c7a61b47", - "block_time": 1729416070, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "block_hash": "78914e1f86cb86fda665340d278aeca802e081661842db02ca84d1e19b18fec0", + "block_time": 1729419109, + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "0c95334ce0b328f2ff4e1e44c4e96d503ba60b7b2b1fbabeabef5f3ac971b288:1", + "utxos_info": "5954cbb59b8f533b6dc597f67642fe125d0f54d58dd8bd6109079010bc39416b:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2797,7 +2797,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -2822,17 +2822,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 48, - "tx_hash": "bb2aa89179834fafe03acecbbade4d6fd928251f2923a59b4656957ab3685976", + "tx_hash": "e3935cf288cec52794daa26e2783ae06125ca6965f257e7d9ff3585239657033", "block_index": 161, - "block_hash": "542c0473bf883435e5fb653e10544a72767df4635b227d926071e380e012fa8c", - "block_time": 1729416112, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "block_hash": "1a1363f2f691b4e502d3adc980ce1bb319fa2f08b64084fcbe6d73fa5d41c3c8", + "block_time": 1729419150, + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "destination": null, "btc_amount": 0, "fee": 10000, "data": "17015308217a15c0c2000000174876e80001000016987952c23e7c7c94dd9fd148af3f5276f9092bbbc2e941207375626e756d65726963206173736574", "supported": true, - "utxos_info": "bb2aa89179834fafe03acecbbade4d6fd928251f2923a59b4656957ab3685976:1", + "utxos_info": "e3935cf288cec52794daa26e2783ae06125ca6965f257e7d9ff3585239657033:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2864,17 +2864,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", + "tx_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", "block_index": 193, - "block_hash": "4711586e156dc07bc446b0d13bd07197fb6073457f04e8c962b18601d7aab73c", - "block_time": 1729416233, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "block_hash": "57dfced2294a097ac30ded16acb47a12f446095f608438f62863069eb55f26a9", + "block_time": 1729419272, + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687:1", + "utxos_info": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -2917,17 +2917,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 55, - "tx_hash": "41940d57c4a9b1f5d0a22cb937643b5a48181fabeb27a4fe2ae5e3b102045d0f", + "tx_hash": "9e959e4d7992f9ebacdffa06990aeb2dc4ae9b61a3bce8e456f2a54430c2047a", "block_index": 189, - "block_hash": "52ba398203ce8671aca2d10a18cc3862be1bf09075f1969783987762cf99687f", - "block_time": 1729416215, - "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "block_hash": "6c5ca992fd043932898d840d053abe5172afd213cdcd1c4392909643c25f9196", + "block_time": 1729419244, + "source": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080bf13d9c76ee760db64d132b5dc3f99ed263282ec", + "data": "0200000000000000010000000000002710803dcc35a8148c4958edc036d7dbf62f22c9ee7f8c", "supported": true, - "utxos_info": "41940d57c4a9b1f5d0a22cb937643b5a48181fabeb27a4fe2ae5e3b102045d0f:1", + "utxos_info": "9e959e4d7992f9ebacdffa06990aeb2dc4ae9b61a3bce8e456f2a54430c2047a:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -2935,7 +2935,7 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "address": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "memo": null, "asset_info": { "divisible": true, @@ -2958,17 +2958,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 56, - "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", + "tx_hash": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", "block_index": 190, - "block_hash": "49031dd5afeca85d63b74c5b576803fe4396010c7929926e9d94cfc692574922", - "block_time": 1729416220, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "block_hash": "27d56f8f7a9d91d559042a50061b02cd6ae526427d0159cd054bfb1432893317", + "block_time": 1729419248, + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003803ba2dced599f88fbfa5943ac7d4ab45523f9908780b964d3e562cdc29be80c17fb47d0461efe1c5a5d80bf13d9c76ee760db64d132b5dc3f99ed263282ec400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380d64c08d96d88ea91d982fd48c18244108a8ef38f80d0f087d8a9e67fb02f22722fc8b975fb1e6c473e803dcc35a8148c4958edc036d7dbf62f22c9ee7f8c400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6:0", + "utxos_info": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -2976,14 +2976,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "destination": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -2991,7 +2991,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3017,23 +3017,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 60, - "tx_hash": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", + "tx_hash": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b", "block_index": 194, - "block_hash": "728a813061fac83aa7ba84782106a41b12625043d7d6bfa23a9c143df030f128", - "block_time": 1729416237, - "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "block_hash": "714288ba07f8f87419ab198860e8bb0175209a1f6f0566ee68441fdb0a948d13", + "block_time": 1729419276, + "source": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480bf13d9c76ee760db64d132b5dc3f99ed263282ec017377656570206d7920617373657473", + "data": "04803dcc35a8148c4958edc036d7dbf62f22c9ee7f8c017377656570206d7920617373657473", "supported": true, - "utxos_info": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024:1", + "utxos_info": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "destination": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "flags": 1, "memo": "sweep my assets" } @@ -3066,17 +3066,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 62, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_hash": "6507d71596a5bde486e1a5c1e33be2c96c037acf161f1c5cb41cd6e966e2d3a2", - "block_time": 1729416251, - "source": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", - "destination": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "block_hash": "26010869f45387e5100f965afbf68e7ac474fd78998b5120bd34d7046c79ae6f", + "block_time": 1729419295, + "source": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "destination": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1 9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "utxos_info": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1 02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3089,17 +3089,17 @@ Returns the list of the last ten transactions }, { "tx_index": 61, - "tx_hash": "849f54d8426192c0270d4d240627ba157876e3601948aed0ac24e730dcab52d7", + "tx_hash": "857b0199761f230748e7583d48033e2dcc3de8fbea85b2ca971f83f5261bd29a", "block_index": 195, - "block_hash": "3ecdd06511d985f7dd0ec1b9070e68ab57bd0c147b76d85bc1ac386a188c75a3", - "block_time": 1729416242, - "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "block_hash": "45a86bea1b49d417d16f0cf58b6a3caa438b49eb73a1150d3654da0866e1c113", + "block_time": 1729419281, + "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "849f54d8426192c0270d4d240627ba157876e3601948aed0ac24e730dcab52d7:1", + "utxos_info": "857b0199761f230748e7583d48033e2dcc3de8fbea85b2ca971f83f5261bd29a:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3131,7 +3131,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `020000000001011424aa896a288197fe5b388aecb38a7153028017b935009a52addecd7b417bf70000000000ffffffff0200000000000000002c6a2a7f1eff96066a74febe070c3eb2aa81f1c4c5d98bef2bd5557c30a0342cf28946cdb6fbc0562384d68e3df0ca052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab0024730440220144f1cbc542fdd64dbf8d07f20c026c9ccbf9c25d438030d3fc62d26a4375c4e022053d743e199518371250d5cc9fa628a8e95a5fca04380132148d0087416ebe7010121026a1a918fbc2c6d5fb3aa96a683c6930e932f1484f06179aa0a146e66d4d4cb4000000000` (str, required) - Raw transaction in hex format + + rawtransaction: `020000000001010000000000000000000000000000000000000000000000000000000000000000ffffffff03014300ffffffff0200f2052a01000000160014557b2d77cc0be408f0448c0d51a68f2eb0e135180000000000000000266a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf90120000000000000000000000000000000000000000000000000000000000000000000000000` (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. @@ -3144,66 +3144,41 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "", "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "0c000000000000000100000000000000010000000000002710000000000000000100", + "btc_amount": null, + "fee": null, + "data": "", "decoded_tx": { "version": 2, "segwit": true, - "coinbase": false, + "coinbase": true, "vin": [ { - "hash": "1424aa896a288197fe5b388aecb38a7153028017b935009a52addecd7b417bf7", - "n": 0, - "script_sig": "", + "hash": "0000000000000000000000000000000000000000000000000000000000000000", + "n": 4294967295, + "script_sig": "014300", "sequence": 4294967295, - "coinbase": false + "coinbase": true } ], "vout": [ { - "value": 0, - "script_pub_key": "6a2a7f1eff96066a74febe070c3eb2aa81f1c4c5d98bef2bd5557c30a0342cf28946cdb6fbc0562384d68e3d" + "value": 5000000000, + "script_pub_key": "0014557b2d77cc0be408f0448c0d51a68f2eb0e13518" }, { - "value": 4999990000, - "script_pub_key": "0014d173175d97588c462c9f66604b39d4e4f49afab0" + "value": 0, + "script_pub_key": "6a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf9" } ], "vtxinwit": [ - "30440220144f1cbc542fdd64dbf8d07f20c026c9ccbf9c25d438030d3fc62d26a4375c4e022053d743e199518371250d5cc9fa628a8e95a5fca04380132148d0087416ebe70101", - "026a1a918fbc2c6d5fb3aa96a683c6930e932f1484f06179aa0a146e66d4d4cb40" + "0000000000000000000000000000000000000000000000000000000000000000" ], "lock_time": 0, - "tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", - "tx_id": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630" - }, - "unpacked_data": { - "message_type": "dispenser", - "message_type_id": 12, - "message_data": { - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "mainchainrate": 1, - "dispenser_status": 0, - "action_address": null, - "oracle_address": null, - "status": "valid", - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00000001", - "escrow_quantity_normalized": "0.00010000" - } - }, - "btc_amount_normalized": "0.00000000" + "tx_hash": "be18eb1f6e1b54bd8664947ea547ecd06aaaddf36cfee98d705829f2cb6ad6df", + "tx_id": "be18eb1f6e1b54bd8664947ea547ecd06aaaddf36cfee98d705829f2cb6ad6df" + } } } ``` @@ -3213,7 +3188,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836` (str, required) - Transaction hash + + tx_hash: `55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9` (str, required) - Transaction hash + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -3224,18 +3199,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080b964d3e562cdc29be80c17fb47d0461efe1c5a5d", + "data": "020000000000000001000000000000271080d0f087d8a9e67fb02f22722fc8b975fb1e6c473e", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "712bf6e41f93de319d30ed2327a2414a0b550c37986ab107d7ea2599c0a8bece", + "hash": "ad281bdd69fda41d84947a3c96849e00efdf25c45f566e010df60d267b160d9c", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3245,20 +3220,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2e6d3a458d1347892ccc7e75e210f83acd3a7d8f9a796dcaaed2a363a248d9933ca12a57050cdcb4319a629f938c78" + "script_pub_key": "6a2e6edf8cb93c922f5584d61db2f1afffca61b766449448614055330a855b19c57945a96f527e856823677090545303" }, { "value": 4999955000, - "script_pub_key": "0014bf13d9c76ee760db64d132b5dc3f99ed263282ec" + "script_pub_key": "00143dcc35a8148c4958edc036d7dbf62f22c9ee7f8c" } ], "vtxinwit": [ - "30440220573cb018bcc6a86c4ee17cc495742e03d5bf417dacf17d2b6e02a7a944546cd50220409350c75e8554a6d9a20bbf39bfe2036b75d43da562dafcfeee87b498b67f0701", - "02c6afedba8a0914a50ae14060542f470e81757a82ea2a2aba3920c325680b2245" + "304402200131af551e7ac8871a81155eceb120e32fba9355e1ea9856f54c9cda15a52f24022060ba85d3792a9a781d1f5c441267cb2d3875331808c5e2eb8adc4dfa1b99e6d801", + "03713b36b6b11c7678f38efbe31df54f86be0d1da0e9448b6e34cd36ce539044af" ], "lock_time": 0, - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", - "tx_id": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836" + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", + "tx_id": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3266,7 +3241,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "memo": null, "asset_info": { "divisible": true, @@ -3327,17 +3302,17 @@ Returns a transaction by its index. { "result": { "tx_index": 62, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_hash": "6507d71596a5bde486e1a5c1e33be2c96c037acf161f1c5cb41cd6e966e2d3a2", - "block_time": 1729416251, - "source": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", - "destination": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "block_hash": "26010869f45387e5100f965afbf68e7ac474fd78998b5120bd34d7046c79ae6f", + "block_time": 1729419295, + "source": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "destination": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1 9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "utxos_info": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1 02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3356,7 +3331,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287` (str, required) - The hash of the transaction + + tx_hash: `02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89` (str, required) - The hash of the transaction + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -3368,17 +3343,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 62, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_hash": "6507d71596a5bde486e1a5c1e33be2c96c037acf161f1c5cb41cd6e966e2d3a2", - "block_time": 1729416251, - "source": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", - "destination": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "block_hash": "26010869f45387e5100f965afbf68e7ac474fd78998b5120bd34d7046c79ae6f", + "block_time": 1729419295, + "source": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "destination": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1 9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "utxos_info": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1 02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3421,12 +3396,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62 }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 }, { "event_index": 561, @@ -3435,14 +3410,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "destination": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "dispenser_tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -3453,9 +3428,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 }, { "event_index": 560, @@ -3464,9 +3439,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "status": 0, - "tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", + "tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", "asset_info": { "divisible": true, "asset_longname": null, @@ -3476,24 +3451,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -3503,9 +3478,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 }, { "event_index": 558, @@ -3513,14 +3488,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 196, - "destination": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "destination": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", "msg_index": 1, "quantity": 1500000000, - "source": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", + "source": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", "status": "valid", - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -3530,9 +3505,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 } ], "next_cursor": 557, @@ -3545,7 +3520,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287` (str, required) - The hash of the transaction to return + + tx_hash: `02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `563` (str, optional) - The last event index to return @@ -3569,12 +3544,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62 }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 }, { "event_index": 561, @@ -3583,14 +3558,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "destination": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "dispenser_tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -3601,9 +3576,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 }, { "event_index": 560, @@ -3612,9 +3587,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "status": 0, - "tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", + "tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", "asset_info": { "divisible": true, "asset_longname": null, @@ -3624,24 +3599,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -3651,9 +3626,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 }, { "event_index": 558, @@ -3661,14 +3636,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 196, - "destination": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "destination": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", "msg_index": 1, "quantity": 1500000000, - "source": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", + "source": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", "status": "valid", - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -3678,9 +3653,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 } ], "next_cursor": 557, @@ -3693,7 +3668,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287` (str, required) - The hash of the transaction to return + + tx_hash: `02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89` (str, required) - The hash of the transaction to return + cursor (str, optional) - The last index of the debits to return + Default: `None` + limit: `5` (int, optional) - The maximum number of debits to return @@ -3712,10 +3687,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 62, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "source": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", - "destination": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "source": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", + "destination": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -3723,7 +3698,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -3736,10 +3711,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 62, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "source": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", - "destination": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "source": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", + "destination": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -3747,11 +3722,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -3769,7 +3744,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287` (str, required) - The hash of the transaction to return + + tx_hash: `02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89` (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 @@ -3789,27 +3764,27 @@ Returns the dispenses of a block { "tx_index": 62, "dispense_index": 0, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", - "destination": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "destination": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", + "dispenser_tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "oracle_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "last_status_tx_hash": null, - "origin": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "origin": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3824,7 +3799,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -3868,16 +3843,16 @@ Returns the events of a transaction "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -3887,9 +3862,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 }, { "event_index": 557, @@ -3899,12 +3874,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "quantity": 1500000000, "tx_index": 62, - "utxo": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", - "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", - "block_time": 1729416251, + "utxo": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", + "utxo_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -3914,9 +3889,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 }, { "event_index": 554, @@ -3926,24 +3901,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "quantity": 1500000000, "tx_index": 62, - "utxo": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", - "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", - "block_time": 1729416251, + "utxo": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", + "utxo_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "block_time": 1729419295, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 } ], "next_cursor": null, @@ -3956,7 +3931,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287` (str, required) - The hash of the transaction to return + + tx_hash: `02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `563` (str, optional) - The last event index to return + Default: `None` @@ -3978,16 +3953,16 @@ Returns the events of a transaction "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -3997,9 +3972,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 }, { "event_index": 557, @@ -4009,12 +3984,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "quantity": 1500000000, "tx_index": 62, - "utxo": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", - "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", - "block_time": 1729416251, + "utxo": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", + "utxo_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -4024,9 +3999,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 }, { "event_index": 554, @@ -4036,24 +4011,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "quantity": 1500000000, "tx_index": 62, - "utxo": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", - "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", - "block_time": 1729416251, + "utxo": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", + "utxo_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "block_time": 1729419295, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 } ], "next_cursor": null, @@ -4068,7 +4043,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23,bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8,bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw` (str, required) - Comma separated list of addresses + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -4092,7 +4067,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4102,7 +4077,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -4113,7 +4088,7 @@ Returns the balances of several addresses "total": 97999999980, "addresses": [ { - "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -4123,7 +4098,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -4134,7 +4109,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4144,7 +4119,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -4155,7 +4130,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4165,7 +4140,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -4176,7 +4151,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4186,7 +4161,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -4203,7 +4178,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23,bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8,bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw` (str, required) - Comma separated list of addresses to return + cursor: `62` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4222,17 +4197,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 59, - "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", + "tx_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", "block_index": 193, - "block_hash": "4711586e156dc07bc446b0d13bd07197fb6073457f04e8c962b18601d7aab73c", - "block_time": 1729416233, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "block_hash": "57dfced2294a097ac30ded16acb47a12f446095f608438f62863069eb55f26a9", + "block_time": 1729419272, + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687:1", + "utxos_info": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4268,23 +4243,23 @@ Returns the transactions of a list of addresses }, { "tx_index": 58, - "tx_hash": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa", + "tx_hash": "f034d2fc20879fa54967667975c28e61b9e666da655c2cdeef7b284f057afff6", "block_index": 192, - "block_hash": "7ed678c7467e7efadcf543e389f591346431c76c567638ba2fc748d67b102781", - "block_time": 1729416229, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "block_hash": "3658d2f90d22c5ac539825f061b3e1485c9d4cc338f3f9f38f7f545f4254effd", + "block_time": 1729419257, + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "460a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", + "data": "468fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", "supported": true, - "utxos_info": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa:1", + "utxos_info": "f034d2fc20879fa54967667975c28e61b9e666da655c2cdeef7b284f057afff6:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", + "offer_hash": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", "status": "valid" } }, @@ -4292,17 +4267,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 57, - "tx_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", + "tx_hash": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", "block_index": 191, - "block_hash": "2fb7daac12d57d03a72504b4a83dcdcf2526bf0ddd4ef79a494697e3933b3d32", - "block_time": 1729416224, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "block_hash": "5a79892b45761c6b06ee6c4b9265e5b99130ebf3f085b1f3f60c31c331cb99c7", + "block_time": 1729419253, + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d:1", + "utxos_info": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4338,17 +4313,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 56, - "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", + "tx_hash": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", "block_index": 190, - "block_hash": "49031dd5afeca85d63b74c5b576803fe4396010c7929926e9d94cfc692574922", - "block_time": 1729416220, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "block_hash": "27d56f8f7a9d91d559042a50061b02cd6ae526427d0159cd054bfb1432893317", + "block_time": 1729419248, + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003803ba2dced599f88fbfa5943ac7d4ab45523f9908780b964d3e562cdc29be80c17fb47d0461efe1c5a5d80bf13d9c76ee760db64d132b5dc3f99ed263282ec400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380d64c08d96d88ea91d982fd48c18244108a8ef38f80d0f087d8a9e67fb02f22722fc8b975fb1e6c473e803dcc35a8148c4958edc036d7dbf62f22c9ee7f8c400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6:0", + "utxos_info": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4356,14 +4331,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "destination": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -4371,7 +4346,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -4390,25 +4365,25 @@ Returns the transactions of a list of addresses }, { "tx_index": 53, - "tx_hash": "e6ca911a0b08aa83675667b9ca8e02c32aeb2da53061aba62dde2da5b66b8fe8", + "tx_hash": "093e49f3c5553048e93710a95ae3f813e9e9ed5288b166ef5352fa88f6ee9d32", "block_index": 187, - "block_hash": "73fddac4584bdd33b80d2b73fe415da9f48d23e506dfb7ba55e3e91b4449e625", - "block_time": 1729416196, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", - "destination": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "block_hash": "1e3ef7feb2b0cc9956125c6848ee0b6e7b21aaf7ce801dd0083afef4b9c163fa", + "block_time": 1729419235, + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "destination": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "btc_amount": 2000, "fee": 10000, - "data": "0b0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da3934797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", + "data": "0bb4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", "supported": true, - "utxos_info": "e6ca911a0b08aa83675667b9ca8e02c32aeb2da53061aba62dde2da5b66b8fe8:0", + "utxos_info": "093e49f3c5553048e93710a95ae3f813e9e9ed5288b166ef5352fa88f6ee9d32:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", - "tx1_hash": "34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", - "order_match_id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", + "tx0_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", + "tx1_hash": "a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", + "order_match_id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", "status": "valid" } }, @@ -4425,7 +4400,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23,bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8,bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `563` (str, optional) - The last event index to return @@ -4461,11 +4436,11 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "status": "open", - "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", + "tx_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", "tx_index": 59, - "block_time": 1729416233, + "block_time": 1729419272, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4489,24 +4464,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", + "tx_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", "block_index": 193, - "block_time": 1729416233 + "block_time": 1729419272 }, { "event_index": 528, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCP", "block_index": 193, - "event": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", + "event": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", "quantity": 1000, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1729416233, + "block_time": 1729419272, "asset_info": { "divisible": true, "asset_longname": null, @@ -4516,25 +4491,25 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", + "tx_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", "block_index": 193, - "block_time": 1729416233 + "block_time": 1729419272 }, { "event_index": 527, "event": "NEW_TRANSACTION", "params": { - "block_hash": "4711586e156dc07bc446b0d13bd07197fb6073457f04e8c962b18601d7aab73c", + "block_hash": "57dfced2294a097ac30ded16acb47a12f446095f608438f62863069eb55f26a9", "block_index": 193, - "block_time": 1729416233, + "block_time": 1729419272, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "tx_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", "tx_index": 59, - "utxos_info": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687:1", + "utxos_info": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4566,40 +4541,40 @@ Returns the events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", + "tx_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", "block_index": 193, - "block_time": 1729416233 + "block_time": 1729419272 }, { "event_index": 523, "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "offer_hash": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "status": "valid", - "tx_hash": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa", + "tx_hash": "f034d2fc20879fa54967667975c28e61b9e666da655c2cdeef7b284f057afff6", "tx_index": 58, - "block_time": 1729416229 + "block_time": 1729419257 }, - "tx_hash": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa", + "tx_hash": "f034d2fc20879fa54967667975c28e61b9e666da655c2cdeef7b284f057afff6", "block_index": 192, - "block_time": 1729416229 + "block_time": 1729419257 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCP", "block_index": 192, "calling_function": "cancel order", - "event": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", + "event": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", "quantity": 1000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1729416229, + "block_time": 1729419257, "asset_info": { "divisible": true, "asset_longname": null, @@ -4609,9 +4584,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa", + "tx_hash": "f034d2fc20879fa54967667975c28e61b9e666da655c2cdeef7b284f057afff6", "block_index": 192, - "block_time": 1729416229 + "block_time": 1729419257 } ], "next_cursor": 520, @@ -4624,7 +4599,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt,bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx,bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3` (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 @@ -4640,17 +4615,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "destination": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "memo": null, "quantity": 10000, - "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "status": "valid", - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "tx_index": 63, "asset_info": { "divisible": true, @@ -4661,22 +4636,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729416255.7714357 + "timestamp": 1729419299.9227293 }, { - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "event": "CREDIT", "params": { - "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "event": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -4686,22 +4661,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729416255.7714357 + "timestamp": 1729419299.9227293 }, { - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "address": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "asset": "XCP", "block_index": 196, - "event": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "event": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -4711,30 +4686,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729416255.7714357 + "timestamp": 1729419299.9227293 }, { - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729416255.7714357, + "block_time": 1729419299.9227293, "btc_amount": 0, - "data": "020000000000000001000000000000271080b964d3e562cdc29be80c17fb47d0461efe1c5a5d", + "data": "020000000000000001000000000000271080d0f087d8a9e67fb02f22722fc8b975fb1e6c473e", "destination": "", "fee": 10000, - "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "tx_index": 63, - "utxos_info": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836:1", + "utxos_info": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "memo": null, "asset_info": { "divisible": true, @@ -4748,7 +4723,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729416255.7714357 + "timestamp": 1729419299.9227293 } ], "next_cursor": null, @@ -4761,7 +4736,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address to return + + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -4781,7 +4756,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -4789,14 +4764,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -4804,14 +4779,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -4826,7 +4801,7 @@ Returns the balances of an address "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -4834,7 +4809,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -4851,7 +4826,7 @@ Returns the balances of an address Returns the balance of an address and asset + Parameters - + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address to return + + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (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` @@ -4863,7 +4838,7 @@ Returns the balance of an address and asset ``` { "result": { - "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -4885,7 +4860,7 @@ Returns the balance of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address to return + + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -4935,16 +4910,16 @@ Returns the credits of an address "result": [ { "block_index": 192, - "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", + "event": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729416229, + "block_time": 1729419257, "asset_info": { "divisible": true, "asset_longname": null, @@ -4956,16 +4931,16 @@ Returns the credits of an address }, { "block_index": 184, - "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8", + "event": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729416128, + "block_time": 1729419167, "asset_info": { "divisible": true, "asset_longname": null, @@ -4977,20 +4952,20 @@ Returns the credits of an address }, { "block_index": 161, - "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "bb2aa89179834fafe03acecbbade4d6fd928251f2923a59b4656957ab3685976", + "event": "e3935cf288cec52794daa26e2783ae06125ca6965f257e7d9ff3585239657033", "tx_index": 48, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729416112, + "block_time": 1729419150, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -4998,20 +4973,20 @@ Returns the credits of an address }, { "block_index": 158, - "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "d875bf5554d034912c2a9eb7d151d9f055e3135142c077fa342ce253d4b54d3e", + "event": "82690f74f70a78c1049e4a8fb569f81e1cd0cbf656d4f1c9b006ac977558a1b7", "tx_index": 45, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729416098, + "block_time": 1729419127, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -5023,16 +4998,16 @@ Returns the credits of an address "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "aebd60a74f16beb780629243965a4832b6c9e75043be78503b78cb904acba5d6", + "event": "19241abee68c758ce2acf9aa205d89e2974a82660ba244e8539a1e2db77bf4f6", "tx_index": 39, - "utxo": "aebd60a74f16beb780629243965a4832b6c9e75043be78503b78cb904acba5d6:1", - "utxo_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "utxo": "19241abee68c758ce2acf9aa205d89e2974a82660ba244e8539a1e2db77bf4f6:1", + "utxo_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "confirmed": true, - "block_time": 1729416061, + "block_time": 1729419100, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -5049,7 +5024,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address to return + + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5088,16 +5063,16 @@ Returns the debits of an address "result": [ { "block_index": 193, - "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", + "event": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729416233, + "block_time": 1729419272, "asset_info": { "divisible": true, "asset_longname": null, @@ -5109,16 +5084,16 @@ Returns the debits of an address }, { "block_index": 191, - "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", + "event": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729416224, + "block_time": 1729419253, "asset_info": { "divisible": true, "asset_longname": null, @@ -5130,16 +5105,16 @@ Returns the debits of an address }, { "block_index": 190, - "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", + "event": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729416220, + "block_time": 1729419248, "asset_info": { "divisible": true, "asset_longname": null, @@ -5151,20 +5126,20 @@ Returns the debits of an address }, { "block_index": 190, - "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", + "event": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729416220, + "block_time": 1729419248, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -5172,16 +5147,16 @@ Returns the debits of an address }, { "block_index": 185, - "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", + "event": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", "tx_index": 51, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729416187, + "block_time": 1729419226, "asset_info": { "divisible": true, "asset_longname": null, @@ -5202,7 +5177,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address of the feed + + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5237,7 +5212,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address to return + + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (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 @@ -5256,9 +5231,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "674a65a64a4826a0b0d490aca3e07b7fd65869b1649206fa97265a826ed95b11", + "tx_hash": "d0aca4399eb6a0726cf88725563432f6ab5e40ed7b526c9a96ce23e4881a0b1e", "block_index": 137, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5266,7 +5241,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729415995, + "block_time": 1729419015, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5280,7 +5255,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address to return + + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (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 @@ -5299,14 +5274,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "55cc024ddcd9ac23b7cf78f81f744c3f8b3fd177ee079fc992c75f53faafde70", + "tx_hash": "a51b8fe949db2a0269b1a8e9effb3922c88f84fcd722c1eb0b7f6e8a2c7c1e46", "block_index": 112, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1729415886, + "block_time": 1729418910, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5321,7 +5296,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address to return + + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address to return + cursor (str, optional) - The last index of the sends to return + Default: `None` + limit: `5` (int, optional) - The maximum number of sends to return @@ -5340,10 +5315,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 56, - "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", + "tx_hash": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", "block_index": 190, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5351,7 +5326,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416220, + "block_time": 1729419248, "asset_info": { "divisible": true, "asset_longname": null, @@ -5364,10 +5339,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 56, - "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", + "tx_hash": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", "block_index": 190, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5375,11 +5350,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416220, + "block_time": 1729419248, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -5388,10 +5363,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 56, - "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", + "tx_hash": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", "block_index": 190, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5399,11 +5374,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416220, + "block_time": 1729419248, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -5412,10 +5387,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 39, - "tx_hash": "aebd60a74f16beb780629243965a4832b6c9e75043be78503b78cb904acba5d6", + "tx_hash": "19241abee68c758ce2acf9aa205d89e2974a82660ba244e8539a1e2db77bf4f6", "block_index": 152, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "aebd60a74f16beb780629243965a4832b6c9e75043be78503b78cb904acba5d6:1", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "19241abee68c758ce2acf9aa205d89e2974a82660ba244e8539a1e2db77bf4f6:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5423,11 +5398,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416061, + "block_time": 1729419100, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -5436,10 +5411,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 36, - "tx_hash": "29164d2e5e97a484170fd199cd18fb9fc6798b6ac00213c37ac4ae9dbc322b91", + "tx_hash": "81515ceb01d9d57d4c9c65502f478c7f3933ad32df8912f05c85977f3919ab9c", "block_index": 149, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "2df6cb6457b25d97b2a3c828c2ccdf94125693a11ccd1385a63069772b1df123:1", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "8d23f1890ae5570e81293c9c05077a8b43c14f577b2e3b74edf1f125a6764c57:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5447,11 +5422,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416048, + "block_time": 1729419086, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -5469,7 +5444,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qkgcujj6uea6hshreznk6fw8e22utgsdyqd02hg` (str, required) - The address to return + + address: `bcrt1qg6cl5djlpjf8ne6z88eh7rpjt2c9ttupg48l6x` (str, required) - The address to return + cursor (str, optional) - The last index of the sends to return + Default: `None` + limit: `5` (int, optional) - The maximum number of sends to return @@ -5488,10 +5463,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "e755d7b8872d3d225da4d98c83eb4694a52915378b4b246272aff784b230d963", + "tx_hash": "b0bd44f210f49eeff94e14b96de922cb147dc9069d998d38e9ca17d5ad033d1d", "block_index": 151, - "source": "cdcf917d341dcb5152a735abf3e6fbe5c3f3df03e327bdacc1f0c3f858ddbbeb:0", - "destination": "bcrt1qkgcujj6uea6hshreznk6fw8e22utgsdyqd02hg", + "source": "b97859d82df08aec2a7034a1721052c7eb6e72e5a41716e18796c69e00b4a59b:0", + "destination": "bcrt1qg6cl5djlpjf8ne6z88eh7rpjt2c9ttupg48l6x", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5499,11 +5474,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416057, + "block_time": 1729419095, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -5521,7 +5496,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address to return + + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address to return + asset: `MYASSETA` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5541,10 +5516,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 56, - "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", + "tx_hash": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", "block_index": 190, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5552,11 +5527,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416220, + "block_time": 1729419248, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -5565,10 +5540,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 56, - "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", + "tx_hash": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", "block_index": 190, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5576,11 +5551,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416220, + "block_time": 1729419248, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -5589,10 +5564,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 39, - "tx_hash": "aebd60a74f16beb780629243965a4832b6c9e75043be78503b78cb904acba5d6", + "tx_hash": "19241abee68c758ce2acf9aa205d89e2974a82660ba244e8539a1e2db77bf4f6", "block_index": 152, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "aebd60a74f16beb780629243965a4832b6c9e75043be78503b78cb904acba5d6:1", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "19241abee68c758ce2acf9aa205d89e2974a82660ba244e8539a1e2db77bf4f6:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5600,11 +5575,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416061, + "block_time": 1729419100, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -5613,10 +5588,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 36, - "tx_hash": "29164d2e5e97a484170fd199cd18fb9fc6798b6ac00213c37ac4ae9dbc322b91", + "tx_hash": "81515ceb01d9d57d4c9c65502f478c7f3933ad32df8912f05c85977f3919ab9c", "block_index": 149, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "2df6cb6457b25d97b2a3c828c2ccdf94125693a11ccd1385a63069772b1df123:1", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "8d23f1890ae5570e81293c9c05077a8b43c14f577b2e3b74edf1f125a6764c57:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5624,11 +5599,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416048, + "block_time": 1729419086, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -5646,7 +5621,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qkgcujj6uea6hshreznk6fw8e22utgsdyqd02hg` (str, required) - The address to return + + address: `bcrt1qg6cl5djlpjf8ne6z88eh7rpjt2c9ttupg48l6x` (str, required) - The address to return + asset: `MYASSETA` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5666,10 +5641,10 @@ Returns the receives of an address and asset "result": [ { "tx_index": 38, - "tx_hash": "e755d7b8872d3d225da4d98c83eb4694a52915378b4b246272aff784b230d963", + "tx_hash": "b0bd44f210f49eeff94e14b96de922cb147dc9069d998d38e9ca17d5ad033d1d", "block_index": 151, - "source": "cdcf917d341dcb5152a735abf3e6fbe5c3f3df03e327bdacc1f0c3f858ddbbeb:0", - "destination": "bcrt1qkgcujj6uea6hshreznk6fw8e22utgsdyqd02hg", + "source": "b97859d82df08aec2a7034a1721052c7eb6e72e5a41716e18796c69e00b4a59b:0", + "destination": "bcrt1qg6cl5djlpjf8ne6z88eh7rpjt2c9ttupg48l6x", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5677,11 +5652,11 @@ Returns the receives of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416057, + "block_time": 1729419095, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -5699,7 +5674,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address to return + + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5728,9 +5703,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5739,7 +5714,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5749,7 +5724,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729416013, + "block_time": 1729419032, "asset_info": { "divisible": true, "asset_longname": null, @@ -5774,7 +5749,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address to return + + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (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` @@ -5787,9 +5762,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5798,7 +5773,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5808,7 +5783,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729416013, + "block_time": 1729419032, "asset_info": { "divisible": true, "asset_longname": null, @@ -5830,7 +5805,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address to return + + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (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 @@ -5850,19 +5825,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "77f26b77b205be83c57e46f437168ffa54afdd0f8fe2855da90317153ec41ae4", + "tx_hash": "c6ac5bd9f3a4f413beac1ab01476860538e1080fc55842bd6eb360ede5b96b03", "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5870,7 +5845,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5885,7 +5860,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729416013, + "block_time": 1729419032, "asset_info": { "divisible": true, "asset_longname": null, @@ -5899,19 +5874,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ea65dde6c36bf0ee93197974ace92a2b2a68a0821b6f382104f98419c6ffe544", + "tx_hash": "5b8b6d8f67be9da23119f8bb3166e1a15862ffe4ad592bfe7e4c4517034b809f", "block_index": 140, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5919,7 +5894,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5934,7 +5909,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729416009, + "block_time": 1729419028, "asset_info": { "divisible": true, "asset_longname": null, @@ -5956,7 +5931,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22` (str, required) - The address to return + + address: `bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw` (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 @@ -5976,19 +5951,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "77f26b77b205be83c57e46f437168ffa54afdd0f8fe2855da90317153ec41ae4", + "tx_hash": "c6ac5bd9f3a4f413beac1ab01476860538e1080fc55842bd6eb360ede5b96b03", "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5996,7 +5971,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6011,7 +5986,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729416013, + "block_time": 1729419032, "asset_info": { "divisible": true, "asset_longname": null, @@ -6025,19 +6000,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ea65dde6c36bf0ee93197974ace92a2b2a68a0821b6f382104f98419c6ffe544", + "tx_hash": "5b8b6d8f67be9da23119f8bb3166e1a15862ffe4ad592bfe7e4c4517034b809f", "block_index": 140, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6045,7 +6020,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6060,7 +6035,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729416009, + "block_time": 1729419028, "asset_info": { "divisible": true, "asset_longname": null, @@ -6082,7 +6057,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address to return + + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (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` @@ -6103,19 +6078,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "77f26b77b205be83c57e46f437168ffa54afdd0f8fe2855da90317153ec41ae4", + "tx_hash": "c6ac5bd9f3a4f413beac1ab01476860538e1080fc55842bd6eb360ede5b96b03", "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6123,7 +6098,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6138,7 +6113,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729416013, + "block_time": 1729419032, "asset_info": { "divisible": true, "asset_longname": null, @@ -6152,19 +6127,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ea65dde6c36bf0ee93197974ace92a2b2a68a0821b6f382104f98419c6ffe544", + "tx_hash": "5b8b6d8f67be9da23119f8bb3166e1a15862ffe4ad592bfe7e4c4517034b809f", "block_index": 140, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6172,7 +6147,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6187,7 +6162,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729416009, + "block_time": 1729419028, "asset_info": { "divisible": true, "asset_longname": null, @@ -6209,7 +6184,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22` (str, required) - The address to return + + address: `bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw` (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` @@ -6230,19 +6205,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "77f26b77b205be83c57e46f437168ffa54afdd0f8fe2855da90317153ec41ae4", + "tx_hash": "c6ac5bd9f3a4f413beac1ab01476860538e1080fc55842bd6eb360ede5b96b03", "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6250,7 +6225,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6265,7 +6240,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729416013, + "block_time": 1729419032, "asset_info": { "divisible": true, "asset_longname": null, @@ -6279,19 +6254,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ea65dde6c36bf0ee93197974ace92a2b2a68a0821b6f382104f98419c6ffe544", + "tx_hash": "5b8b6d8f67be9da23119f8bb3166e1a15862ffe4ad592bfe7e4c4517034b809f", "block_index": 140, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6299,7 +6274,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6314,7 +6289,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729416009, + "block_time": 1729419028, "asset_info": { "divisible": true, "asset_longname": null, @@ -6336,7 +6311,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt` (str, required) - The address to return + + address: `bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx` (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 @@ -6355,16 +6330,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 60, - "tx_hash": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", + "tx_hash": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b", "block_index": 194, - "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", - "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "source": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "destination": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729416237, + "block_time": 1729419276, "fee_paid_normalized": "0.00600000" } ], @@ -6378,7 +6353,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address to return + + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address to return + cursor (str, optional) - The last index of the issuances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of issuances to return @@ -6397,14 +6372,14 @@ Returns the issuances of an address "result": [ { "tx_index": 48, - "tx_hash": "bb2aa89179834fafe03acecbbade4d6fd928251f2923a59b4656957ab3685976", + "tx_hash": "e3935cf288cec52794daa26e2783ae06125ca6965f257e7d9ff3585239657033", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "transfer": false, "callable": false, "call_date": 0, @@ -6419,20 +6394,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729416112, + "block_time": 1729419150, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "55efb0e7632d7d4e2918c6d68f1a68cf6ebb205b5bf25194db11afe19f288dc0", + "tx_hash": "99d745d7b6cab56067254aafd0c9aedb86c8122f7764c92e39088c6643178415", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "transfer": false, "callable": false, "call_date": 0, @@ -6447,20 +6422,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729416107, + "block_time": 1729419146, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "915196486b240c228f8f48b8bc894be2372a5f29da06926a1aad6050d298f626", + "tx_hash": "29e7696904677d53d03bc85c345fb128b588bf78d9bc197424431a64bb383969", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "transfer": false, "callable": false, "call_date": 0, @@ -6475,20 +6450,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729416103, + "block_time": 1729419131, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "d875bf5554d034912c2a9eb7d151d9f055e3135142c077fa342ce253d4b54d3e", + "tx_hash": "82690f74f70a78c1049e4a8fb569f81e1cd0cbf656d4f1c9b006ac977558a1b7", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "transfer": false, "callable": false, "call_date": 0, @@ -6503,20 +6478,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729416098, + "block_time": 1729419127, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "68455c81e91976b50973996dd5e3b1bafeb9009b2ca1a238e4a1897afbef2d46", + "tx_hash": "c8665b67e71ee218d3415890729798887bbc54fb90e4c5e9cfeb24ce802a5b34", "msg_index": 0, "block_index": 155, "asset": "A95428958968845068", "quantity": 0, "divisible": true, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "transfer": false, "callable": false, "call_date": 0, @@ -6531,7 +6506,7 @@ Returns the issuances of an address "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729416085, + "block_time": 1729419113, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -6546,7 +6521,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The issuer or owner to return + + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (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 @@ -6569,8 +6544,8 @@ Returns the valid assets issued or owned by an address "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 10000000000, @@ -6578,16 +6553,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729416098, - "last_issuance_block_time": 1729416107, + "first_issuance_block_time": 1729419127, + "last_issuance_block_time": 1729419146, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 100000000000, @@ -6595,16 +6570,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729416044, - "last_issuance_block_time": 1729416044, + "first_issuance_block_time": 1729419083, + "last_issuance_block_time": 1729419083, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 40, @@ -6612,16 +6587,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729415987, - "last_issuance_block_time": 1729415991, + "first_issuance_block_time": 1729419007, + "last_issuance_block_time": 1729419011, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 19, @@ -6629,16 +6604,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729415969, - "last_issuance_block_time": 1729415982, + "first_issuance_block_time": 1729418990, + "last_issuance_block_time": 1729419002, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 0, @@ -6646,8 +6621,8 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729415948, - "last_issuance_block_time": 1729415965, + "first_issuance_block_time": 1729418969, + "last_issuance_block_time": 1729418986, "supply_normalized": "0.00000000" } ], @@ -6661,7 +6636,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The issuer to return + + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (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 @@ -6684,8 +6659,8 @@ Returns the valid assets issued by an address "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 10000000000, @@ -6693,16 +6668,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729416098, - "last_issuance_block_time": 1729416107, + "first_issuance_block_time": 1729419127, + "last_issuance_block_time": 1729419146, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 100000000000, @@ -6710,16 +6685,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729416044, - "last_issuance_block_time": 1729416044, + "first_issuance_block_time": 1729419083, + "last_issuance_block_time": 1729419083, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 40, @@ -6727,16 +6702,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729415987, - "last_issuance_block_time": 1729415991, + "first_issuance_block_time": 1729419007, + "last_issuance_block_time": 1729419011, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 19, @@ -6744,16 +6719,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729415969, - "last_issuance_block_time": 1729415982, + "first_issuance_block_time": 1729418990, + "last_issuance_block_time": 1729419002, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 0, @@ -6761,8 +6736,8 @@ Returns the valid assets issued by an address "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729415948, - "last_issuance_block_time": 1729415965, + "first_issuance_block_time": 1729418969, + "last_issuance_block_time": 1729418986, "supply_normalized": "0.00000000" } ], @@ -6776,7 +6751,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The owner to return + + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (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 @@ -6799,8 +6774,8 @@ Returns the valid assets owned by an address "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 10000000000, @@ -6808,16 +6783,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729416098, - "last_issuance_block_time": 1729416107, + "first_issuance_block_time": 1729419127, + "last_issuance_block_time": 1729419146, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 100000000000, @@ -6825,16 +6800,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729416044, - "last_issuance_block_time": 1729416044, + "first_issuance_block_time": 1729419083, + "last_issuance_block_time": 1729419083, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 40, @@ -6842,16 +6817,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729415987, - "last_issuance_block_time": 1729415991, + "first_issuance_block_time": 1729419007, + "last_issuance_block_time": 1729419011, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 19, @@ -6859,16 +6834,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729415969, - "last_issuance_block_time": 1729415982, + "first_issuance_block_time": 1729418990, + "last_issuance_block_time": 1729419002, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 0, @@ -6876,8 +6851,8 @@ Returns the valid assets owned by an address "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729415948, - "last_issuance_block_time": 1729415965, + "first_issuance_block_time": 1729418969, + "last_issuance_block_time": 1729418986, "supply_normalized": "0.00000000" } ], @@ -6891,7 +6866,7 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address to return + + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address to return + cursor: `62` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -6910,17 +6885,17 @@ Returns the transactions of an address "result": [ { "tx_index": 59, - "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", + "tx_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", "block_index": 193, - "block_hash": "4711586e156dc07bc446b0d13bd07197fb6073457f04e8c962b18601d7aab73c", - "block_time": 1729416233, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "block_hash": "57dfced2294a097ac30ded16acb47a12f446095f608438f62863069eb55f26a9", + "block_time": 1729419272, + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687:1", + "utxos_info": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6956,23 +6931,23 @@ Returns the transactions of an address }, { "tx_index": 58, - "tx_hash": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa", + "tx_hash": "f034d2fc20879fa54967667975c28e61b9e666da655c2cdeef7b284f057afff6", "block_index": 192, - "block_hash": "7ed678c7467e7efadcf543e389f591346431c76c567638ba2fc748d67b102781", - "block_time": 1729416229, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "block_hash": "3658d2f90d22c5ac539825f061b3e1485c9d4cc338f3f9f38f7f545f4254effd", + "block_time": 1729419257, + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "460a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", + "data": "468fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", "supported": true, - "utxos_info": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa:1", + "utxos_info": "f034d2fc20879fa54967667975c28e61b9e666da655c2cdeef7b284f057afff6:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", + "offer_hash": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", "status": "valid" } }, @@ -6980,17 +6955,17 @@ Returns the transactions of an address }, { "tx_index": 57, - "tx_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", + "tx_hash": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", "block_index": 191, - "block_hash": "2fb7daac12d57d03a72504b4a83dcdcf2526bf0ddd4ef79a494697e3933b3d32", - "block_time": 1729416224, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "block_hash": "5a79892b45761c6b06ee6c4b9265e5b99130ebf3f085b1f3f60c31c331cb99c7", + "block_time": 1729419253, + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d:1", + "utxos_info": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7026,17 +7001,17 @@ Returns the transactions of an address }, { "tx_index": 56, - "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", + "tx_hash": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", "block_index": 190, - "block_hash": "49031dd5afeca85d63b74c5b576803fe4396010c7929926e9d94cfc692574922", - "block_time": 1729416220, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "block_hash": "27d56f8f7a9d91d559042a50061b02cd6ae526427d0159cd054bfb1432893317", + "block_time": 1729419248, + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003803ba2dced599f88fbfa5943ac7d4ab45523f9908780b964d3e562cdc29be80c17fb47d0461efe1c5a5d80bf13d9c76ee760db64d132b5dc3f99ed263282ec400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380d64c08d96d88ea91d982fd48c18244108a8ef38f80d0f087d8a9e67fb02f22722fc8b975fb1e6c473e803dcc35a8148c4958edc036d7dbf62f22c9ee7f8c400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6:0", + "utxos_info": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7044,14 +7019,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "destination": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -7059,7 +7034,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -7078,17 +7053,17 @@ Returns the transactions of an address }, { "tx_index": 51, - "tx_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", + "tx_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", "block_index": 185, - "block_hash": "7022f01d2361762ff7500ea66fcef11c67e5bdb88379284af1dbec2b0c29efee", - "block_time": 1729416187, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "block_hash": "696cbe8e6ec91178e31305ec01386699fd8188f612ad44cac93d7c45cac0e8c3", + "block_time": 1729419226, + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39:1", + "utxos_info": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7133,7 +7108,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address to return + + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (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 @@ -7152,20 +7127,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 41, - "tx_hash": "0c95334ce0b328f2ff4e1e44c4e96d503ba60b7b2b1fbabeabef5f3ac971b288", + "tx_hash": "5954cbb59b8f533b6dc597f67642fe125d0f54d58dd8bd6109079010bc39416b", "block_index": 154, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729416070, + "block_time": 1729419109, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -7190,7 +7165,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address to return + + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7219,9 +7194,9 @@ Returns the orders of an address "result": [ { "tx_index": 49, - "tx_hash": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8", + "tx_hash": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b", "block_index": 184, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7236,7 +7211,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729416128, + "block_time": 1729419167, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7262,9 +7237,9 @@ Returns the orders of an address }, { "tx_index": 51, - "tx_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", + "tx_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", "block_index": 188, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7279,7 +7254,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729416201, + "block_time": 1729419239, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7305,9 +7280,9 @@ Returns the orders of an address }, { "tx_index": 57, - "tx_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", + "tx_hash": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", "block_index": 192, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7322,7 +7297,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729416229, + "block_time": 1729419257, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7348,9 +7323,9 @@ Returns the orders of an address }, { "tx_index": 59, - "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", + "tx_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", "block_index": 193, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7365,7 +7340,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729416233, + "block_time": 1729419272, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7400,7 +7375,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The source of the fairminter to return + + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The source of the fairminter to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7418,10 +7393,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "68455c81e91976b50973996dd5e3b1bafeb9009b2ca1a238e4a1897afbef2d46", + "tx_hash": "c8665b67e71ee218d3415890729798887bbc54fb90e4c5e9cfeb24ce802a5b34", "tx_index": 42, "block_index": 155, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7446,13 +7421,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729416085 + "block_time": 1729419113 }, { - "tx_hash": "251c310af851cba2ce4a58932e7cb803aeb6a9f7a55bac9bbf688ba85a48ef28", + "tx_hash": "f38ae5c8abb6b49f9591e5eaae9ea1d072612f70aaa73853f25ba05480b5076c", "tx_index": 22, "block_index": 135, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7477,13 +7452,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729415987 + "block_time": 1729419007 }, { - "tx_hash": "dbd38cf37e8f0c24ae54d5b6169437c48f55fb84fc0583aa0d79858c0f9a69fc", + "tx_hash": "675462aae760c27fbb910a3dec263a6af7602d963a9cf8ee68a2fb5b96eba4c1", "tx_index": 18, "block_index": 131, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7508,13 +7483,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729415969 + "block_time": 1729418990 }, { - "tx_hash": "9f887ea5403be9aa383402f97d0e8f856de8951ba3327060b3af17321c9478ad", + "tx_hash": "5dbec8408aedd6f8d6d3e7996757c0f4cc868053ef22cea6e506b00fda3c0efd", "tx_index": 14, "block_index": 130, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -7539,13 +7514,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729415965 + "block_time": 1729418986 }, { - "tx_hash": "bb813d64db8f65171084ffa83e7128316586ef0283b09807d288d02a0b8e58da", + "tx_hash": "a6341ea44902feb982ab97a01f0a8313fc32d0304f32bc76b50b54252f14310c", "tx_index": 10, "block_index": 125, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7570,7 +7545,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729415943 + "block_time": 1729418965 } ], "next_cursor": null, @@ -7583,7 +7558,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22` (str, required) - The address of the mints to return + + address: `bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7601,127 +7576,127 @@ Returns the mints by address { "result": [ { - "tx_hash": "6b50dfb9f0288a39497978e107102a20fca9269f60c348a7d3252a97951c3dfa", + "tx_hash": "27f936d6cbc64295fbb696767820d4b39f85fcf3a8bd6345ef8efaf104da5fd0", "tx_index": 23, "block_index": 136, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", - "fairminter_tx_hash": "251c310af851cba2ce4a58932e7cb803aeb6a9f7a55bac9bbf688ba85a48ef28", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "fairminter_tx_hash": "f38ae5c8abb6b49f9591e5eaae9ea1d072612f70aaa73853f25ba05480b5076c", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729415991, + "block_time": 1729419011, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false } }, { - "tx_hash": "ec08c12c9bbaea508612d23ebc7653d37f4f177f216252e62a801b65f3858840", + "tx_hash": "7bb093115a2d0176787d5a006801240eef7f4cd71b84f5f2d06733ba0119c0cc", "tx_index": 21, "block_index": 134, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", - "fairminter_tx_hash": "dbd38cf37e8f0c24ae54d5b6169437c48f55fb84fc0583aa0d79858c0f9a69fc", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "fairminter_tx_hash": "675462aae760c27fbb910a3dec263a6af7602d963a9cf8ee68a2fb5b96eba4c1", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729415982, + "block_time": 1729419002, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false } }, { - "tx_hash": "187f59a0c410f68e7a905a52efc5ca6aa0cd19f9a082e30ab709d107d8abc5a8", + "tx_hash": "b851cfca13069253a3eeaa7fde8700cce9788279140b0656644aa14fd4e778ce", "tx_index": 20, "block_index": 133, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", - "fairminter_tx_hash": "dbd38cf37e8f0c24ae54d5b6169437c48f55fb84fc0583aa0d79858c0f9a69fc", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "fairminter_tx_hash": "675462aae760c27fbb910a3dec263a6af7602d963a9cf8ee68a2fb5b96eba4c1", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729415978, + "block_time": 1729418998, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false } }, { - "tx_hash": "77cc9d1e2521b94e0c146a22a59691f4c8bc6df0a58ab18d594ecef174baa7ae", + "tx_hash": "6d92c20c614c253df720b314dc30da74be0cd96f7f70fff35c3407497f7641dc", "tx_index": 19, "block_index": 132, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", - "fairminter_tx_hash": "dbd38cf37e8f0c24ae54d5b6169437c48f55fb84fc0583aa0d79858c0f9a69fc", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "fairminter_tx_hash": "675462aae760c27fbb910a3dec263a6af7602d963a9cf8ee68a2fb5b96eba4c1", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729415974, + "block_time": 1729418994, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false } }, { - "tx_hash": "7897fbc67e359846b7309c1dca579ddb55834c4fb67acfe598508f095ce093a2", + "tx_hash": "4315c703733bd80d7b59b20487cfab9d06f9ef12566fd13539e70991cef34510", "tx_index": 15, "block_index": 127, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", - "fairminter_tx_hash": "9f887ea5403be9aa383402f97d0e8f856de8951ba3327060b3af17321c9478ad", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "fairminter_tx_hash": "5dbec8408aedd6f8d6d3e7996757c0f4cc868053ef22cea6e506b00fda3c0efd", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729415952, + "block_time": 1729418974, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false } }, { - "tx_hash": "be65810c28d4a6e23b5459a5aff489b71f797fee7c65043b9e917ebbc5897802", + "tx_hash": "9e241c300a1a56ab1d861331e00bfb7fad835c6be25cf243cd75edd3fe306672", "tx_index": 11, "block_index": 123, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", - "fairminter_tx_hash": "bb813d64db8f65171084ffa83e7128316586ef0283b09807d288d02a0b8e58da", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "fairminter_tx_hash": "a6341ea44902feb982ab97a01f0a8313fc32d0304f32bc76b50b54252f14310c", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729415935, + "block_time": 1729418956, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false } @@ -7737,7 +7712,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22` (str, required) - The address of the mints to return + + address: `bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw` (str, required) - The address of the mints to return + asset: `FAIRMINTA` (str, required) - The asset of the mints to return + cursor (str, optional) - + Default: `None` @@ -7756,22 +7731,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "be65810c28d4a6e23b5459a5aff489b71f797fee7c65043b9e917ebbc5897802", + "tx_hash": "9e241c300a1a56ab1d861331e00bfb7fad835c6be25cf243cd75edd3fe306672", "tx_index": 11, "block_index": 123, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", - "fairminter_tx_hash": "bb813d64db8f65171084ffa83e7128316586ef0283b09807d288d02a0b8e58da", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "fairminter_tx_hash": "a6341ea44902feb982ab97a01f0a8313fc32d0304f32bc76b50b54252f14310c", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729415935, + "block_time": 1729418956, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false } @@ -7810,8 +7785,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: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address that will make the bet - + feed_address: `bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address that will make the bet + + feed_address: `bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw` (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) @@ -7879,7 +7854,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: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (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) @@ -7935,7 +7910,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -7947,7 +7922,7 @@ Composes a transaction to broadcast textual and numerical information to the net "btc_out": 0, "btc_change": 4999985819, "btc_fee": 14181, - "rawtransaction": "0200000000010103c53ce48053eef01253ac42a4cfc1dacea9590d7f5ca642eb72bc386212974900000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff0200000000000000002b6a29621e6b3dde212622c0a459afe4fb71be54d2c0c406189e8b0b32e7c8ffdfba33ff8b1342e906cf1e009bba052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", + "rawtransaction": "0200000000010134379ee0469de525146eef87487832d25d4786eccfd4c014c2b0261f4a6588fc00000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff0200000000000000002b6a29038f5445b352bee2a83265e33904643ebcdcdecbaf0bca734653eedf7d82aa07a2907ed3d8a446e5bf9bba052a01000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -7969,8 +7944,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: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address that will be sending the payment - + order_match_id: `0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2` (str, required) - The ID of the order match to pay for + + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address that will be sending the payment + + order_match_id: `b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109` (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) @@ -8022,23 +7997,23 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "order_match_id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2" + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "order_match_id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109" }, "name": "btcpay", - "data": "434e5452505254590b0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", + "data": "434e5452505254590bb4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999978951, "btc_fee": 18049, - "rawtransaction": "0200000000010181dba1d05d6e406dcd50aaec18beffe131d414c55d4dd3d1a51ccfef8b1a339c00000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff03b80b000000000000160014d173175d97588c462c9f66604b39d4e4f49afab000000000000000004b6a4956141941b0b8a0a913a1c95323bd320cbfeed8410c2b57aa1846c8f23c8ad83e51ab7f9f027619783855f567635718ce30ac25e0bacf1962d72093b604d6a990da52bbfdeb2bd53186c79f052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", + "rawtransaction": "020000000001013ac9254fa830022cc186b8a81e9711e9e830138f1b82fed6a5d78f4d7b414b5500000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff03b80b000000000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351800000000000000004b6a499ddc7c9e9c28e3b8fe8dee31d7214aab602159790b17c019fcc281c2de12b88d75fad8a3dd24d913525bbe0af455a3fafa1552ed1351a16f7e7ad2638a63a29e9190fb6a5e375e4b1bc79f052a01000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", - "tx1_hash": "e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", - "order_match_id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", + "tx0_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", + "tx1_hash": "f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", + "order_match_id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", "status": "valid" } } @@ -8051,7 +8026,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: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address with the BTC to burn + + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (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` @@ -8106,7 +8081,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "quantity": 1000, "overburn": false }, @@ -8116,7 +8091,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss "btc_out": 1000, "btc_change": 4999985815, "btc_fee": 13185, - "rawtransaction": "020000000001017f6caa2830d0e4ce5780f9a7c48d89867206aeb77f898b2d24f861d1a198381f00000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000" + "rawtransaction": "02000000000101099078819364d1bd6ffee494fe691081b8ec7d216d18566ffaee78b0f6382f8400000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a01000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000000000000" } } ``` @@ -8126,8 +8101,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: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da` (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) @@ -8179,21 +8154,21 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "offer_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687" + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "offer_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da" }, "name": "cancel", - "data": "434e545250525459466eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", + "data": "434e545250525459466c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985819, "btc_fee": 14181, - "rawtransaction": "02000000000101fe1d219bc9a58fae33f85abbfe1c2e5c6f81800c082c9c9b93a747af11cee39900000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff0200000000000000002b6a29a7b79294aaa962f1893d4d7842d5fcd643ab65a66d472051bb7fda1fc143ea237b84b03aeff31408309bba052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", + "rawtransaction": "02000000000101a0026619cc15a01340ff7034b1dd615f3446caf32eb3cbe5df21c8ec3d40bf4400000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff0200000000000000002b6a2921a0609fed30e4f020d92f90fd89f3ff49b947c1e1889d036ab61bbd82156c7ba3a149aaec7fa3c00a9bba052a01000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", + "offer_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", "status": "valid" } } @@ -8206,7 +8181,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (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 @@ -8261,7 +8236,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8280,7 +8255,7 @@ Composes a transaction to destroy a quantity of an asset. "btc_out": 0, "btc_change": 4999986346, "btc_fee": 13654, - "rawtransaction": "02000000000101ad3e0a3168b60c3c0f9515e21e0b5e2b57d781da219a252a933562c768306e9f00000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff020000000000000000226a20274e41fbee760596790018e0f693d806746d1e0dedfb8f93a62f07d2075b6afdaabc052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", + "rawtransaction": "02000000000101480b39575c3ae8af03eda9cef959d3c9fa8321bd166809d31d968dd7d74fde1c00000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff020000000000000000226a20ea180e87c568d394d61a2c0bbf9c94393ed3fef91ca1f7c58dc0e5f39e09287faabc052a01000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8300,7 +8275,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: `bcrt1qpm0krm9adpcqdeu2tmuzwdl325fr9768g564cg` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qpt0kqhne88xpxhdekucjewsutuh8v0srmad5le` (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) @@ -8361,7 +8336,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qpm0krm9adpcqdeu2tmuzwdl325fr9768g564cg", + "source": "bcrt1qpt0kqhne88xpxhdekucjewsutuh8v0srmad5le", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8385,7 +8360,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "btc_out": 0, "btc_change": 4949955760, "btc_fee": 14240, - "rawtransaction": "02000000000101646bccb479cf590cc4e036bef000b0be84b1470859ea9fa4cbde76577125c243020000001600140edf61ecbd687006e78a5ef82737f1551232fb47ffffffff0200000000000000002c6a2a5943c618172e6e00a348295443d2e7f0f85fd8d92c5c0ceed2824a7ad3210a60cd2dc5a9f945829f4275b0540a27010000001600140edf61ecbd687006e78a5ef82737f1551232fb4702000000000000", + "rawtransaction": "020000000001018a76074adb09c2d37cc57169219c493040c2f343ba55a4fafd7b6af3bd13fe88020000001600140adf605e7939cc135db9b7312cba1c5f2e763e03ffffffff0200000000000000002c6a2a78c7f4d9fe6cedbf93cf5e6e4c5edce0f44ead4670c59eafc99a36fbf624434fbb12ef2ce23b97190bfbb0540a27010000001600140adf605e7939cc135db9b7312cba1c5f2e763e0302000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -8411,7 +8386,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: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (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: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address that will be issuing the dividend (must have the ownership of the asset which the dividend is being issued on) + quantity_per_unit: `1` (int, required) - The amount of dividend_asset rewarded (in satoshis, hence integer) + asset: `FAIRMINTA` (str, required) - The asset or subasset that the dividends are being rewarded on + dividend_asset: `XCP` (str, required) - The asset or subasset that the dividends are paid in @@ -8466,14 +8441,14 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -8492,7 +8467,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "btc_out": 0, "btc_change": 4999986287, "btc_fee": 13713, - "rawtransaction": "020000000001013699ad0980fe666890e0b20c6e52e67d0e6c3d902395168a80be6ed1b3e25fc200000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff020000000000000000236a217fba0aa87b9715724d9afa5d7185d276b5ec4a765b4784c0168b2149b02d38eb356fbc052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", + "rawtransaction": "0200000000010172befe6314e0252d4d5a546342b3c29900012fbb8a9252adb5e15fbded4b48ee00000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff020000000000000000236a214592ed2fce9c665a66b110835a38f2541d3e31c01631433f72f9676c3a404ec3886fbc052a01000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -8513,10 +8488,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: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (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: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (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` @@ -8577,10 +8552,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "transfer_destination": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "lock": false, "reset": false, @@ -8593,7 +8568,7 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo "btc_out": 546, "btc_change": 4999983749, "btc_fee": 15705, - "rawtransaction": "02000000000101040a5b6d2e0896a75657a6546999ce5ffcf0696968f05e1fe436bb2df0e3ac6100000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff032202000000000000160014d173175d97588c462c9f66604b39d4e4f49afab00000000000000000236a21220f11267d1122791192ad25b3698e85d9ee7e6a8809925982042083b08dd7d1f185b2052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", + "rawtransaction": "0200000000010141320b3b064b77e9fea5b91fa44bcc9c25aa746d78d0d0aa7ba4408c41742bfc00000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff032202000000000000160014557b2d77cc0be408f0448c0d51a68f2eb0e135180000000000000000236a219cf3441277c7dd41343a20990c64dcf383ec1d872335624f32468fc8fda59afcb285b2052a01000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -8622,9 +8597,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: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + assets: `XCP,MYASSETA` (str, required) - comma-separated list of assets to send - + destinations: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23,bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8,bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw` (str, required) - comma-separated list of addresses to send to + quantities: `1,2` (str, required) - comma-separated list of quantities to send (in satoshis, hence integer) + memo: `"Hello, world!"` (str, optional) - The Memo associated with this transaction + Default: `None` @@ -8681,16 +8656,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", 1 ], [ "MYASSETA", - "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", 2 ] ], @@ -8698,26 +8673,26 @@ Composes a transaction to send multiple payments to multiple addresses. "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280d173175d97588c462c9f66604b39d4e4f49afab0803ba2dced599f88fbfa5943ac7d4ab45523f990878f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e54525052545903000280557b2d77cc0be408f0448c0d51a68f2eb0e1351880d64c08d96d88ea91d982fd48c18244108a8ef38f8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945492, "btc_fee": 52508, - "rawtransaction": "02000000000104f9e2c5c25688bf8726c76d68df44e859cf98d1e7fae582ada16ebc3946678a9300000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff6ad557f7fcfdfe084d1ac97c0332c20afb11799028ec1a75af8e0b7b03fbdef800000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffffe0de37ae9f2bb605930eaeae4ac684e780d90a42e08eca70d4797dba022dfc9e00000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff22804a4999a199c6f37de0a97b5ac0271919d5b361b621baf8b15050e1ca002200000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff03e8030000000000006951210314ca80272f1d44bde992f431faf91718e09ef86d858211df77d8c0ec597b43cd2103a8b2bc6b618117c7465a64e0ad239f93f3f13d1c50bcee000b9c8ba1a75eaf5421026a1a918fbc2c6d5fb3aa96a683c6930e932f1484f06179aa0a146e66d4d4cb4053aee803000000000000695121021bca80272f1d44bde9b1835c0844002e9f89a0e1cfbb1532a0b3f938bd8fd9a9210252027450c35dfa9ed9d2971af46033eeb9456a3fa92c698f29d4eecdcb31834e21026a1a918fbc2c6d5fb3aa96a683c6930e932f1484f06179aa0a146e66d4d4cb4053ae14f316a804000000160014d173175d97588c462c9f66604b39d4e4f49afab002000002000002000002000000000000", + "rawtransaction": "02000000000104872099d46dc4ce3f6ad0c361ce9d947cb034f9d81b1801aaea2de1363bd8fe4800000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff512d67af5c060aeaf2779bd07f5c60b7672b3bd33e2915bb7dbdd0d2c926e53f00000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffffa2e4f6f8781073461dcf3ae985a590d8edec751fcebf229538f925cf7045839300000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff8ef0f89317a99912e38142a6c4f6ea380b03ed3a5ed3d6783217577798f70bc200000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff03e8030000000000006951210344f7d4bb2c81a7b02feea09c29fb3d77fdd508e35831099f77b240362bf5b8d62102a232db0d2c6e4f90afae80aa2bf0b1942c6b8b60faa643cb693b63f1685dac262103affaa19ddc10bf87091cfd5b2bb70bbf61dbbe6e47c42d281a8eb11cd006464753aee803000000000000695121034bf7d4bb2c81a7b02fcdd7f1dbc2227ba89903075cd4d698cdc3e6b9054559212103972a13db606696fd27441973a90df955ae2f99ea7455cc444b73069d043280e32103affaa19ddc10bf87091cfd5b2bb70bbf61dbbe6e47c42d281a8eb11cd006464753ae14f316a804000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "quantity": 2, "memo": "\"Hello, world!\"", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "quantity": 1, "memo": "\"Hello, world!\"", "memo_is_hex": false @@ -8733,7 +8708,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + give_asset: `XCP` (str, required) - The asset that will be given in the trade + give_quantity: `1000` (int, required) - The quantity of the asset that will be given (in satoshis, hence integer) + get_asset: `FAIRMINTA` (str, required) - The asset that will be received in the trade @@ -8791,7 +8766,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -8808,7 +8783,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -8822,7 +8797,7 @@ Composes a transaction to place an order on the distributed exchange. "btc_out": 0, "btc_change": 4999985233, "btc_fee": 14767, - "rawtransaction": "020000000001015c1000a9495c8eaeda2787422cdadda0a39248d151b6a45c4b79b995426d202700000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff020000000000000000356a33dba46f235b2118f816db02fd0507a464e20270d7bb1ef42c5bbaa1d3a75b4ec1f289f634020926e38e887791ec30dbdab55ace51b8052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", + "rawtransaction": "0200000000010128775239981478a97966a85861e5fc1755ff978bcb0b425411c22907a40e7ddb00000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff020000000000000000356a337770e05b3aabf76a9469096af287405436f2cae0c408b9a068c9bf1c07c67d861a89a939893a087501a74d6950a8519a92572e51b8052a01000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -8848,8 +8823,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: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22` (str, required) - The address that will be receiving the asset + + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw` (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 @@ -8909,8 +8884,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "asset": "XCP", "quantity": 1000, "memo": null, @@ -8926,19 +8901,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e8803ba2dced599f88fbfa5943ac7d4ab45523f99087", + "data": "434e54525052545902000000000000000100000000000003e880d64c08d96d88ea91d982fd48c18244108a8ef38f", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985526, "btc_fee": 14474, - "rawtransaction": "02000000000101b89d93ed0aaba12e8aef6c8b5208101f643d405fd7380a46a47559f6edeb4bc000000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff020000000000000000306a2eaafd5e5b91a750f24331b4abb684b246be7488b6da07d5fe59b8c45d32a31106de40558719e5970cdcd58eb245a576b9052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", + "rawtransaction": "020000000001013aef4e61fa90767b43f53050df3b5c3606cf70c15cb9056e93f97b89906a0bb100000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff020000000000000000306a2e6d5364169c39378a5cbd37c5f7568e54c86811c7f236a73c33a7da755d47f78422c6b73cfb926cdc13735fa2568576b9052a01000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "memo": null, "quantity_normalized": "0.00001000" } @@ -8952,8 +8927,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: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address that will be sending - + destination: `bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address that will be sending + + destination: `bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw` (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 @@ -9007,23 +8982,23 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e54525052545904803ba2dced599f88fbfa5943ac7d4ab45523f9908707ffff", + "data": "434e5452505254590480d64c08d96d88ea91d982fd48c18244108a8ef38f07ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986287, "btc_fee": 13713, - "rawtransaction": "02000000000101fe1d7beaaa65e8fe5b1ff462c4fa70efbd038d750f3da1b85b9ba06e5e772e1c00000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff020000000000000000236a2130e42e7060bad5c13bccdd568448eab1079b5e5dbb7e6905e3527a44b3c0e8b97f6fbc052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", + "rawtransaction": "02000000000101bccec179aa47263a72e38ff037acd33b61961a2de721ab85455c77af0ef6288900000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff020000000000000000236a2138d73af38cfb2ed202b8b53ce996892dfb014260b15177c4ddebafc7f720ce45f86fbc052a01000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "flags": 7, "memo": "ffff" } @@ -9037,8 +9012,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: `bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3` (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` @@ -9091,8 +9066,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", - "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "destination": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "quantity": 1000 }, "name": "dispense", @@ -9101,7 +9076,7 @@ Composes a transaction to send BTC to a dispenser. "btc_out": 1000, "btc_change": 4949852643, "btc_fee": 14357, - "rawtransaction": "02000000000101e88f6bb6a52dde2da6ab6130a52deb2ac3028ecab967566783aa080b1a91cae6020000001600143ba2dced599f88fbfa5943ac7d4ab45523f99087ffffffff03e803000000000000160014bf13d9c76ee760db64d132b5dc3f99ed263282ec00000000000000000c6a0a329d543d7dea56a04a51e3c10827010000001600143ba2dced599f88fbfa5943ac7d4ab45523f9908702000000000000", + "rawtransaction": "02000000000101329deef688fa5253ef66b18852ede9e913f8e35aa91037e9483055c5f3493e0902000000160014d64c08d96d88ea91d982fd48c18244108a8ef38fffffffff03e8030000000000001600143dcc35a8148c4958edc036d7dbf62f22c9ee7f8c00000000000000000c6a0a987ab516920b133faea7e3c1082701000000160014d64c08d96d88ea91d982fd48c18244108a8ef38f02000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9118,7 +9093,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address that will be issuing the asset + + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (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: `` @@ -9203,7 +9178,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9228,7 +9203,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "btc_out": 0, "btc_change": 4999985467, "btc_fee": 14533, - "rawtransaction": "02000000000101324897311064ab9bcc6991d054a3b9f8954cee8bb23c1c172b3ea601224d124c00000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff020000000000000000316a2f60fc0683cdeaead209418cea1ee595c5788630aac3082f33f93bb3f1183e7e593a74944cf918882aea74fc2014367f3bb9052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", + "rawtransaction": "0200000000010119b378c662e58853c1348d64e6eb24bea86ad258d65edea5c46e3a3066945dad00000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff020000000000000000316a2f7770f3fda885000fecf9982d1bd5470fcfe09b713f5ab032aba6a04c462c7e62318cde01a00ffff3a8c2d24e4f38ca3bb9052a01000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9261,7 +9236,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: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address that will be minting the asset + + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address that will be minting the asset + asset: `FAIRMINTC` (str, required) - The asset to mint + quantity: `1` (int, optional) - The quantity of the asset to mint (in satoshis, hence integer) + Default: `0` @@ -9316,13 +9291,13 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -9334,7 +9309,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto "btc_out": 0, "btc_change": 4999987049, "btc_fee": 12951, - "rawtransaction": "02000000000101bd7d44cb1a8cce8ddb850f0b3cb93f096a225a11be18289ea95e72f05f834bd300000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff020000000000000000166a14e78eedfba3389cc0de2378c44d755fc1b88fc7be69bf052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", + "rawtransaction": "02000000000101aa8f3dc7530a42a6d54ec70ec455b82ffdd975d2b57553f9efefeb7cfbaccc9600000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff020000000000000000166a142eaf0bc20ec8c24db516a8d68d159aa278543cad69bf052a01000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -9352,10 +9327,10 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto Composes a transaction to attach assets from an address to UTXO. + Parameters - + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address from which the assets are attached + + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (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: `361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630:1` (str, optional) - The utxo to attach the assets to + + destination: `be18eb1f6e1b54bd8664947ea547ecd06aaaddf36cfee98d705829f2cb6ad6df:0` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -9408,8 +9383,8 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630:1", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "be18eb1f6e1b54bd8664947ea547ecd06aaaddf36cfee98d705829f2cb6ad6df:0", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9422,12 +9397,12 @@ Composes a transaction to attach assets from an address to UTXO. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e545250525459646263727431713639653377687668747a78797674796c766573796b777735756e3666343734737274636632337c333631383937323333363735656637636233303366636164623037663931663937383061633764383763666164306264353332306230623961396466393633303a317c5843507c31303030", + "data": "434e545250525459646263727431713234616a3661377670306a7133757a793373783472663530393663777a64676374786b7263387c626531386562316636653162353462643836363439343765613534376563643036616161646466333663666565393864373035383239663263623661643664663a307c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999918531, "btc_fee": 78469, - "rawtransaction": "02000000000106da251f016c64930c9b89bcdb4d1851875eb521a1daa3a9756822852ac19bdb1800000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffffb066a01e205eaa38a0d6dd853b8471c40590ad52acc873e4d2955640ea7d288400000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff592e5fb090da16fc1a736149bfc1375fb8b7d112d90c50e3fd09ca564766ec7300000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffffcde3d5cb4d236718f5743f534d72af2257a915ead8ed8d644ed440ca20e5021500000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff6afeeb0964b35520fd7ccd0e26ff5a478fb095a31f3f27f4d2042eef60de307900000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffffeba0072600681eb10d96a09cfd7b2d029c949be6418e6c7f1d880da3cdfec48c00000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff04e80300000000000069512103516fd33a2620b650f990b844b426a3cca4b1220d2ab75122fa417948f498254f2102db35eb7e1d6bfef986886ccc46f7bc295baa8dbe8fa45bd358f5311270de23bb21026a1a918fbc2c6d5fb3aa96a683c6930e932f1484f06179aa0a146e66d4d4cb4053aee80300000000000069512102516fd33a2620b650f9c7e911f167f7dba5eb250d6dec4129ef5f6301b58a659321028625b73a5c30e8ed84993acd43a5ea7918ba9de8daa458cd5ba1394b708d771221026a1a918fbc2c6d5fb3aa96a683c6930e932f1484f06179aa0a146e66d4d4cb4053aee803000000000000695121037b6fd33a2620b650f9cdec14f668a3c1cacb17426cef177a8e3b013182ec5c362103b7438e0d6400898eb3fd02fa20c38b1d28d8f9dde99668af6bc3002a49e9116d21026a1a918fbc2c6d5fb3aa96a683c6930e932f1484f06179aa0a146e66d4d4cb4053aec36d22fc06000000160014d173175d97588c462c9f66604b39d4e4f49afab002000002000002000002000002000002000000000000", + "rawtransaction": "0200000000010630dcdc266cd86fabe3b8ab5e25df57e4c5cfa946e8186bf4bbea813ec4561fed00000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff5a6be5e1f5af695aefa60d94b1492c99bd42a437ed966f05a7a130520cfe6ba900000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff4bda285c4094cdfe2eab438e2a0934ed50bccade6f0dab8915efc41c963edce900000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffffb27fe2cf50f9acdc84d3f7cc4aa3a202dcafd338aaf49df482ac5c267eef006200000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff9c937712c574e688348ecc1802eb78f78aa7810f24143835f9bee6aac970ad0100000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff78871c3829dcefbc03fa10a30ff9b64a490e99a84d9170997a4946aa581606b500000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff04e803000000000000695121025bef3a5bcc2da7ee4be733d8c975743a4a8c856bc1c65327f9cda79dcf7d88192103178ba980fa6c935472863ee09b6f298a47eb1aac9dcc74f80bfc9876f1063fc92103affaa19ddc10bf87091cfd5b2bb70bbf61dbbe6e47c42d281a8eb11cd006464753aee803000000000000695121025bef3a5bcc2da7ee4be567de8a63707f1adcdc37c1935d65be98acd9c83f97a021020ddceaceaf7f940526d93bb58f7328881da706f0df9a74b650ff9b2df6526f232103affaa19ddc10bf87091cfd5b2bb70bbf61dbbe6e47c42d281a8eb11cd006464753aee8030000000000006951210371ef3a5bcc2da7ee4be767dfdd3b753720fbb47dc697546189fdcdecfc08f2dd21026eb8daf8ce1ef56142bf0883ec154ded249f62c7efaf4c846999a94e94640ece2103affaa19ddc10bf87091cfd5b2bb70bbf61dbbe6e47c42d281a8eb11cd006464753aec36d22fc06000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -9444,8 +9419,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: `9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address to detach the assets to + + utxo: `02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address to detach the assets to + asset: `XCP` (str, required) - The asset or subasset to detach + quantity: `1000` (int, required) - The quantity of the asset to detach (in satoshis, hence integer) + encoding (str, optional) - The encoding method to use @@ -9499,8 +9474,8 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", - "destination": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", + "destination": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9513,12 +9488,12 @@ Composes a transaction to detach assets from UTXO to an address. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964396162343733303664626437636262323563336637656239313062316363396434306131303136313630336162666365623166376339616365303336633238373a307c6263727431713639653377687668747a78797674796c766573796b777735756e3666343734737274636632337c5843507c31303030", + "data": "434e54525052545964303261383361623766643037353237666236636230626230643163613337643361373666613235303433643031393463663866323237623266353233636538393a307c6263727431713234616a3661377670306a7133757a793373783472663530393663777a64676374786b7263387c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, "btc_change": 4950030353, "btc_fee": 46647, - "rawtransaction": "020000000001031dcc49f47a7ff47acaaeae0040a10a382e65d6cd5b0541beb7bcaae2304bf75201000000160014d8738784ceb0bcf1708fd9c365706baff86fe9daffffffff646bccb479cf590cc4e036bef000b0be84b1470859ea9fa4cbde76577125c24300000000160014d8738784ceb0bcf1708fd9c365706baff86fe9daffffffffcfcd551e911150685480191dcf49c3def503f054d25a500e3bc308f875a272d901000000160014d8738784ceb0bcf1708fd9c365706baff86fe9daffffffff04e803000000000000695121027e1bbe0dfa426953325d01c5a12edf0d531302ef1ca34003ddff639c9f1f789b2103118621f99041904226793b95dd93394685ab12314fb2f84e4eb8b39e13ade283210389838601a2094d7754eab86e828612cb164a4237ebf9a8746314acbca1bafd2f53aee803000000000000695121027e1bbe0dfa426953325a01c5a07fd80d554654b54fae131dddae248b9d0879ed21024d812bbfc855c9553f3826d7998b6400d1ee5a6c08f6ac5946edb0c815ffa694210389838601a2094d7754eab86e828612cb164a4237ebf9a8746314acbca1bafd2f53aee80300000000000069512102541bbe0dfa426953324b4cc7a528db423b6636f149a41351bfcd56ffac794fa3210374e418c8a023a12145405fa1edf20876b49d23077f81992c28dbd6fc22cbd5c7210389838601a2094d7754eab86e828612cb164a4237ebf9a8746314acbca1bafd2f53ae11780b2701000000160014d8738784ceb0bcf1708fd9c365706baff86fe9da02000002000002000000000000", + "rawtransaction": "02000000000103c44e3a56a63826b2dbfd1a63be0925eece0ae9140c72e520728421038a5d14e801000000160014be349a1393f05baf3bf827e20714733ce47e0a21ffffffff8a76074adb09c2d37cc57169219c493040c2f343ba55a4fafd7b6af3bd13fe8800000000160014be349a1393f05baf3bf827e20714733ce47e0a21ffffffff19eb293896eb217d94e36694ad3157ab2bc9f28a8aae3c1f7e54292e2e0d926201000000160014be349a1393f05baf3bf827e20714733ce47e0a21ffffffff04e803000000000000695121027088824e7c0765c0fab07b28837d09a77417033261d987972d5b00b5fdad6a4821020d3a3764f657241581c71e8da2662a3d251b2c0a884daafd7402b6ddd13e966a210326c408f412d836117adec973b8f41ca15fa95a3652199afab7cbea30203e4c7e53aee803000000000000695121027088824e7c0765c0fae67c78d0230ff42543006e68d482d9785e10f7afbe682621025b396d36a603335686c95cdfe02a356f6456284cdd1caaf57b55a2c18d3fc752210326c408f412d836117adec973b8f41ca15fa95a3652199afab7cbea30203e4c7e53aee803000000000000695121035a88824e7c0765c0faa03371902602ba4e63352a60de82951a3d62839ecf5a0721036f580700c7344526b6a32dec95504c5c172e1c3ebb299acc4d36d5bbe958a47b210326c408f412d836117adec973b8f41ca15fa95a3652199afab7cbea30203e4c7e53ae11780b2701000000160014be349a1393f05baf3bf827e20714733ce47e0a2102000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -9573,8 +9548,8 @@ Returns the valid assets "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 10000000000, @@ -9582,16 +9557,16 @@ Returns the valid assets "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729416098, - "last_issuance_block_time": 1729416107, + "first_issuance_block_time": 1729419127, + "last_issuance_block_time": 1729419146, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", - "owner": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "issuer": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "owner": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "divisible": true, "locked": false, "supply": 100000000000, @@ -9599,16 +9574,16 @@ Returns the valid assets "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1729416094, - "last_issuance_block_time": 1729416094, + "first_issuance_block_time": 1729419123, + "last_issuance_block_time": 1729419123, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 100000000000, @@ -9616,16 +9591,16 @@ Returns the valid assets "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729416044, - "last_issuance_block_time": 1729416044, + "first_issuance_block_time": 1729419083, + "last_issuance_block_time": 1729419083, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 40, @@ -9633,16 +9608,16 @@ Returns the valid assets "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729415987, - "last_issuance_block_time": 1729415991, + "first_issuance_block_time": 1729419007, + "last_issuance_block_time": 1729419011, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 19, @@ -9650,8 +9625,8 @@ Returns the valid assets "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729415969, - "last_issuance_block_time": 1729415982, + "first_issuance_block_time": 1729418990, + "last_issuance_block_time": 1729419002, "supply_normalized": "0.00000019" } ], @@ -9679,8 +9654,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 10000000000, @@ -9688,8 +9663,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1729415930, - "last_issuance_block_time": 1729415943, + "first_issuance_block_time": 1729418953, + "last_issuance_block_time": 1729418965, "supply_normalized": "100.00000000" } } @@ -9720,7 +9695,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "address": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9728,14 +9703,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9743,7 +9718,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -9761,7 +9736,7 @@ Returns the balance of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address to return + + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -9772,7 +9747,7 @@ Returns the balance of an address and asset ``` { "result": { - "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -9823,9 +9798,9 @@ Returns the orders of an asset "result": [ { "tx_index": 49, - "tx_hash": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8", + "tx_hash": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b", "block_index": 184, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9840,7 +9815,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729416128, + "block_time": 1729419167, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9866,9 +9841,9 @@ Returns the orders of an asset }, { "tx_index": 51, - "tx_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", + "tx_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", "block_index": 188, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -9883,7 +9858,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729416201, + "block_time": 1729419239, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9909,9 +9884,9 @@ Returns the orders of an asset }, { "tx_index": 57, - "tx_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", + "tx_hash": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", "block_index": 192, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9926,7 +9901,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729416229, + "block_time": 1729419257, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9952,9 +9927,9 @@ Returns the orders of an asset }, { "tx_index": 59, - "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", + "tx_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", "block_index": 193, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9969,7 +9944,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729416233, + "block_time": 1729419272, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9995,9 +9970,9 @@ Returns the orders of an asset }, { "tx_index": 52, - "tx_hash": "34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", + "tx_hash": "a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", "block_index": 187, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -10012,7 +9987,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729416196, + "block_time": 1729419235, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10074,13 +10049,13 @@ Returns the orders of an asset { "result": [ { - "id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", + "id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", "tx0_index": 51, - "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", - "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "tx0_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", + "tx0_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "tx1_index": 54, - "tx1_hash": "e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", - "tx1_address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "tx1_hash": "f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", + "tx1_address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10094,7 +10069,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729416201, + "block_time": 1729419239, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10114,13 +10089,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", + "id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", "tx0_index": 51, - "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", - "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "tx0_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", + "tx0_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "tx1_index": 52, - "tx1_hash": "34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", - "tx1_address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "tx1_hash": "a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", + "tx1_address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10134,7 +10109,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729416196, + "block_time": 1729419235, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10154,13 +10129,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8_31f95069423c6c4ddfe0a4574c1a3369fb58dac7a6652ba054558eb83930ed0b", + "id": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b_97a614c1cd5ebc6475742cff5c39401b7d7a1c7b9432bf2f31b973c81a8ceeac", "tx0_index": 49, - "tx0_hash": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8", - "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "tx0_hash": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b", + "tx0_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "tx1_index": 50, - "tx1_hash": "31f95069423c6c4ddfe0a4574c1a3369fb58dac7a6652ba054558eb83930ed0b", - "tx1_address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "tx1_hash": "97a614c1cd5ebc6475742cff5c39401b7d7a1c7b9432bf2f31b973c81a8ceeac", + "tx1_address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10174,7 +10149,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729416128, + "block_time": 1729419167, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10254,20 +10229,20 @@ Returns the credits of an asset "result": [ { "block_index": 194, - "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "address": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", + "event": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729416237, + "block_time": 1729419276, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -10275,20 +10250,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "address": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "a1497078258ff9f4f88b012baeee38971b3a79972c437baf8dd53c9d4571eed2", + "event": "45c5ae041f18c2fc862a1c82ae645f4f0627dac8edf11736fa4d1533720381f7", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729415943, + "block_time": 1729418965, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -10296,20 +10271,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "6812bf6b8199c898a40d2bc0949e80556f9b275b19f73b96a09fd3f2f0c691f0", + "event": "fa630def9f37d80f4fb7036a427e5b2458137478095ee22a8bd99036659e19bf", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729415939, + "block_time": 1729418961, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -10317,20 +10292,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "be65810c28d4a6e23b5459a5aff489b71f797fee7c65043b9e917ebbc5897802", + "event": "9e241c300a1a56ab1d861331e00bfb7fad835c6be25cf243cd75edd3fe306672", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729415939, + "block_time": 1729418961, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -10342,16 +10317,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "6812bf6b8199c898a40d2bc0949e80556f9b275b19f73b96a09fd3f2f0c691f0", + "event": "fa630def9f37d80f4fb7036a427e5b2458137478095ee22a8bd99036659e19bf", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729415939, + "block_time": 1729418961, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -10411,12 +10386,12 @@ Returns the debits of an asset "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62, - "utxo": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", - "utxo_address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "utxo": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", + "utxo_address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "confirmed": true, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -10428,16 +10403,16 @@ Returns the debits of an asset }, { "block_index": 195, - "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "address": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "849f54d8426192c0270d4d240627ba157876e3601948aed0ac24e730dcab52d7", + "event": "857b0199761f230748e7583d48033e2dcc3de8fbea85b2ca971f83f5261bd29a", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729416242, + "block_time": 1729419281, "asset_info": { "divisible": true, "asset_longname": null, @@ -10449,16 +10424,16 @@ Returns the debits of an asset }, { "block_index": 194, - "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", + "event": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729416237, + "block_time": 1729419276, "asset_info": { "divisible": true, "asset_longname": null, @@ -10470,16 +10445,16 @@ Returns the debits of an asset }, { "block_index": 194, - "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", + "event": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729416237, + "block_time": 1729419276, "asset_info": { "divisible": true, "asset_longname": null, @@ -10491,16 +10466,16 @@ Returns the debits of an asset }, { "block_index": 193, - "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", + "event": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729416233, + "block_time": 1729419272, "asset_info": { "divisible": true, "asset_longname": null, @@ -10540,20 +10515,20 @@ Returns the dividends of an asset "result": [ { "tx_index": 41, - "tx_hash": "0c95334ce0b328f2ff4e1e44c4e96d503ba60b7b2b1fbabeabef5f3ac971b288", + "tx_hash": "5954cbb59b8f533b6dc597f67642fe125d0f54d58dd8bd6109079010bc39416b", "block_index": 154, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729416070, + "block_time": 1729419109, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -10597,14 +10572,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "a1497078258ff9f4f88b012baeee38971b3a79972c437baf8dd53c9d4571eed2", + "tx_hash": "45c5ae041f18c2fc862a1c82ae645f4f0627dac8edf11736fa4d1533720381f7", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "transfer": false, "callable": false, "call_date": 0, @@ -10619,20 +10594,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729415943, + "block_time": 1729418965, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "6812bf6b8199c898a40d2bc0949e80556f9b275b19f73b96a09fd3f2f0c691f0", + "tx_hash": "fa630def9f37d80f4fb7036a427e5b2458137478095ee22a8bd99036659e19bf", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "transfer": false, "callable": false, "call_date": 0, @@ -10647,20 +10622,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729415939, + "block_time": 1729418961, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "be65810c28d4a6e23b5459a5aff489b71f797fee7c65043b9e917ebbc5897802", + "tx_hash": "9e241c300a1a56ab1d861331e00bfb7fad835c6be25cf243cd75edd3fe306672", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "transfer": false, "callable": false, "call_date": 0, @@ -10675,20 +10650,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729415935, + "block_time": 1729418956, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "bb813d64db8f65171084ffa83e7128316586ef0283b09807d288d02a0b8e58da", + "tx_hash": "a6341ea44902feb982ab97a01f0a8313fc32d0304f32bc76b50b54252f14310c", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "transfer": false, "callable": false, "call_date": 0, @@ -10703,7 +10678,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729415930, + "block_time": 1729418953, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -10737,10 +10712,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 62, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "source": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", - "destination": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "source": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", + "destination": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10748,7 +10723,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -10761,10 +10736,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 56, - "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", + "tx_hash": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", "block_index": 190, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "asset": "XCP", "quantity": 10, "status": "valid", @@ -10772,7 +10747,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416220, + "block_time": 1729419248, "asset_info": { "divisible": true, "asset_longname": null, @@ -10785,10 +10760,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 55, - "tx_hash": "41940d57c4a9b1f5d0a22cb937643b5a48181fabeb27a4fe2ae5e3b102045d0f", + "tx_hash": "9e959e4d7992f9ebacdffa06990aeb2dc4ae9b61a3bce8e456f2a54430c2047a", "block_index": 189, - "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", - "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "source": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "destination": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -10796,7 +10771,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416215, + "block_time": 1729419244, "asset_info": { "divisible": true, "asset_longname": null, @@ -10809,10 +10784,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 44, - "tx_hash": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2", + "tx_hash": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80", "block_index": 157, - "source": "d972a275f808c33b0e505ad254f003f5dec349cf1d198054685011911e55cdcf:0", - "destination": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", + "source": "62920d2e2e29547e1f3cae8a8af2c92bab5731ad9466e3947d21eb963829eb19:0", + "destination": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10820,7 +10795,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416094, + "block_time": 1729419123, "asset_info": { "divisible": true, "asset_longname": null, @@ -10833,10 +10808,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 43, - "tx_hash": "d972a275f808c33b0e505ad254f003f5dec349cf1d198054685011911e55cdcf", + "tx_hash": "62920d2e2e29547e1f3cae8a8af2c92bab5731ad9466e3947d21eb963829eb19", "block_index": 156, - "source": "cebea8c09925ead707b16a98370c550b4a41a22723ed309d31de931fe4f62b71:0", - "destination": "d972a275f808c33b0e505ad254f003f5dec349cf1d198054685011911e55cdcf:0", + "source": "9c0d167b260df60d016e565fc425dfef009e84963c7a94841da4fd69dd1b28ad:0", + "destination": "62920d2e2e29547e1f3cae8a8af2c92bab5731ad9466e3947d21eb963829eb19:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10844,7 +10819,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416089, + "block_time": 1729419118, "asset_info": { "divisible": true, "asset_longname": null, @@ -10895,9 +10870,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -10906,7 +10881,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10916,7 +10891,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729416013, + "block_time": 1729419032, "asset_info": { "divisible": true, "asset_longname": null, @@ -10932,9 +10907,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "7f6a4ca9e3d855d805ca980cee733de3d16f239f2c2e40241d4a607e55a74b86", + "tx_hash": "0c3886c49a507aedd17fd9f356a72b16d9353097e6c76fdd57bb6e87e969db10", "block_index": 142, - "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -10943,7 +10918,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "origin": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10953,7 +10928,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729416017, + "block_time": 1729419037, "asset_info": { "divisible": true, "asset_longname": null, @@ -10969,9 +10944,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "8463aade5566a0f1e8c8f67bc3a36514814d844fa9a8925b244600e282392b52", + "tx_hash": "03163da185ecd4f58783c6feb8cdf29574011d5410f7983f983644aaaec1d685", "block_index": 150, - "source": "mxn9viJTMZ952ierCiR5GaQwzaXBTAAdFh", + "source": "mgm25pVEpj1Ey3H9pdvQUT6kCysXns3ZpB", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -10979,10 +10954,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "3418f6969c77f8bec6ebfbddccf5f09827ad4f0155e0eda4417c4647d168a18f", - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "last_status_tx_hash": "a3c2dead7d58200fd37472fd2f94ec1d701f506e1d89f0b07418841bd75ee124", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 0, - "last_status_tx_source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "last_status_tx_source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -10990,7 +10965,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729416053, + "block_time": 1729419091, "asset_info": { "divisible": true, "asset_longname": null, @@ -11006,18 +10981,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", + "tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", "block_index": 196, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "oracle_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "last_status_tx_hash": null, - "origin": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "origin": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11027,7 +11002,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -11052,7 +11027,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - The address to return + + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (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` @@ -11065,9 +11040,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11076,7 +11051,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11086,7 +11061,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729416013, + "block_time": 1729419032, "asset_info": { "divisible": true, "asset_longname": null, @@ -11136,7 +11111,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -11144,7 +11119,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -11153,7 +11128,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -11161,7 +11136,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -11170,7 +11145,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -11178,7 +11153,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "address": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -11187,7 +11162,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -11224,27 +11199,27 @@ Returns the dispenses of an asset { "tx_index": 62, "dispense_index": 0, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", - "destination": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "destination": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", + "dispenser_tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "oracle_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "last_status_tx_hash": null, - "origin": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "origin": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11259,7 +11234,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -11273,27 +11248,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "43c225715776decba49fea590847b184beb000f0be36e0c40c59cf79b4cc6b64", + "tx_hash": "88fe13bdf36a7bfdfaa455ba43f3c24030499c216971c57cd3c209db4a07768a", "block_index": 147, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", - "destination": "bcrt1qpm0krm9adpcqdeu2tmuzwdl325fr9768g564cg", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "destination": "bcrt1qpt0kqhne88xpxhdekucjewsutuh8v0srmad5le", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", + "dispenser_tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "oracle_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "last_status_tx_hash": null, - "origin": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "origin": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11308,7 +11283,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729416039, + "block_time": 1729419079, "asset_info": { "divisible": true, "asset_longname": null, @@ -11322,19 +11297,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "77f26b77b205be83c57e46f437168ffa54afdd0f8fe2855da90317153ec41ae4", + "tx_hash": "c6ac5bd9f3a4f413beac1ab01476860538e1080fc55842bd6eb360ede5b96b03", "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11342,7 +11317,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11357,7 +11332,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729416013, + "block_time": 1729419032, "asset_info": { "divisible": true, "asset_longname": null, @@ -11371,19 +11346,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ea65dde6c36bf0ee93197974ace92a2b2a68a0821b6f382104f98419c6ffe544", + "tx_hash": "5b8b6d8f67be9da23119f8bb3166e1a15862ffe4ad592bfe7e4c4517034b809f", "block_index": 140, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11391,7 +11366,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11406,7 +11381,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729416009, + "block_time": 1729419028, "asset_info": { "divisible": true, "asset_longname": null, @@ -11449,8 +11424,8 @@ Returns asset subassets "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 0, @@ -11458,8 +11433,8 @@ Returns asset subassets "first_issuance_block_index": 159, "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1729416103, - "last_issuance_block_time": 1729416103, + "first_issuance_block_time": 1729419131, + "last_issuance_block_time": 1729419131, "supply_normalized": "0.00000000" } ], @@ -11491,10 +11466,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "bb813d64db8f65171084ffa83e7128316586ef0283b09807d288d02a0b8e58da", + "tx_hash": "a6341ea44902feb982ab97a01f0a8313fc32d0304f32bc76b50b54252f14310c", "tx_index": 10, "block_index": 125, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -11519,7 +11494,7 @@ Returns the fairminter by its asset "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729415943 + "block_time": 1729418965 } ], "next_cursor": null, @@ -11550,64 +11525,64 @@ Returns the mints by asset { "result": [ { - "tx_hash": "a1497078258ff9f4f88b012baeee38971b3a79972c437baf8dd53c9d4571eed2", + "tx_hash": "45c5ae041f18c2fc862a1c82ae645f4f0627dac8edf11736fa4d1533720381f7", "tx_index": 13, "block_index": 125, - "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", - "fairminter_tx_hash": "bb813d64db8f65171084ffa83e7128316586ef0283b09807d288d02a0b8e58da", + "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "fairminter_tx_hash": "a6341ea44902feb982ab97a01f0a8313fc32d0304f32bc76b50b54252f14310c", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729415943, + "block_time": 1729418965, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false } }, { - "tx_hash": "6812bf6b8199c898a40d2bc0949e80556f9b275b19f73b96a09fd3f2f0c691f0", + "tx_hash": "fa630def9f37d80f4fb7036a427e5b2458137478095ee22a8bd99036659e19bf", "tx_index": 12, "block_index": 124, - "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", - "fairminter_tx_hash": "bb813d64db8f65171084ffa83e7128316586ef0283b09807d288d02a0b8e58da", + "source": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "fairminter_tx_hash": "a6341ea44902feb982ab97a01f0a8313fc32d0304f32bc76b50b54252f14310c", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729415939, + "block_time": 1729418961, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false } }, { - "tx_hash": "be65810c28d4a6e23b5459a5aff489b71f797fee7c65043b9e917ebbc5897802", + "tx_hash": "9e241c300a1a56ab1d861331e00bfb7fad835c6be25cf243cd75edd3fe306672", "tx_index": 11, "block_index": 123, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", - "fairminter_tx_hash": "bb813d64db8f65171084ffa83e7128316586ef0283b09807d288d02a0b8e58da", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "fairminter_tx_hash": "a6341ea44902feb982ab97a01f0a8313fc32d0304f32bc76b50b54252f14310c", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729415935, + "block_time": 1729418956, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false } @@ -11623,7 +11598,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22` (str, required) - The address of the mints to return + + address: `bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw` (str, required) - The address of the mints to return + asset: `FAIRMINTA` (str, required) - The asset of the mints to return + cursor (str, optional) - + Default: `None` @@ -11642,22 +11617,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "be65810c28d4a6e23b5459a5aff489b71f797fee7c65043b9e917ebbc5897802", + "tx_hash": "9e241c300a1a56ab1d861331e00bfb7fad835c6be25cf243cd75edd3fe306672", "tx_index": 11, "block_index": 123, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", - "fairminter_tx_hash": "bb813d64db8f65171084ffa83e7128316586ef0283b09807d288d02a0b8e58da", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "fairminter_tx_hash": "a6341ea44902feb982ab97a01f0a8313fc32d0304f32bc76b50b54252f14310c", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729415935, + "block_time": 1729418956, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false } @@ -11703,9 +11678,9 @@ Returns all the orders "result": [ { "tx_index": 49, - "tx_hash": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8", + "tx_hash": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b", "block_index": 184, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11720,7 +11695,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729416128, + "block_time": 1729419167, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11746,9 +11721,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", + "tx_hash": "a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", "block_index": 187, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -11763,7 +11738,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729416196, + "block_time": 1729419235, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11789,9 +11764,9 @@ Returns all the orders }, { "tx_index": 51, - "tx_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", + "tx_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", "block_index": 188, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -11806,7 +11781,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729416201, + "block_time": 1729419239, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11832,9 +11807,9 @@ Returns all the orders }, { "tx_index": 54, - "tx_hash": "e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", + "tx_hash": "f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", "block_index": 188, - "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "source": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -11849,7 +11824,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729416201, + "block_time": 1729419239, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11875,9 +11850,9 @@ Returns all the orders }, { "tx_index": 57, - "tx_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", + "tx_hash": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", "block_index": 192, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11892,7 +11867,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729416229, + "block_time": 1729419257, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11927,7 +11902,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687` (str, required) - The hash of the transaction that created the order + + order_hash: `6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da` (str, required) - The hash of the transaction that created the order + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -11939,9 +11914,9 @@ Returns the information of an order { "result": { "tx_index": 59, - "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", + "tx_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", "block_index": 193, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11956,7 +11931,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729416233, + "block_time": 1729419272, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11988,7 +11963,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39` (str, required) - The hash of the transaction that created the order + + order_hash: `b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983` (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 @@ -12015,13 +11990,13 @@ Returns the order matches of an order { "result": [ { - "id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", + "id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", "tx0_index": 51, - "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", - "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "tx0_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", + "tx0_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "tx1_index": 54, - "tx1_hash": "e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", - "tx1_address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "tx1_hash": "f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", + "tx1_address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12035,7 +12010,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729416201, + "block_time": 1729419239, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12055,13 +12030,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", + "id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", "tx0_index": 51, - "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", - "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "tx0_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", + "tx0_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "tx1_index": 52, - "tx1_hash": "34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", - "tx1_address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "tx1_hash": "a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", + "tx1_address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12075,7 +12050,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729416196, + "block_time": 1729419235, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12105,7 +12080,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39` (str, required) - The hash of the transaction that created the order + + order_hash: `b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983` (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 @@ -12124,15 +12099,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 53, - "tx_hash": "e6ca911a0b08aa83675667b9ca8e02c32aeb2da53061aba62dde2da5b66b8fe8", + "tx_hash": "093e49f3c5553048e93710a95ae3f813e9e9ed5288b166ef5352fa88f6ee9d32", "block_index": 187, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", - "destination": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "destination": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "btc_amount": 2000, - "order_match_id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", + "order_match_id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", "status": "valid", "confirmed": true, - "block_time": 1729416196, + "block_time": 1729419235, "btc_amount_normalized": "0.00002000" } ], @@ -12176,9 +12151,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 52, - "tx_hash": "34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", + "tx_hash": "a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", "block_index": 187, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12196,7 +12171,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729416196, + "block_time": 1729419235, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12222,9 +12197,9 @@ Returns the orders to exchange two assets }, { "tx_index": 54, - "tx_hash": "e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", + "tx_hash": "f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", "block_index": 188, - "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "source": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -12242,7 +12217,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729416201, + "block_time": 1729419239, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12268,9 +12243,9 @@ Returns the orders to exchange two assets }, { "tx_index": 49, - "tx_hash": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8", + "tx_hash": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b", "block_index": 184, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12288,7 +12263,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729416128, + "block_time": 1729419167, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12314,9 +12289,9 @@ Returns the orders to exchange two assets }, { "tx_index": 51, - "tx_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", + "tx_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", "block_index": 188, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12334,7 +12309,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729416201, + "block_time": 1729419239, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12360,9 +12335,9 @@ Returns the orders to exchange two assets }, { "tx_index": 57, - "tx_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", + "tx_hash": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", "block_index": 192, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12380,7 +12355,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729416229, + "block_time": 1729419257, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12443,13 +12418,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", + "id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", "tx0_index": 51, - "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", - "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "tx0_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", + "tx0_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "tx1_index": 54, - "tx1_hash": "e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", - "tx1_address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "tx1_hash": "f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", + "tx1_address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12466,7 +12441,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729416201, + "block_time": 1729419239, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12486,13 +12461,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", + "id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", "tx0_index": 51, - "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", - "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "tx0_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", + "tx0_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "tx1_index": 52, - "tx1_hash": "34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", - "tx1_address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "tx1_hash": "a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", + "tx1_address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12509,7 +12484,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729416196, + "block_time": 1729419235, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12529,13 +12504,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8_31f95069423c6c4ddfe0a4574c1a3369fb58dac7a6652ba054558eb83930ed0b", + "id": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b_97a614c1cd5ebc6475742cff5c39401b7d7a1c7b9432bf2f31b973c81a8ceeac", "tx0_index": 49, - "tx0_hash": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8", - "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "tx0_hash": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b", + "tx0_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "tx1_index": 50, - "tx1_hash": "31f95069423c6c4ddfe0a4574c1a3369fb58dac7a6652ba054558eb83930ed0b", - "tx1_address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "tx1_hash": "97a614c1cd5ebc6475742cff5c39401b7d7a1c7b9432bf2f31b973c81a8ceeac", + "tx1_address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12552,7 +12527,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729416128, + "block_time": 1729419167, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12610,13 +12585,13 @@ Returns all the order matches { "result": [ { - "id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", + "id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", "tx0_index": 51, - "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", - "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "tx0_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", + "tx0_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "tx1_index": 54, - "tx1_hash": "e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", - "tx1_address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "tx1_hash": "f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", + "tx1_address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12630,7 +12605,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729416201, + "block_time": 1729419239, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12650,13 +12625,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", + "id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", "tx0_index": 51, - "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", - "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "tx0_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", + "tx0_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "tx1_index": 52, - "tx1_hash": "34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", - "tx1_address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "tx1_hash": "a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", + "tx1_address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12670,7 +12645,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729416196, + "block_time": 1729419235, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12690,13 +12665,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8_31f95069423c6c4ddfe0a4574c1a3369fb58dac7a6652ba054558eb83930ed0b", + "id": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b_97a614c1cd5ebc6475742cff5c39401b7d7a1c7b9432bf2f31b973c81a8ceeac", "tx0_index": 49, - "tx0_hash": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8", - "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "tx0_hash": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b", + "tx0_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "tx1_index": 50, - "tx1_hash": "31f95069423c6c4ddfe0a4574c1a3369fb58dac7a6652ba054558eb83930ed0b", - "tx1_address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "tx1_hash": "97a614c1cd5ebc6475742cff5c39401b7d7a1c7b9432bf2f31b973c81a8ceeac", + "tx1_address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12710,7 +12685,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729416128, + "block_time": 1729419167, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12878,66 +12853,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "3c708852d4951ec7994feec5ab282528777c9dbf169290986261472cf1fb27fa", + "tx_hash": "aeb9c55ef28fc0085850c3f2ab1825dcc5c218dd40c691ca08b32a7f0413ef81", "block_index": 121, - "source": "bcrt1qwhyc990hruyqf3e7r3ee9xx3g558uugekpa3kw", + "source": "bcrt1qwel02ewd5s0334xz3z95wd9t2ycslyadsevzhv", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1729415925, + "block_time": 1729418948, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "9b0a770f7159fc7dd964563092a25836bcf871dd9133d1c83559069b2ac65b52", + "tx_hash": "ffeaf1b43f7569fa148705559404ea437e0b212a8024f587ec394ccaaf938315", "block_index": 120, - "source": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "source": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1729415921, + "block_time": 1729418944, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "5b40993b2bcb6a081fa6fd35f641469b274a7e873d881ccd8ee10fa6f7a19caf", + "tx_hash": "1f62d539da180fa0ed76247c29ab849571c519f9748bf0292ea54f051dc0bda9", "block_index": 119, - "source": "bcrt1qsadvwd5q5legncwy7gd0e8nzcar0xtmpjd6smx", + "source": "bcrt1qvvmxpag7eapq07zz0rua2xxaf3ph7mac4j3sql", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1729415916, + "block_time": 1729418939, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "1e5e7ad77496deeac81c1ff22674d9a02d8723b7ebb91ce1a0e4c866a85fcfbd", + "tx_hash": "dcedbaa79e315ea1c900f0458b3685e41de188628a8548e91b811c840a594afc", "block_index": 118, - "source": "bcrt1qpm0krm9adpcqdeu2tmuzwdl325fr9768g564cg", + "source": "bcrt1qpt0kqhne88xpxhdekucjewsutuh8v0srmad5le", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1729415912, + "block_time": 1729418935, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "ec570fcd1f8c5b9495121143779d9c60083708d5ab38cd85ce3c06da15639e9b", + "tx_hash": "4017707d2086d5a37548fb576553c50b86d9358b3d0d76a82700bc6cf841633b", "block_index": 117, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1729415908, + "block_time": 1729418931, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -12982,9 +12957,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12993,7 +12968,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13003,7 +12978,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729416013, + "block_time": 1729419032, "asset_info": { "divisible": true, "asset_longname": null, @@ -13019,9 +12994,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "7f6a4ca9e3d855d805ca980cee733de3d16f239f2c2e40241d4a607e55a74b86", + "tx_hash": "0c3886c49a507aedd17fd9f356a72b16d9353097e6c76fdd57bb6e87e969db10", "block_index": 142, - "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13030,7 +13005,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "origin": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13040,7 +13015,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729416017, + "block_time": 1729419037, "asset_info": { "divisible": true, "asset_longname": null, @@ -13056,9 +13031,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "8463aade5566a0f1e8c8f67bc3a36514814d844fa9a8925b244600e282392b52", + "tx_hash": "03163da185ecd4f58783c6feb8cdf29574011d5410f7983f983644aaaec1d685", "block_index": 150, - "source": "mxn9viJTMZ952ierCiR5GaQwzaXBTAAdFh", + "source": "mgm25pVEpj1Ey3H9pdvQUT6kCysXns3ZpB", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -13066,10 +13041,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "3418f6969c77f8bec6ebfbddccf5f09827ad4f0155e0eda4417c4647d168a18f", - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "last_status_tx_hash": "a3c2dead7d58200fd37472fd2f94ec1d701f506e1d89f0b07418841bd75ee124", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 0, - "last_status_tx_source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "last_status_tx_source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -13077,7 +13052,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729416053, + "block_time": 1729419091, "asset_info": { "divisible": true, "asset_longname": null, @@ -13093,18 +13068,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", + "tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", "block_index": 196, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "oracle_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "last_status_tx_hash": null, - "origin": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "origin": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13114,7 +13089,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -13139,7 +13114,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630` (str, required) - The hash of the dispenser to return + + dispenser_hash: `d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b` (str, required) - The hash of the dispenser to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -13151,9 +13126,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13162,7 +13137,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13172,7 +13147,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729416013, + "block_time": 1729419032, "asset_info": { "divisible": true, "asset_longname": null, @@ -13194,7 +13169,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630` (str, required) - The hash of the dispenser to return + + dispenser_hash: `d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b` (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 @@ -13214,19 +13189,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "77f26b77b205be83c57e46f437168ffa54afdd0f8fe2855da90317153ec41ae4", + "tx_hash": "c6ac5bd9f3a4f413beac1ab01476860538e1080fc55842bd6eb360ede5b96b03", "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13234,7 +13209,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13249,7 +13224,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729416013, + "block_time": 1729419032, "asset_info": { "divisible": true, "asset_longname": null, @@ -13263,19 +13238,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ea65dde6c36bf0ee93197974ace92a2b2a68a0821b6f382104f98419c6ffe544", + "tx_hash": "5b8b6d8f67be9da23119f8bb3166e1a15862ffe4ad592bfe7e4c4517034b809f", "block_index": 140, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13283,7 +13258,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13298,7 +13273,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729416009, + "block_time": 1729419028, "asset_info": { "divisible": true, "asset_longname": null, @@ -13340,20 +13315,20 @@ Returns all the dividends "result": [ { "tx_index": 41, - "tx_hash": "0c95334ce0b328f2ff4e1e44c4e96d503ba60b7b2b1fbabeabef5f3ac971b288", + "tx_hash": "5954cbb59b8f533b6dc597f67642fe125d0f54d58dd8bd6109079010bc39416b", "block_index": 154, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729416070, + "block_time": 1729419109, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -13378,7 +13353,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `0c95334ce0b328f2ff4e1e44c4e96d503ba60b7b2b1fbabeabef5f3ac971b288` (str, required) - The hash of the dividend to return + + dividend_hash: `5954cbb59b8f533b6dc597f67642fe125d0f54d58dd8bd6109079010bc39416b` (str, required) - The hash of the dividend to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -13390,20 +13365,20 @@ Returns a dividend by its hash { "result": { "tx_index": 41, - "tx_hash": "0c95334ce0b328f2ff4e1e44c4e96d503ba60b7b2b1fbabeabef5f3ac971b288", + "tx_hash": "5954cbb59b8f533b6dc597f67642fe125d0f54d58dd8bd6109079010bc39416b", "block_index": 154, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729416070, + "block_time": 1729419109, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -13425,7 +13400,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `0c95334ce0b328f2ff4e1e44c4e96d503ba60b7b2b1fbabeabef5f3ac971b288` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `5954cbb59b8f533b6dc597f67642fe125d0f54d58dd8bd6109079010bc39416b` (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 @@ -13448,12 +13423,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "0c95334ce0b328f2ff4e1e44c4e96d503ba60b7b2b1fbabeabef5f3ac971b288", + "event": "5954cbb59b8f533b6dc597f67642fe125d0f54d58dd8bd6109079010bc39416b", "tx_index": 41, - "utxo": "cebea8c09925ead707b16a98370c550b4a41a22723ed309d31de931fe4f62b71:0", - "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "utxo": "9c0d167b260df60d016e565fc425dfef009e84963c7a94841da4fd69dd1b28ad:0", + "utxo_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "confirmed": true, - "block_time": 1729416070, + "block_time": 1729419109, "asset_info": { "divisible": true, "asset_longname": null, @@ -13465,16 +13440,16 @@ Returns a dividend distribution by its hash }, { "block_index": 154, - "address": "bcrt1qkgcujj6uea6hshreznk6fw8e22utgsdyqd02hg", + "address": "bcrt1qg6cl5djlpjf8ne6z88eh7rpjt2c9ttupg48l6x", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "0c95334ce0b328f2ff4e1e44c4e96d503ba60b7b2b1fbabeabef5f3ac971b288", + "event": "5954cbb59b8f533b6dc597f67642fe125d0f54d58dd8bd6109079010bc39416b", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729416070, + "block_time": 1729419109, "asset_info": { "divisible": true, "asset_longname": null, @@ -13520,27 +13495,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "f94b9a0cde6ac7ff4c57657df4d33d9a8f1dae9ef5de975f5df1dcc5cc851ece", - "messages_hash": "90707f8a533719986dc3f0949bda3f2eb1e3b12b4d1113e9caccbd9b4d5efb63", + "ledger_hash": "eead9d1cf4256ee6a5064148d170bd143227743df35f8eaf771be669fbacdefc", + "messages_hash": "ed329d64324602888971f8c2cfcdb14ded0ce770d8b6530880d3cdb734881033", "transaction_count": 1, - "txlist_hash": "41aa08840203abe0c1883ea81febef8fdb9238af22a71a5495b39bfc7c1db71b", - "block_time": 1729416251 + "txlist_hash": "4168e789766cc3d4a561e1a4d9324b0838ffcd186cbb040b504e385bbfab51dc", + "block_time": 1729419295 }, "tx_hash": null, "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 }, { "event_index": 562, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62 }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 }, { "event_index": 561, @@ -13549,14 +13524,14 @@ Returns all events "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "destination": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "dispenser_tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -13567,9 +13542,9 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 }, { "event_index": 560, @@ -13578,9 +13553,9 @@ Returns all events "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "status": 0, - "tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", + "tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", "asset_info": { "divisible": true, "asset_longname": null, @@ -13590,24 +13565,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -13617,9 +13592,9 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 } ], "next_cursor": 558, @@ -13647,15 +13622,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "f94b9a0cde6ac7ff4c57657df4d33d9a8f1dae9ef5de975f5df1dcc5cc851ece", - "messages_hash": "90707f8a533719986dc3f0949bda3f2eb1e3b12b4d1113e9caccbd9b4d5efb63", + "ledger_hash": "eead9d1cf4256ee6a5064148d170bd143227743df35f8eaf771be669fbacdefc", + "messages_hash": "ed329d64324602888971f8c2cfcdb14ded0ce770d8b6530880d3cdb734881033", "transaction_count": 1, - "txlist_hash": "41aa08840203abe0c1883ea81febef8fdb9238af22a71a5495b39bfc7c1db71b", - "block_time": 1729416251 + "txlist_hash": "4168e789766cc3d4a561e1a4d9324b0838ffcd186cbb040b504e385bbfab51dc", + "block_time": 1729419295 }, "tx_hash": null, "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 } } ``` @@ -13733,16 +13708,16 @@ Returns the events filtered by event name "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -13752,9 +13727,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 }, { "event_index": 557, @@ -13764,12 +13739,12 @@ Returns the events filtered by event name "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "quantity": 1500000000, "tx_index": 62, - "utxo": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", - "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", - "block_time": 1729416251, + "utxo": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", + "utxo_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -13779,9 +13754,9 @@ Returns the events filtered by event name }, "quantity_normalized": "15.00000000" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 }, { "event_index": 554, @@ -13791,39 +13766,39 @@ Returns the events filtered by event name "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "quantity": 1500000000, "tx_index": 62, - "utxo": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", - "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", - "block_time": 1729416251, + "utxo": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", + "utxo_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "block_time": 1729419295, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 }, { "event_index": 540, "event": "CREDIT", "params": { - "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "address": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "asset": "XCP", "block_index": 194, "calling_function": "sweep", - "event": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", + "event": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b", "quantity": 74499387833, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1729416237, + "block_time": 1729419276, "asset_info": { "divisible": true, "asset_longname": null, @@ -13833,36 +13808,36 @@ Returns the events filtered by event name }, "quantity_normalized": "744.99388000" }, - "tx_hash": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", + "tx_hash": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b", "block_index": 194, - "block_time": 1729416237 + "block_time": 1729419276 }, { "event_index": 538, "event": "CREDIT", "params": { - "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "address": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "asset": "MYASSETA", "block_index": 194, "calling_function": "sweep", - "event": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", + "event": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b", "quantity": 10, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1729416237, + "block_time": 1729419276, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", + "tx_hash": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b", "block_index": 194, - "block_time": 1729416237 + "block_time": 1729419276 } ], "next_cursor": 536, @@ -13918,27 +13893,27 @@ Returns all the dispenses { "tx_index": 62, "dispense_index": 0, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", - "destination": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "destination": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", + "dispenser_tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "oracle_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "last_status_tx_hash": null, - "origin": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "origin": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13953,7 +13928,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -13967,27 +13942,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "43c225715776decba49fea590847b184beb000f0be36e0c40c59cf79b4cc6b64", + "tx_hash": "88fe13bdf36a7bfdfaa455ba43f3c24030499c216971c57cd3c209db4a07768a", "block_index": 147, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", - "destination": "bcrt1qpm0krm9adpcqdeu2tmuzwdl325fr9768g564cg", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "destination": "bcrt1qpt0kqhne88xpxhdekucjewsutuh8v0srmad5le", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", + "dispenser_tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "oracle_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "last_status_tx_hash": null, - "origin": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "origin": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14002,7 +13977,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729416039, + "block_time": 1729419079, "asset_info": { "divisible": true, "asset_longname": null, @@ -14016,19 +13991,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "77f26b77b205be83c57e46f437168ffa54afdd0f8fe2855da90317153ec41ae4", + "tx_hash": "c6ac5bd9f3a4f413beac1ab01476860538e1080fc55842bd6eb360ede5b96b03", "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14036,7 +14011,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14051,7 +14026,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729416013, + "block_time": 1729419032, "asset_info": { "divisible": true, "asset_longname": null, @@ -14065,19 +14040,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ea65dde6c36bf0ee93197974ace92a2b2a68a0821b6f382104f98419c6ffe544", + "tx_hash": "5b8b6d8f67be9da23119f8bb3166e1a15862ffe4ad592bfe7e4c4517034b809f", "block_index": 140, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14085,7 +14060,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14100,7 +14075,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729416009, + "block_time": 1729419028, "asset_info": { "divisible": true, "asset_longname": null, @@ -14142,10 +14117,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 62, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "source": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", - "destination": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "source": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", + "destination": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -14153,7 +14128,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -14166,10 +14141,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 62, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "source": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", - "destination": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "source": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", + "destination": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -14177,11 +14152,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -14190,10 +14165,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 56, - "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", + "tx_hash": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", "block_index": 190, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "asset": "XCP", "quantity": 10, "status": "valid", @@ -14201,7 +14176,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416220, + "block_time": 1729419248, "asset_info": { "divisible": true, "asset_longname": null, @@ -14214,10 +14189,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 56, - "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", + "tx_hash": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", "block_index": 190, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -14225,11 +14200,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416220, + "block_time": 1729419248, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -14238,10 +14213,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 56, - "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", + "tx_hash": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", "block_index": 190, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -14249,11 +14224,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416220, + "block_time": 1729419248, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -14291,14 +14266,14 @@ Returns all the issuances "result": [ { "tx_index": 48, - "tx_hash": "bb2aa89179834fafe03acecbbade4d6fd928251f2923a59b4656957ab3685976", + "tx_hash": "e3935cf288cec52794daa26e2783ae06125ca6965f257e7d9ff3585239657033", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "transfer": false, "callable": false, "call_date": 0, @@ -14313,20 +14288,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729416112, + "block_time": 1729419150, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "55efb0e7632d7d4e2918c6d68f1a68cf6ebb205b5bf25194db11afe19f288dc0", + "tx_hash": "99d745d7b6cab56067254aafd0c9aedb86c8122f7764c92e39088c6643178415", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "transfer": false, "callable": false, "call_date": 0, @@ -14341,20 +14316,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729416107, + "block_time": 1729419146, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "915196486b240c228f8f48b8bc894be2372a5f29da06926a1aad6050d298f626", + "tx_hash": "29e7696904677d53d03bc85c345fb128b588bf78d9bc197424431a64bb383969", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "transfer": false, "callable": false, "call_date": 0, @@ -14369,20 +14344,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729416103, + "block_time": 1729419131, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "d875bf5554d034912c2a9eb7d151d9f055e3135142c077fa342ce253d4b54d3e", + "tx_hash": "82690f74f70a78c1049e4a8fb569f81e1cd0cbf656d4f1c9b006ac977558a1b7", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "transfer": false, "callable": false, "call_date": 0, @@ -14397,20 +14372,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729416098, + "block_time": 1729419127, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 44, - "tx_hash": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2", + "tx_hash": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80", "msg_index": 0, "block_index": 157, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", - "issuer": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "source": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "issuer": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "transfer": false, "callable": false, "call_date": 0, @@ -14425,7 +14400,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729416094, + "block_time": 1729419123, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -14440,7 +14415,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `bb2aa89179834fafe03acecbbade4d6fd928251f2923a59b4656957ab3685976` (str, required) - The hash of the transaction to return + + tx_hash: `e3935cf288cec52794daa26e2783ae06125ca6965f257e7d9ff3585239657033` (str, required) - The hash of the transaction to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -14452,14 +14427,14 @@ Returns the issuances of a block { "result": { "tx_index": 48, - "tx_hash": "bb2aa89179834fafe03acecbbade4d6fd928251f2923a59b4656957ab3685976", + "tx_hash": "e3935cf288cec52794daa26e2783ae06125ca6965f257e7d9ff3585239657033", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "transfer": false, "callable": false, "call_date": 0, @@ -14474,7 +14449,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729416112, + "block_time": 1729419150, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -14506,16 +14481,16 @@ Returns all sweeps "result": [ { "tx_index": 60, - "tx_hash": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", + "tx_hash": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b", "block_index": 194, - "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", - "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "source": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "destination": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729416237, + "block_time": 1729419276, "fee_paid_normalized": "0.00600000" } ], @@ -14529,7 +14504,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024` (str, required) - The hash of the transaction to return + + tx_hash: `291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b` (str, required) - The hash of the transaction to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -14542,16 +14517,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 60, - "tx_hash": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", + "tx_hash": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b", "block_index": 194, - "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", - "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "source": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "destination": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729416237, + "block_time": 1729419276, "fee_paid_normalized": "0.00600000" } ], @@ -14585,9 +14560,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "1945e07d63301090025795858c49fef361dfc2d9851d9e074cc4215d9d91255f", + "tx_hash": "fcd3ac244dcdca9116bd6de331c88e6b7fc07a65cbc5f45a7f4f2731ad085430", "block_index": 138, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14595,14 +14570,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729416000, + "block_time": 1729419020, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "674a65a64a4826a0b0d490aca3e07b7fd65869b1649206fa97265a826ed95b11", + "tx_hash": "d0aca4399eb6a0726cf88725563432f6ab5e40ed7b526c9a96ce23e4881a0b1e", "block_index": 137, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -14610,7 +14585,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729415995, + "block_time": 1729419015, "fee_fraction_int_normalized": "0.00000000" } ], @@ -14624,7 +14599,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `1945e07d63301090025795858c49fef361dfc2d9851d9e074cc4215d9d91255f` (str, required) - The hash of the transaction to return + + tx_hash: `fcd3ac244dcdca9116bd6de331c88e6b7fc07a65cbc5f45a7f4f2731ad085430` (str, required) - The hash of the transaction to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -14636,9 +14611,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "1945e07d63301090025795858c49fef361dfc2d9851d9e074cc4215d9d91255f", + "tx_hash": "fcd3ac244dcdca9116bd6de331c88e6b7fc07a65cbc5f45a7f4f2731ad085430", "block_index": 138, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14646,7 +14621,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729416000, + "block_time": 1729419020, "fee_fraction_int_normalized": "0.00000000" } } @@ -14676,10 +14651,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "68455c81e91976b50973996dd5e3b1bafeb9009b2ca1a238e4a1897afbef2d46", + "tx_hash": "c8665b67e71ee218d3415890729798887bbc54fb90e4c5e9cfeb24ce802a5b34", "tx_index": 42, "block_index": 155, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -14704,13 +14679,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729416085 + "block_time": 1729419113 }, { - "tx_hash": "251c310af851cba2ce4a58932e7cb803aeb6a9f7a55bac9bbf688ba85a48ef28", + "tx_hash": "f38ae5c8abb6b49f9591e5eaae9ea1d072612f70aaa73853f25ba05480b5076c", "tx_index": 22, "block_index": 135, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -14735,13 +14710,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729415987 + "block_time": 1729419007 }, { - "tx_hash": "dbd38cf37e8f0c24ae54d5b6169437c48f55fb84fc0583aa0d79858c0f9a69fc", + "tx_hash": "675462aae760c27fbb910a3dec263a6af7602d963a9cf8ee68a2fb5b96eba4c1", "tx_index": 18, "block_index": 131, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -14766,13 +14741,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729415969 + "block_time": 1729418990 }, { - "tx_hash": "9f887ea5403be9aa383402f97d0e8f856de8951ba3327060b3af17321c9478ad", + "tx_hash": "5dbec8408aedd6f8d6d3e7996757c0f4cc868053ef22cea6e506b00fda3c0efd", "tx_index": 14, "block_index": 130, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -14797,13 +14772,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729415965 + "block_time": 1729418986 }, { - "tx_hash": "bb813d64db8f65171084ffa83e7128316586ef0283b09807d288d02a0b8e58da", + "tx_hash": "a6341ea44902feb982ab97a01f0a8313fc32d0304f32bc76b50b54252f14310c", "tx_index": 10, "block_index": 125, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -14828,7 +14803,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729415943 + "block_time": 1729418965 } ], "next_cursor": null, @@ -14847,7 +14822,7 @@ Returns the fairminter by its hash + show_unconfirmed (bool, optional) - Include results from Mempool. + Default: `false` -### Get Fairmints By Fairminter [GET /v2/fairminters/{tx_hash}/mints{?cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}] +### Get Fairmints By Fairminter [GET /v2/fairminters/{tx_hash}/fairmints{?cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}] Returns the mints by fairminter @@ -14888,106 +14863,106 @@ Returns all fairmints { "result": [ { - "tx_hash": "6b50dfb9f0288a39497978e107102a20fca9269f60c348a7d3252a97951c3dfa", + "tx_hash": "27f936d6cbc64295fbb696767820d4b39f85fcf3a8bd6345ef8efaf104da5fd0", "tx_index": 23, "block_index": 136, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", - "fairminter_tx_hash": "251c310af851cba2ce4a58932e7cb803aeb6a9f7a55bac9bbf688ba85a48ef28", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "fairminter_tx_hash": "f38ae5c8abb6b49f9591e5eaae9ea1d072612f70aaa73853f25ba05480b5076c", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729415991, + "block_time": 1729419011, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false } }, { - "tx_hash": "ec08c12c9bbaea508612d23ebc7653d37f4f177f216252e62a801b65f3858840", + "tx_hash": "7bb093115a2d0176787d5a006801240eef7f4cd71b84f5f2d06733ba0119c0cc", "tx_index": 21, "block_index": 134, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", - "fairminter_tx_hash": "dbd38cf37e8f0c24ae54d5b6169437c48f55fb84fc0583aa0d79858c0f9a69fc", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "fairminter_tx_hash": "675462aae760c27fbb910a3dec263a6af7602d963a9cf8ee68a2fb5b96eba4c1", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729415982, + "block_time": 1729419002, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false } }, { - "tx_hash": "187f59a0c410f68e7a905a52efc5ca6aa0cd19f9a082e30ab709d107d8abc5a8", + "tx_hash": "b851cfca13069253a3eeaa7fde8700cce9788279140b0656644aa14fd4e778ce", "tx_index": 20, "block_index": 133, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", - "fairminter_tx_hash": "dbd38cf37e8f0c24ae54d5b6169437c48f55fb84fc0583aa0d79858c0f9a69fc", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "fairminter_tx_hash": "675462aae760c27fbb910a3dec263a6af7602d963a9cf8ee68a2fb5b96eba4c1", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729415978, + "block_time": 1729418998, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false } }, { - "tx_hash": "77cc9d1e2521b94e0c146a22a59691f4c8bc6df0a58ab18d594ecef174baa7ae", + "tx_hash": "6d92c20c614c253df720b314dc30da74be0cd96f7f70fff35c3407497f7641dc", "tx_index": 19, "block_index": 132, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", - "fairminter_tx_hash": "dbd38cf37e8f0c24ae54d5b6169437c48f55fb84fc0583aa0d79858c0f9a69fc", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "fairminter_tx_hash": "675462aae760c27fbb910a3dec263a6af7602d963a9cf8ee68a2fb5b96eba4c1", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729415974, + "block_time": 1729418994, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false } }, { - "tx_hash": "3c243ab902c141cee432205867f5e8b017982288a7857714a37cdfeb5c583742", + "tx_hash": "b42956a53cd087cdbd64c8e1b3444907d632c8beaab2790a2a1707d469dbcd1d", "tx_index": 17, "block_index": 129, - "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", - "fairminter_tx_hash": "9f887ea5403be9aa383402f97d0e8f856de8951ba3327060b3af17321c9478ad", + "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "fairminter_tx_hash": "5dbec8408aedd6f8d6d3e7996757c0f4cc868053ef22cea6e506b00fda3c0efd", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729415961, + "block_time": 1729418982, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false } @@ -15003,7 +14978,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `6b50dfb9f0288a39497978e107102a20fca9269f60c348a7d3252a97951c3dfa` (str, required) - The hash of the fairmint to return + + tx_hash: `27f936d6cbc64295fbb696767820d4b39f85fcf3a8bd6345ef8efaf104da5fd0` (str, required) - The hash of the fairmint to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -15014,22 +14989,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "6b50dfb9f0288a39497978e107102a20fca9269f60c348a7d3252a97951c3dfa", + "tx_hash": "27f936d6cbc64295fbb696767820d4b39f85fcf3a8bd6345ef8efaf104da5fd0", "tx_index": 23, "block_index": 136, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", - "fairminter_tx_hash": "251c310af851cba2ce4a58932e7cb803aeb6a9f7a55bac9bbf688ba85a48ef28", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "fairminter_tx_hash": "f38ae5c8abb6b49f9591e5eaae9ea1d072612f70aaa73853f25ba05480b5076c", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729415991, + "block_time": 1729419011, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false } @@ -15044,7 +15019,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qpm0krm9adpcqdeu2tmuzwdl325fr9768g564cg,bcrt1qsadvwd5q5legncwy7gd0e8nzcar0xtmpjd6smx` (str, required) - The addresses to search for + + addresses: `bcrt1qpt0kqhne88xpxhdekucjewsutuh8v0srmad5le,bcrt1qvvmxpag7eapq07zz0rua2xxaf3ph7mac4j3sql` (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. @@ -15063,8 +15038,8 @@ Returns a list of unspent outputs for a list of addresses "value": 4949970000, "confirmations": 50, "amount": 49.4997, - "txid": "43c225715776decba49fea590847b184beb000f0be36e0c40c59cf79b4cc6b64", - "address": "bcrt1qpm0krm9adpcqdeu2tmuzwdl325fr9768g564cg" + "txid": "88fe13bdf36a7bfdfaa455ba43f3c24030499c216971c57cd3c209db4a07768a", + "address": "bcrt1qpt0kqhne88xpxhdekucjewsutuh8v0srmad5le" }, { "vout": 2, @@ -15072,8 +15047,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 40, "amount": 0.001, - "txid": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2", - "address": "bcrt1qsadvwd5q5legncwy7gd0e8nzcar0xtmpjd6smx" + "txid": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80", + "address": "bcrt1qvvmxpag7eapq07zz0rua2xxaf3ph7mac4j3sql" } ], "next_cursor": null, @@ -15086,7 +15061,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt` (str, required) - The address to search for + + address: `bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx` (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 @@ -15102,28 +15077,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "41940d57c4a9b1f5d0a22cb937643b5a48181fabeb27a4fe2ae5e3b102045d0f" + "tx_hash": "f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109" }, { - "tx_hash": "2df6cb6457b25d97b2a3c828c2ccdf94125693a11ccd1385a63069772b1df123" + "tx_hash": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b" }, { - "tx_hash": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024" + "tx_hash": "8d23f1890ae5570e81293c9c05077a8b43c14f577b2e3b74edf1f125a6764c57" }, { - "tx_hash": "4ca32aa99d8580d669b23533fc8915333ca201ca36a675d0713d4412a1d43d77" + "tx_hash": "9e959e4d7992f9ebacdffa06990aeb2dc4ae9b61a3bce8e456f2a54430c2047a" }, { - "tx_hash": "a744820b0b584d066a290e88a83e879d7632baf3894ca06daf56aeab5281ebb7" + "tx_hash": "b97859d82df08aec2a7034a1721052c7eb6e72e5a41716e18796c69e00b4a59b" }, { - "tx_hash": "cdcf917d341dcb5152a735abf3e6fbe5c3f3df03e327bdacc1f0c3f858ddbbeb" + "tx_hash": "f34d6f9e951e1f65aeec2550ceeaefec67e13aa7c7ec069886aa14e508a81fab" }, { - "tx_hash": "6812bf6b8199c898a40d2bc0949e80556f9b275b19f73b96a09fd3f2f0c691f0" + "tx_hash": "fa630def9f37d80f4fb7036a427e5b2458137478095ee22a8bd99036659e19bf" }, { - "tx_hash": "e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2" + "tx_hash": "d5655c17204f4afcd976f8e236802d6ba005c5eb6c5c851c9f9df06a67b362cc" } ], "next_cursor": null, @@ -15136,7 +15111,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc` (str, required) - The address to search for. + + address: `bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0` (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. @@ -15150,7 +15125,7 @@ Get the oldest transaction for an address. { "result": { "block_index": 8, - "tx_hash": "fa9544479a11d9853792beb7c26938301dd85ee82f3a8d9a4f3495b4c5e42512" + "tx_hash": "2cc5d11d7cf036554b2248d330e894ac68203a296a5a937032a5a04a9fbd98ed" } } ``` @@ -15160,7 +15135,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qpm0krm9adpcqdeu2tmuzwdl325fr9768g564cg` (str, required) - The address to search for + + address: `bcrt1qpt0kqhne88xpxhdekucjewsutuh8v0srmad5le` (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 @@ -15181,7 +15156,7 @@ Returns a list of unspent outputs for a specific address "value": 4949970000, "confirmations": 50, "amount": 49.4997, - "txid": "43c225715776decba49fea590847b184beb000f0be36e0c40c59cf79b4cc6b64" + "txid": "88fe13bdf36a7bfdfaa455ba43f3c24030499c216971c57cd3c209db4a07768a" } ], "next_cursor": null, @@ -15194,7 +15169,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23` (str, required) - Address to get pubkey for. + + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (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. @@ -15206,7 +15181,7 @@ Get pubkey for an address. ``` { - "result": "026a1a918fbc2c6d5fb3aa96a683c6930e932f1484f06179aa0a146e66d4d4cb40" + "result": "03affaa19ddc10bf87091cfd5b2bb70bbf61dbbe6e47c42d281a8eb11cd0064647" } ``` @@ -15215,7 +15190,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287` (str, required) - The transaction hash + + tx_hash: `02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89` (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. @@ -15227,7 +15202,7 @@ Get a transaction from the blockchain ``` { - "result": "02000000000101c2521e5851fa91a88dcab7d1cdeb177b78e1187975db3f54e8704b95d235493c0100000000ffffffff03e803000000000000160014d8738784ceb0bcf1708fd9c365706baff86fe9da00000000000000000c6a0a7f8e9e8ef534ab6d96e8dced08270100000016001467aa929a8ea1b72138c4a091440afffcf0ebeb160247304402201510ffaba3089e65d1da3d6a3475dc6b6694a9a2fcb0da86c18cb2884ea6eb1b022061ade669879bbe17147ea02e83b8a55f690d02ea1673da16a5bb4ea006af4897012103101e7eeabdd5073988f3ffc0f17d1ed34e6754fb80183bcf5a60f1698898086600000000" + "result": "02000000000101802bd33d1bb2543a4cfb359de84596424d69397eed30b436ebc98f16af8c2fe60100000000ffffffff03e803000000000000160014be349a1393f05baf3bf827e20714733ce47e0a2100000000000000000c6a0a4533ae9c62bb15aa58a3dced08270100000016001463bc647fb95b1a8caaaf070fd47b389e6eff23240247304402201f8dee0903c0db6d0d7fdd76ba352904f8c9fbb00bc2342ace11312d2cb3e05f02201f0ab9fd9b6ff44fff1c8d12bb74ad3f3b0b790c30c3e1f6b11b40aa6952fb5101210209d94ed54c33b6494134dd0fd179ad960f0c4cb1fe3ad5c8b7011adfaa0f90cb00000000" } ``` @@ -15322,27 +15297,27 @@ Returns all mempool events { "result": [ { - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "tx_index": 63 }, - "timestamp": 1729416255.7714357 + "timestamp": 1729419299.9227293 }, { - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "destination": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "memo": null, "quantity": 10000, - "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "status": "valid", - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "tx_index": 63, "asset_info": { "divisible": true, @@ -15353,22 +15328,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729416255.7714357 + "timestamp": 1729419299.9227293 }, { - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "event": "CREDIT", "params": { - "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "event": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -15378,22 +15353,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729416255.7714357 + "timestamp": 1729419299.9227293 }, { - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "address": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "asset": "XCP", "block_index": 196, - "event": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "event": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -15403,30 +15378,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729416255.7714357 + "timestamp": 1729419299.9227293 }, { - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729416255.7714357, + "block_time": 1729419299.9227293, "btc_amount": 0, - "data": "020000000000000001000000000000271080b964d3e562cdc29be80c17fb47d0461efe1c5a5d", + "data": "020000000000000001000000000000271080d0f087d8a9e67fb02f22722fc8b975fb1e6c473e", "destination": "", "fee": 10000, - "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "tx_index": 63, - "utxos_info": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836:1", + "utxos_info": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "memo": null, "asset_info": { "divisible": true, @@ -15440,7 +15415,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729416255.7714357 + "timestamp": 1729419299.9227293 } ], "next_cursor": null, @@ -15471,19 +15446,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "event": "CREDIT", "params": { - "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "event": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -15493,7 +15468,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729416255.7714357 + "timestamp": 1729419299.9227293 } ], "next_cursor": null, @@ -15506,7 +15481,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836` (str, required) - The hash of the transaction to return + + tx_hash: `55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9` (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 @@ -15526,27 +15501,27 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "tx_index": 63 }, - "timestamp": 1729416255.7714357 + "timestamp": 1729419299.9227293 }, { - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "destination": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "memo": null, "quantity": 10000, - "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "status": "valid", - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "tx_index": 63, "asset_info": { "divisible": true, @@ -15557,22 +15532,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729416255.7714357 + "timestamp": 1729419299.9227293 }, { - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "event": "CREDIT", "params": { - "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "event": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -15582,22 +15557,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729416255.7714357 + "timestamp": 1729419299.9227293 }, { - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "address": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "asset": "XCP", "block_index": 196, - "event": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "event": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -15607,30 +15582,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729416255.7714357 + "timestamp": 1729419299.9227293 }, { - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729416255.7714357, + "block_time": 1729419299.9227293, "btc_amount": 0, - "data": "020000000000000001000000000000271080b964d3e562cdc29be80c17fb47d0461efe1c5a5d", + "data": "020000000000000001000000000000271080d0f087d8a9e67fb02f22722fc8b975fb1e6c473e", "destination": "", "fee": 10000, - "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "tx_index": 63, - "utxos_info": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836:1", + "utxos_info": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "memo": null, "asset_info": { "divisible": true, @@ -15644,7 +15619,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729416255.7714357 + "timestamp": 1729419299.9227293 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/lib/api/routes.py b/counterparty-core/counterpartycore/lib/api/routes.py index f1514e44df..97ea4c55d7 100644 --- a/counterparty-core/counterpartycore/lib/api/routes.py +++ b/counterparty-core/counterpartycore/lib/api/routes.py @@ -159,7 +159,7 @@ def get_routes(): ### /fairminters ### "/v2/fairminters": queries.get_all_fairminters, "/v2/fairminters/": queries.get_fairminter, - "/v2/fairminters//mints": queries.get_fairmints_by_fairminter, + "/v2/fairminters//fairmints": queries.get_fairmints_by_fairminter, ### /fairmints ### "/v2/fairmints": queries.get_all_fairmints, "/v2/fairmints/": queries.get_fairmint, diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index 3ac01078ec..8535eed34f 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -16588,7 +16588,7 @@ } ] }, - "/v2/fairminters//mints": { + "/v2/fairminters//fairmints": { "function": "get_fairmints_by_fairminter", "description": "Returns the mints by fairminter", "args": [ diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index d0840fdc3c..dc3fc3965e 100644 --- a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json +++ b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json @@ -3,61 +3,61 @@ "result": [ { "block_index": 196, - "block_hash": "6507d71596a5bde486e1a5c1e33be2c96c037acf161f1c5cb41cd6e966e2d3a2", - "block_time": 1729416251, - "previous_block_hash": "3ecdd06511d985f7dd0ec1b9070e68ab57bd0c147b76d85bc1ac386a188c75a3", + "block_hash": "26010869f45387e5100f965afbf68e7ac474fd78998b5120bd34d7046c79ae6f", + "block_time": 1729419295, + "previous_block_hash": "45a86bea1b49d417d16f0cf58b6a3caa438b49eb73a1150d3654da0866e1c113", "difficulty": 545259519, - "ledger_hash": "f94b9a0cde6ac7ff4c57657df4d33d9a8f1dae9ef5de975f5df1dcc5cc851ece", - "txlist_hash": "41aa08840203abe0c1883ea81febef8fdb9238af22a71a5495b39bfc7c1db71b", - "messages_hash": "90707f8a533719986dc3f0949bda3f2eb1e3b12b4d1113e9caccbd9b4d5efb63", + "ledger_hash": "eead9d1cf4256ee6a5064148d170bd143227743df35f8eaf771be669fbacdefc", + "txlist_hash": "4168e789766cc3d4a561e1a4d9324b0838ffcd186cbb040b504e385bbfab51dc", + "messages_hash": "ed329d64324602888971f8c2cfcdb14ded0ce770d8b6530880d3cdb734881033", "transaction_count": 1, "confirmed": true }, { "block_index": 195, - "block_hash": "3ecdd06511d985f7dd0ec1b9070e68ab57bd0c147b76d85bc1ac386a188c75a3", - "block_time": 1729416242, - "previous_block_hash": "728a813061fac83aa7ba84782106a41b12625043d7d6bfa23a9c143df030f128", + "block_hash": "45a86bea1b49d417d16f0cf58b6a3caa438b49eb73a1150d3654da0866e1c113", + "block_time": 1729419281, + "previous_block_hash": "714288ba07f8f87419ab198860e8bb0175209a1f6f0566ee68441fdb0a948d13", "difficulty": 545259519, - "ledger_hash": "cc718c23e625491aee2fc62a05bc61a9757c4a93b694ef86bc4ce5156e1d95e4", - "txlist_hash": "a07cf4e2952739cbc92e3c6ab24d5641f416fc170b9760e7c474d9f39f5aea26", - "messages_hash": "9091c829a5aa11609cd32fe2f67938ba0dbcf5bcf4a65e90c10e54461f9f80cf", + "ledger_hash": "8d4a675808c86f3d5cf275fbb2b01ebcb78ff46be836ae5196368422f3518c58", + "txlist_hash": "6c00273b2d15d31cadacc162ba8812c4c69ffec8f2bc984e069159713b46fe6c", + "messages_hash": "f9546c1da9c14cc0197a5b5cf5e80bbb1b830595b6dbbd1e4a2c3a32e38c1ba2", "transaction_count": 1, "confirmed": true }, { "block_index": 194, - "block_hash": "728a813061fac83aa7ba84782106a41b12625043d7d6bfa23a9c143df030f128", - "block_time": 1729416237, - "previous_block_hash": "4711586e156dc07bc446b0d13bd07197fb6073457f04e8c962b18601d7aab73c", + "block_hash": "714288ba07f8f87419ab198860e8bb0175209a1f6f0566ee68441fdb0a948d13", + "block_time": 1729419276, + "previous_block_hash": "57dfced2294a097ac30ded16acb47a12f446095f608438f62863069eb55f26a9", "difficulty": 545259519, - "ledger_hash": "16819ea6b16871368675990819b6ee38eaf09dd756eb3266992d9bbcbfb612e0", - "txlist_hash": "cf42fdd132d3436f7c386a132cbf5f28490b0d2a730f870efeb94abc5c539730", - "messages_hash": "5924462778e58daed75d47fc78480ebda5c1e5c0253ed48c30ce5e9981a12f86", + "ledger_hash": "b23221b39e36fbdaf365a1416a2137f711bdc4c62bffb6cfa5cb35035789df0c", + "txlist_hash": "0f0866eae37543ff2b55a46ec365f0d8f884827de8a1c455ff871d33ea32bcf3", + "messages_hash": "150f3f2112bc4a497ace7a7c6e75acd2ee44c3db7eaddacc49dcbfd24abb4726", "transaction_count": 1, "confirmed": true }, { "block_index": 193, - "block_hash": "4711586e156dc07bc446b0d13bd07197fb6073457f04e8c962b18601d7aab73c", - "block_time": 1729416233, - "previous_block_hash": "7ed678c7467e7efadcf543e389f591346431c76c567638ba2fc748d67b102781", + "block_hash": "57dfced2294a097ac30ded16acb47a12f446095f608438f62863069eb55f26a9", + "block_time": 1729419272, + "previous_block_hash": "3658d2f90d22c5ac539825f061b3e1485c9d4cc338f3f9f38f7f545f4254effd", "difficulty": 545259519, - "ledger_hash": "0d713822dd49df58abf0df8423b2b429ac36d2da7e181df4fa32919413307a8b", - "txlist_hash": "7f95f439866514d156baead34f58896d8ed0dd87c5730eef21ff376b9d7d322e", - "messages_hash": "665d3418c0246f5af0c06d3668b67a110dd798d17bfae6384e9b309030c754af", + "ledger_hash": "0e3b11652d642ddf2981f2f07cf7782c851ba0b7d4e6beb5b0e7e2a6a72a2fda", + "txlist_hash": "2e0a754fcc764ec28ca313c161c5ddda153c3da1316ae2cc2bda8eb1b25aa916", + "messages_hash": "0dc42b030d4b5ce7631274571320b2003f089b2b941310ff17687a1a7143d91a", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "7ed678c7467e7efadcf543e389f591346431c76c567638ba2fc748d67b102781", - "block_time": 1729416229, - "previous_block_hash": "2fb7daac12d57d03a72504b4a83dcdcf2526bf0ddd4ef79a494697e3933b3d32", + "block_hash": "3658d2f90d22c5ac539825f061b3e1485c9d4cc338f3f9f38f7f545f4254effd", + "block_time": 1729419257, + "previous_block_hash": "5a79892b45761c6b06ee6c4b9265e5b99130ebf3f085b1f3f60c31c331cb99c7", "difficulty": 545259519, - "ledger_hash": "a4b01c2e43a0d3d158d89eb1daf965eefb4587fd04080947c4915581c1f9fb75", - "txlist_hash": "5eefd74579a8915f71f7aa0d2b2140c088ed41c582e39ac3ec356ac23561ea7b", - "messages_hash": "d341d3e3d54cb95d6ac5eda6bd925d32cb00afa9ed7b6cc05e227c6bad69e92e", + "ledger_hash": "ba9d083664623fb74cb71cce6e292b5ae927fd52814e53759c82ac38de7b52dc", + "txlist_hash": "24644b6aebff4a38f6034c3d8e6b52630235a164b265c8b3f8ff72b548215193", + "messages_hash": "7574667d077c75564e36a68f0b931f74c74ece654314b7d527fda809ce11e73d", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 196, - "block_hash": "6507d71596a5bde486e1a5c1e33be2c96c037acf161f1c5cb41cd6e966e2d3a2", - "block_time": 1729416251, - "previous_block_hash": "3ecdd06511d985f7dd0ec1b9070e68ab57bd0c147b76d85bc1ac386a188c75a3", + "block_hash": "26010869f45387e5100f965afbf68e7ac474fd78998b5120bd34d7046c79ae6f", + "block_time": 1729419295, + "previous_block_hash": "45a86bea1b49d417d16f0cf58b6a3caa438b49eb73a1150d3654da0866e1c113", "difficulty": 545259519, - "ledger_hash": "f94b9a0cde6ac7ff4c57657df4d33d9a8f1dae9ef5de975f5df1dcc5cc851ece", - "txlist_hash": "41aa08840203abe0c1883ea81febef8fdb9238af22a71a5495b39bfc7c1db71b", - "messages_hash": "90707f8a533719986dc3f0949bda3f2eb1e3b12b4d1113e9caccbd9b4d5efb63", + "ledger_hash": "eead9d1cf4256ee6a5064148d170bd143227743df35f8eaf771be669fbacdefc", + "txlist_hash": "4168e789766cc3d4a561e1a4d9324b0838ffcd186cbb040b504e385bbfab51dc", + "messages_hash": "ed329d64324602888971f8c2cfcdb14ded0ce770d8b6530880d3cdb734881033", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 196, - "block_hash": "6507d71596a5bde486e1a5c1e33be2c96c037acf161f1c5cb41cd6e966e2d3a2", - "block_time": 1729416251, - "previous_block_hash": "3ecdd06511d985f7dd0ec1b9070e68ab57bd0c147b76d85bc1ac386a188c75a3", + "block_hash": "26010869f45387e5100f965afbf68e7ac474fd78998b5120bd34d7046c79ae6f", + "block_time": 1729419295, + "previous_block_hash": "45a86bea1b49d417d16f0cf58b6a3caa438b49eb73a1150d3654da0866e1c113", "difficulty": 545259519, - "ledger_hash": "f94b9a0cde6ac7ff4c57657df4d33d9a8f1dae9ef5de975f5df1dcc5cc851ece", - "txlist_hash": "41aa08840203abe0c1883ea81febef8fdb9238af22a71a5495b39bfc7c1db71b", - "messages_hash": "90707f8a533719986dc3f0949bda3f2eb1e3b12b4d1113e9caccbd9b4d5efb63", + "ledger_hash": "eead9d1cf4256ee6a5064148d170bd143227743df35f8eaf771be669fbacdefc", + "txlist_hash": "4168e789766cc3d4a561e1a4d9324b0838ffcd186cbb040b504e385bbfab51dc", + "messages_hash": "ed329d64324602888971f8c2cfcdb14ded0ce770d8b6530880d3cdb734881033", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 62, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_hash": "6507d71596a5bde486e1a5c1e33be2c96c037acf161f1c5cb41cd6e966e2d3a2", - "block_time": 1729416251, - "source": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", - "destination": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "block_hash": "26010869f45387e5100f965afbf68e7ac474fd78998b5120bd34d7046c79ae6f", + "block_time": 1729419295, + "source": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "destination": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1 9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "utxos_info": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1 02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -129,11 +129,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "f94b9a0cde6ac7ff4c57657df4d33d9a8f1dae9ef5de975f5df1dcc5cc851ece", - "messages_hash": "90707f8a533719986dc3f0949bda3f2eb1e3b12b4d1113e9caccbd9b4d5efb63", + "ledger_hash": "eead9d1cf4256ee6a5064148d170bd143227743df35f8eaf771be669fbacdefc", + "messages_hash": "ed329d64324602888971f8c2cfcdb14ded0ce770d8b6530880d3cdb734881033", "transaction_count": 1, - "txlist_hash": "41aa08840203abe0c1883ea81febef8fdb9238af22a71a5495b39bfc7c1db71b", - "block_time": 1729416251 + "txlist_hash": "4168e789766cc3d4a561e1a4d9324b0838ffcd186cbb040b504e385bbfab51dc", + "block_time": 1729419295 }, "tx_hash": null }, @@ -142,10 +142,10 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62 }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287" + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89" }, { "event_index": 561, @@ -154,14 +154,14 @@ "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "destination": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "dispenser_tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -172,7 +172,7 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287" + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89" }, { "event_index": 560, @@ -181,9 +181,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "status": 0, - "tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", + "tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", "asset_info": { "divisible": true, "asset_longname": null, @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287" + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89" }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -218,7 +218,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287" + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89" } ], "next_cursor": 558, @@ -256,16 +256,16 @@ "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -275,7 +275,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287" + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89" }, { "event_index": 557, @@ -285,12 +285,12 @@ "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "quantity": 1500000000, "tx_index": 62, - "utxo": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", - "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", - "block_time": 1729416251, + "utxo": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", + "utxo_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -300,7 +300,7 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287" + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89" }, { "event_index": 554, @@ -310,22 +310,22 @@ "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "quantity": 1500000000, "tx_index": 62, - "utxo": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", - "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", - "block_time": 1729416251, + "utxo": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", + "utxo_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "block_time": 1729419295, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287" + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89" } ], "next_cursor": null, @@ -335,16 +335,16 @@ "result": [ { "block_index": 196, - "address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -360,12 +360,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62, - "utxo": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", - "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "utxo": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", + "utxo_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "confirmed": true, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,16 +381,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62, - "utxo": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", - "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "utxo": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", + "utxo_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "confirmed": true, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -408,12 +408,12 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62, - "utxo": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", - "utxo_address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "utxo": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", + "utxo_address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "confirmed": true, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -429,16 +429,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62, - "utxo": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", - "utxo_address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "utxo": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", + "utxo_address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "confirmed": true, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -452,24 +452,24 @@ "result": [ { "type": "order", - "object_id": "31f95069423c6c4ddfe0a4574c1a3369fb58dac7a6652ba054558eb83930ed0b", + "object_id": "97a614c1cd5ebc6475742cff5c39401b7d7a1c7b9432bf2f31b973c81a8ceeac", "block_index": 184, "confirmed": true, - "block_time": 1729416128 + "block_time": 1729419167 }, { "type": "order", - "object_id": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8", + "object_id": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b", "block_index": 184, "confirmed": true, - "block_time": 1729416128 + "block_time": 1729419167 }, { "type": "order_match", - "object_id": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8_31f95069423c6c4ddfe0a4574c1a3369fb58dac7a6652ba054558eb83930ed0b", + "object_id": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b_97a614c1cd5ebc6475742cff5c39401b7d7a1c7b9432bf2f31b973c81a8ceeac", "block_index": 184, "confirmed": true, - "block_time": 1729416128 + "block_time": 1729419167 } ], "next_cursor": null, @@ -479,13 +479,13 @@ "result": [ { "tx_index": 58, - "tx_hash": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa", + "tx_hash": "f034d2fc20879fa54967667975c28e61b9e666da655c2cdeef7b284f057afff6", "block_index": 192, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "offer_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "offer_hash": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", "status": "valid", "confirmed": true, - "block_time": 1729416229 + "block_time": 1729419257 } ], "next_cursor": null, @@ -495,15 +495,15 @@ "result": [ { "tx_index": 61, - "tx_hash": "849f54d8426192c0270d4d240627ba157876e3601948aed0ac24e730dcab52d7", + "tx_hash": "857b0199761f230748e7583d48033e2dcc3de8fbea85b2ca971f83f5261bd29a", "block_index": 195, - "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1729416242, + "block_time": 1729419281, "asset_info": { "divisible": true, "asset_longname": null, @@ -521,14 +521,14 @@ "result": [ { "tx_index": 48, - "tx_hash": "bb2aa89179834fafe03acecbbade4d6fd928251f2923a59b4656957ab3685976", + "tx_hash": "e3935cf288cec52794daa26e2783ae06125ca6965f257e7d9ff3585239657033", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "transfer": false, "callable": false, "call_date": 0, @@ -543,7 +543,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729416112, + "block_time": 1729419150, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -555,10 +555,10 @@ "result": [ { "tx_index": 62, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "source": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", - "destination": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "source": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", + "destination": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -566,7 +566,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -579,10 +579,10 @@ }, { "tx_index": 62, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "source": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", - "destination": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "source": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", + "destination": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -590,11 +590,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -610,27 +610,27 @@ { "tx_index": 62, "dispense_index": 0, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", - "destination": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "destination": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", + "dispenser_tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "oracle_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "last_status_tx_hash": null, - "origin": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "origin": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -645,7 +645,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -664,16 +664,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", + "tx_hash": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b", "block_index": 194, - "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", - "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "source": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "destination": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729416237, + "block_time": 1729419276, "fee_paid_normalized": "0.00600000" } ], @@ -684,17 +684,17 @@ "result": [ { "tx_index": 62, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_hash": "6507d71596a5bde486e1a5c1e33be2c96c037acf161f1c5cb41cd6e966e2d3a2", - "block_time": 1729416251, - "source": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", - "destination": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "block_hash": "26010869f45387e5100f965afbf68e7ac474fd78998b5120bd34d7046c79ae6f", + "block_time": 1729419295, + "source": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "destination": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1 9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "utxos_info": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1 02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -707,17 +707,17 @@ }, { "tx_index": 61, - "tx_hash": "849f54d8426192c0270d4d240627ba157876e3601948aed0ac24e730dcab52d7", + "tx_hash": "857b0199761f230748e7583d48033e2dcc3de8fbea85b2ca971f83f5261bd29a", "block_index": 195, - "block_hash": "3ecdd06511d985f7dd0ec1b9070e68ab57bd0c147b76d85bc1ac386a188c75a3", - "block_time": 1729416242, - "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "block_hash": "45a86bea1b49d417d16f0cf58b6a3caa438b49eb73a1150d3654da0866e1c113", + "block_time": 1729419281, + "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "849f54d8426192c0270d4d240627ba157876e3601948aed0ac24e730dcab52d7:1", + "utxos_info": "857b0199761f230748e7583d48033e2dcc3de8fbea85b2ca971f83f5261bd29a:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -744,82 +744,57 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "", "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "0c000000000000000100000000000000010000000000002710000000000000000100", + "btc_amount": null, + "fee": null, + "data": "", "decoded_tx": { "version": 2, "segwit": true, - "coinbase": false, + "coinbase": true, "vin": [ { - "hash": "1424aa896a288197fe5b388aecb38a7153028017b935009a52addecd7b417bf7", - "n": 0, - "script_sig": "", + "hash": "0000000000000000000000000000000000000000000000000000000000000000", + "n": 4294967295, + "script_sig": "014300", "sequence": 4294967295, - "coinbase": false + "coinbase": true } ], "vout": [ { - "value": 0, - "script_pub_key": "6a2a7f1eff96066a74febe070c3eb2aa81f1c4c5d98bef2bd5557c30a0342cf28946cdb6fbc0562384d68e3d" + "value": 5000000000, + "script_pub_key": "0014557b2d77cc0be408f0448c0d51a68f2eb0e13518" }, { - "value": 4999990000, - "script_pub_key": "0014d173175d97588c462c9f66604b39d4e4f49afab0" + "value": 0, + "script_pub_key": "6a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf9" } ], "vtxinwit": [ - "30440220144f1cbc542fdd64dbf8d07f20c026c9ccbf9c25d438030d3fc62d26a4375c4e022053d743e199518371250d5cc9fa628a8e95a5fca04380132148d0087416ebe70101", - "026a1a918fbc2c6d5fb3aa96a683c6930e932f1484f06179aa0a146e66d4d4cb40" + "0000000000000000000000000000000000000000000000000000000000000000" ], "lock_time": 0, - "tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", - "tx_id": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630" - }, - "unpacked_data": { - "message_type": "dispenser", - "message_type_id": 12, - "message_data": { - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "mainchainrate": 1, - "dispenser_status": 0, - "action_address": null, - "oracle_address": null, - "status": "valid", - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00000001", - "escrow_quantity_normalized": "0.00010000" - } - }, - "btc_amount_normalized": "0.00000000" + "tx_hash": "be18eb1f6e1b54bd8664947ea547ecd06aaaddf36cfee98d705829f2cb6ad6df", + "tx_id": "be18eb1f6e1b54bd8664947ea547ecd06aaaddf36cfee98d705829f2cb6ad6df" + } } }, "/v2/transactions//info": { "result": { - "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080b964d3e562cdc29be80c17fb47d0461efe1c5a5d", + "data": "020000000000000001000000000000271080d0f087d8a9e67fb02f22722fc8b975fb1e6c473e", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "712bf6e41f93de319d30ed2327a2414a0b550c37986ab107d7ea2599c0a8bece", + "hash": "ad281bdd69fda41d84947a3c96849e00efdf25c45f566e010df60d267b160d9c", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -829,20 +804,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2e6d3a458d1347892ccc7e75e210f83acd3a7d8f9a796dcaaed2a363a248d9933ca12a57050cdcb4319a629f938c78" + "script_pub_key": "6a2e6edf8cb93c922f5584d61db2f1afffca61b766449448614055330a855b19c57945a96f527e856823677090545303" }, { "value": 4999955000, - "script_pub_key": "0014bf13d9c76ee760db64d132b5dc3f99ed263282ec" + "script_pub_key": "00143dcc35a8148c4958edc036d7dbf62f22c9ee7f8c" } ], "vtxinwit": [ - "30440220573cb018bcc6a86c4ee17cc495742e03d5bf417dacf17d2b6e02a7a944546cd50220409350c75e8554a6d9a20bbf39bfe2036b75d43da562dafcfeee87b498b67f0701", - "02c6afedba8a0914a50ae14060542f470e81757a82ea2a2aba3920c325680b2245" + "304402200131af551e7ac8871a81155eceb120e32fba9355e1ea9856f54c9cda15a52f24022060ba85d3792a9a781d1f5c441267cb2d3875331808c5e2eb8adc4dfa1b99e6d801", + "03713b36b6b11c7678f38efbe31df54f86be0d1da0e9448b6e34cd36ce539044af" ], "lock_time": 0, - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", - "tx_id": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836" + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", + "tx_id": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9" }, "unpacked_data": { "message_type": "enhanced_send", @@ -850,7 +825,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "memo": null, "asset_info": { "divisible": true, @@ -877,17 +852,17 @@ "/v2/transactions/": { "result": { "tx_index": 62, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_hash": "6507d71596a5bde486e1a5c1e33be2c96c037acf161f1c5cb41cd6e966e2d3a2", - "block_time": 1729416251, - "source": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", - "destination": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "block_hash": "26010869f45387e5100f965afbf68e7ac474fd78998b5120bd34d7046c79ae6f", + "block_time": 1729419295, + "source": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "destination": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1 9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "utxos_info": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1 02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -902,17 +877,17 @@ "/v2/transactions/": { "result": { "tx_index": 62, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_hash": "6507d71596a5bde486e1a5c1e33be2c96c037acf161f1c5cb41cd6e966e2d3a2", - "block_time": 1729416251, - "source": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", - "destination": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "block_hash": "26010869f45387e5100f965afbf68e7ac474fd78998b5120bd34d7046c79ae6f", + "block_time": 1729419295, + "source": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "destination": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1 9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "utxos_info": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1 02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -931,12 +906,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62 }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 }, { "event_index": 561, @@ -945,14 +920,14 @@ "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "destination": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "dispenser_tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -963,9 +938,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 }, { "event_index": 560, @@ -974,9 +949,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "status": 0, - "tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", + "tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", "asset_info": { "divisible": true, "asset_longname": null, @@ -986,24 +961,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -1013,9 +988,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 }, { "event_index": 558, @@ -1023,14 +998,14 @@ "params": { "asset": "XCP", "block_index": 196, - "destination": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "destination": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", "msg_index": 1, "quantity": 1500000000, - "source": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", + "source": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", "status": "valid", - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -1040,9 +1015,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 } ], "next_cursor": 557, @@ -1055,12 +1030,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62 }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 }, { "event_index": 561, @@ -1069,14 +1044,14 @@ "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "destination": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "dispenser_tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -1087,9 +1062,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 }, { "event_index": 560, @@ -1098,9 +1073,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "status": 0, - "tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", + "tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", "asset_info": { "divisible": true, "asset_longname": null, @@ -1110,24 +1085,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -1137,9 +1112,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 }, { "event_index": 558, @@ -1147,14 +1122,14 @@ "params": { "asset": "XCP", "block_index": 196, - "destination": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "destination": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", "msg_index": 1, "quantity": 1500000000, - "source": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", + "source": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", "status": "valid", - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -1164,9 +1139,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 } ], "next_cursor": 557, @@ -1176,10 +1151,10 @@ "result": [ { "tx_index": 62, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "source": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", - "destination": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "source": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", + "destination": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -1187,7 +1162,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -1200,10 +1175,10 @@ }, { "tx_index": 62, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "source": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", - "destination": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "source": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", + "destination": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -1211,11 +1186,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -1231,27 +1206,27 @@ { "tx_index": 62, "dispense_index": 0, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", - "destination": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "destination": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", + "dispenser_tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "oracle_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "last_status_tx_hash": null, - "origin": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "origin": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1266,7 +1241,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -1287,16 +1262,16 @@ "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -1306,9 +1281,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 }, { "event_index": 557, @@ -1318,12 +1293,12 @@ "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "quantity": 1500000000, "tx_index": 62, - "utxo": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", - "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", - "block_time": 1729416251, + "utxo": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", + "utxo_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -1333,9 +1308,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 }, { "event_index": 554, @@ -1345,24 +1320,24 @@ "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "quantity": 1500000000, "tx_index": 62, - "utxo": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", - "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", - "block_time": 1729416251, + "utxo": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", + "utxo_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "block_time": 1729419295, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 } ], "next_cursor": null, @@ -1374,16 +1349,16 @@ "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -1393,9 +1368,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 }, { "event_index": 557, @@ -1405,12 +1380,12 @@ "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "quantity": 1500000000, "tx_index": 62, - "utxo": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", - "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", - "block_time": 1729416251, + "utxo": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", + "utxo_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -1420,9 +1395,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 }, { "event_index": 554, @@ -1432,24 +1407,24 @@ "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "quantity": 1500000000, "tx_index": 62, - "utxo": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", - "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", - "block_time": 1729416251, + "utxo": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", + "utxo_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "block_time": 1729419295, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 } ], "next_cursor": null, @@ -1462,7 +1437,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1472,7 +1447,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -1483,7 +1458,7 @@ "total": 97999999980, "addresses": [ { - "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -1493,7 +1468,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -1504,7 +1479,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1514,7 +1489,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -1525,7 +1500,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1535,7 +1510,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -1546,7 +1521,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1556,7 +1531,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -1570,17 +1545,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", + "tx_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", "block_index": 193, - "block_hash": "4711586e156dc07bc446b0d13bd07197fb6073457f04e8c962b18601d7aab73c", - "block_time": 1729416233, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "block_hash": "57dfced2294a097ac30ded16acb47a12f446095f608438f62863069eb55f26a9", + "block_time": 1729419272, + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687:1", + "utxos_info": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1616,23 +1591,23 @@ }, { "tx_index": 58, - "tx_hash": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa", + "tx_hash": "f034d2fc20879fa54967667975c28e61b9e666da655c2cdeef7b284f057afff6", "block_index": 192, - "block_hash": "7ed678c7467e7efadcf543e389f591346431c76c567638ba2fc748d67b102781", - "block_time": 1729416229, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "block_hash": "3658d2f90d22c5ac539825f061b3e1485c9d4cc338f3f9f38f7f545f4254effd", + "block_time": 1729419257, + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "460a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", + "data": "468fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", "supported": true, - "utxos_info": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa:1", + "utxos_info": "f034d2fc20879fa54967667975c28e61b9e666da655c2cdeef7b284f057afff6:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", + "offer_hash": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", "status": "valid" } }, @@ -1640,17 +1615,17 @@ }, { "tx_index": 57, - "tx_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", + "tx_hash": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", "block_index": 191, - "block_hash": "2fb7daac12d57d03a72504b4a83dcdcf2526bf0ddd4ef79a494697e3933b3d32", - "block_time": 1729416224, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "block_hash": "5a79892b45761c6b06ee6c4b9265e5b99130ebf3f085b1f3f60c31c331cb99c7", + "block_time": 1729419253, + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d:1", + "utxos_info": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1686,17 +1661,17 @@ }, { "tx_index": 56, - "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", + "tx_hash": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", "block_index": 190, - "block_hash": "49031dd5afeca85d63b74c5b576803fe4396010c7929926e9d94cfc692574922", - "block_time": 1729416220, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "block_hash": "27d56f8f7a9d91d559042a50061b02cd6ae526427d0159cd054bfb1432893317", + "block_time": 1729419248, + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003803ba2dced599f88fbfa5943ac7d4ab45523f9908780b964d3e562cdc29be80c17fb47d0461efe1c5a5d80bf13d9c76ee760db64d132b5dc3f99ed263282ec400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380d64c08d96d88ea91d982fd48c18244108a8ef38f80d0f087d8a9e67fb02f22722fc8b975fb1e6c473e803dcc35a8148c4958edc036d7dbf62f22c9ee7f8c400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6:0", + "utxos_info": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1704,14 +1679,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "destination": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -1719,7 +1694,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -1738,25 +1713,25 @@ }, { "tx_index": 53, - "tx_hash": "e6ca911a0b08aa83675667b9ca8e02c32aeb2da53061aba62dde2da5b66b8fe8", + "tx_hash": "093e49f3c5553048e93710a95ae3f813e9e9ed5288b166ef5352fa88f6ee9d32", "block_index": 187, - "block_hash": "73fddac4584bdd33b80d2b73fe415da9f48d23e506dfb7ba55e3e91b4449e625", - "block_time": 1729416196, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", - "destination": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "block_hash": "1e3ef7feb2b0cc9956125c6848ee0b6e7b21aaf7ce801dd0083afef4b9c163fa", + "block_time": 1729419235, + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "destination": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "btc_amount": 2000, "fee": 10000, - "data": "0b0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da3934797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", + "data": "0bb4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", "supported": true, - "utxos_info": "e6ca911a0b08aa83675667b9ca8e02c32aeb2da53061aba62dde2da5b66b8fe8:0", + "utxos_info": "093e49f3c5553048e93710a95ae3f813e9e9ed5288b166ef5352fa88f6ee9d32:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", - "tx1_hash": "34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", - "order_match_id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", + "tx0_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", + "tx1_hash": "a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", + "order_match_id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", "status": "valid" } }, @@ -1785,11 +1760,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "status": "open", - "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", + "tx_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", "tx_index": 59, - "block_time": 1729416233, + "block_time": 1729419272, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -1813,24 +1788,24 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", + "tx_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", "block_index": 193, - "block_time": 1729416233 + "block_time": 1729419272 }, { "event_index": 528, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCP", "block_index": 193, - "event": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", + "event": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", "quantity": 1000, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1729416233, + "block_time": 1729419272, "asset_info": { "divisible": true, "asset_longname": null, @@ -1840,25 +1815,25 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", + "tx_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", "block_index": 193, - "block_time": 1729416233 + "block_time": 1729419272 }, { "event_index": 527, "event": "NEW_TRANSACTION", "params": { - "block_hash": "4711586e156dc07bc446b0d13bd07197fb6073457f04e8c962b18601d7aab73c", + "block_hash": "57dfced2294a097ac30ded16acb47a12f446095f608438f62863069eb55f26a9", "block_index": 193, - "block_time": 1729416233, + "block_time": 1729419272, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "tx_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", "tx_index": 59, - "utxos_info": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687:1", + "utxos_info": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -1890,40 +1865,40 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", + "tx_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", "block_index": 193, - "block_time": 1729416233 + "block_time": 1729419272 }, { "event_index": 523, "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "offer_hash": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "status": "valid", - "tx_hash": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa", + "tx_hash": "f034d2fc20879fa54967667975c28e61b9e666da655c2cdeef7b284f057afff6", "tx_index": 58, - "block_time": 1729416229 + "block_time": 1729419257 }, - "tx_hash": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa", + "tx_hash": "f034d2fc20879fa54967667975c28e61b9e666da655c2cdeef7b284f057afff6", "block_index": 192, - "block_time": 1729416229 + "block_time": 1729419257 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCP", "block_index": 192, "calling_function": "cancel order", - "event": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", + "event": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", "quantity": 1000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1729416229, + "block_time": 1729419257, "asset_info": { "divisible": true, "asset_longname": null, @@ -1933,9 +1908,9 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa", + "tx_hash": "f034d2fc20879fa54967667975c28e61b9e666da655c2cdeef7b284f057afff6", "block_index": 192, - "block_time": 1729416229 + "block_time": 1729419257 } ], "next_cursor": 520, @@ -1944,17 +1919,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "destination": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "memo": null, "quantity": 10000, - "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "status": "valid", - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "tx_index": 63, "asset_info": { "divisible": true, @@ -1965,22 +1940,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729416255.7714357 + "timestamp": 1729419299.9227293 }, { - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "event": "CREDIT", "params": { - "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "event": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -1990,22 +1965,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729416255.7714357 + "timestamp": 1729419299.9227293 }, { - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "address": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "asset": "XCP", "block_index": 196, - "event": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "event": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -2015,30 +1990,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729416255.7714357 + "timestamp": 1729419299.9227293 }, { - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729416255.7714357, + "block_time": 1729419299.9227293, "btc_amount": 0, - "data": "020000000000000001000000000000271080b964d3e562cdc29be80c17fb47d0461efe1c5a5d", + "data": "020000000000000001000000000000271080d0f087d8a9e67fb02f22722fc8b975fb1e6c473e", "destination": "", "fee": 10000, - "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "tx_index": 63, - "utxos_info": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836:1", + "utxos_info": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "memo": null, "asset_info": { "divisible": true, @@ -2052,7 +2027,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729416255.7714357 + "timestamp": 1729419299.9227293 } ], "next_cursor": null, @@ -2061,7 +2036,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2069,14 +2044,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2084,14 +2059,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -2106,7 +2081,7 @@ "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -2114,7 +2089,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -2126,7 +2101,7 @@ }, "/v2/addresses/
/balances/": { "result": { - "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -2145,16 +2120,16 @@ "result": [ { "block_index": 192, - "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", + "event": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729416229, + "block_time": 1729419257, "asset_info": { "divisible": true, "asset_longname": null, @@ -2166,16 +2141,16 @@ }, { "block_index": 184, - "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8", + "event": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729416128, + "block_time": 1729419167, "asset_info": { "divisible": true, "asset_longname": null, @@ -2187,20 +2162,20 @@ }, { "block_index": 161, - "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "bb2aa89179834fafe03acecbbade4d6fd928251f2923a59b4656957ab3685976", + "event": "e3935cf288cec52794daa26e2783ae06125ca6965f257e7d9ff3585239657033", "tx_index": 48, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729416112, + "block_time": 1729419150, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -2208,20 +2183,20 @@ }, { "block_index": 158, - "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "d875bf5554d034912c2a9eb7d151d9f055e3135142c077fa342ce253d4b54d3e", + "event": "82690f74f70a78c1049e4a8fb569f81e1cd0cbf656d4f1c9b006ac977558a1b7", "tx_index": 45, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729416098, + "block_time": 1729419127, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -2233,16 +2208,16 @@ "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "aebd60a74f16beb780629243965a4832b6c9e75043be78503b78cb904acba5d6", + "event": "19241abee68c758ce2acf9aa205d89e2974a82660ba244e8539a1e2db77bf4f6", "tx_index": 39, - "utxo": "aebd60a74f16beb780629243965a4832b6c9e75043be78503b78cb904acba5d6:1", - "utxo_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "utxo": "19241abee68c758ce2acf9aa205d89e2974a82660ba244e8539a1e2db77bf4f6:1", + "utxo_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "confirmed": true, - "block_time": 1729416061, + "block_time": 1729419100, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -2256,16 +2231,16 @@ "result": [ { "block_index": 193, - "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", + "event": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729416233, + "block_time": 1729419272, "asset_info": { "divisible": true, "asset_longname": null, @@ -2277,16 +2252,16 @@ }, { "block_index": 191, - "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", + "event": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729416224, + "block_time": 1729419253, "asset_info": { "divisible": true, "asset_longname": null, @@ -2298,16 +2273,16 @@ }, { "block_index": 190, - "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", + "event": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729416220, + "block_time": 1729419248, "asset_info": { "divisible": true, "asset_longname": null, @@ -2319,20 +2294,20 @@ }, { "block_index": 190, - "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", + "event": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729416220, + "block_time": 1729419248, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -2340,16 +2315,16 @@ }, { "block_index": 185, - "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", + "event": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", "tx_index": 51, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729416187, + "block_time": 1729419226, "asset_info": { "divisible": true, "asset_longname": null, @@ -2372,9 +2347,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "674a65a64a4826a0b0d490aca3e07b7fd65869b1649206fa97265a826ed95b11", + "tx_hash": "d0aca4399eb6a0726cf88725563432f6ab5e40ed7b526c9a96ce23e4881a0b1e", "block_index": 137, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2382,7 +2357,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729415995, + "block_time": 1729419015, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2393,14 +2368,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "55cc024ddcd9ac23b7cf78f81f744c3f8b3fd177ee079fc992c75f53faafde70", + "tx_hash": "a51b8fe949db2a0269b1a8e9effb3922c88f84fcd722c1eb0b7f6e8a2c7c1e46", "block_index": 112, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1729415886, + "block_time": 1729418910, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2412,10 +2387,10 @@ "result": [ { "tx_index": 56, - "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", + "tx_hash": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", "block_index": 190, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2423,7 +2398,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416220, + "block_time": 1729419248, "asset_info": { "divisible": true, "asset_longname": null, @@ -2436,10 +2411,10 @@ }, { "tx_index": 56, - "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", + "tx_hash": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", "block_index": 190, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2447,11 +2422,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416220, + "block_time": 1729419248, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -2460,10 +2435,10 @@ }, { "tx_index": 56, - "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", + "tx_hash": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", "block_index": 190, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2471,11 +2446,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416220, + "block_time": 1729419248, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -2484,10 +2459,10 @@ }, { "tx_index": 39, - "tx_hash": "aebd60a74f16beb780629243965a4832b6c9e75043be78503b78cb904acba5d6", + "tx_hash": "19241abee68c758ce2acf9aa205d89e2974a82660ba244e8539a1e2db77bf4f6", "block_index": 152, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "aebd60a74f16beb780629243965a4832b6c9e75043be78503b78cb904acba5d6:1", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "19241abee68c758ce2acf9aa205d89e2974a82660ba244e8539a1e2db77bf4f6:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2495,11 +2470,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416061, + "block_time": 1729419100, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -2508,10 +2483,10 @@ }, { "tx_index": 36, - "tx_hash": "29164d2e5e97a484170fd199cd18fb9fc6798b6ac00213c37ac4ae9dbc322b91", + "tx_hash": "81515ceb01d9d57d4c9c65502f478c7f3933ad32df8912f05c85977f3919ab9c", "block_index": 149, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "2df6cb6457b25d97b2a3c828c2ccdf94125693a11ccd1385a63069772b1df123:1", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "8d23f1890ae5570e81293c9c05077a8b43c14f577b2e3b74edf1f125a6764c57:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2519,11 +2494,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416048, + "block_time": 1729419086, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -2538,10 +2513,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "e755d7b8872d3d225da4d98c83eb4694a52915378b4b246272aff784b230d963", + "tx_hash": "b0bd44f210f49eeff94e14b96de922cb147dc9069d998d38e9ca17d5ad033d1d", "block_index": 151, - "source": "cdcf917d341dcb5152a735abf3e6fbe5c3f3df03e327bdacc1f0c3f858ddbbeb:0", - "destination": "bcrt1qkgcujj6uea6hshreznk6fw8e22utgsdyqd02hg", + "source": "b97859d82df08aec2a7034a1721052c7eb6e72e5a41716e18796c69e00b4a59b:0", + "destination": "bcrt1qg6cl5djlpjf8ne6z88eh7rpjt2c9ttupg48l6x", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2549,11 +2524,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416057, + "block_time": 1729419095, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -2568,10 +2543,10 @@ "result": [ { "tx_index": 56, - "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", + "tx_hash": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", "block_index": 190, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2579,11 +2554,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416220, + "block_time": 1729419248, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -2592,10 +2567,10 @@ }, { "tx_index": 56, - "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", + "tx_hash": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", "block_index": 190, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2603,11 +2578,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416220, + "block_time": 1729419248, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -2616,10 +2591,10 @@ }, { "tx_index": 39, - "tx_hash": "aebd60a74f16beb780629243965a4832b6c9e75043be78503b78cb904acba5d6", + "tx_hash": "19241abee68c758ce2acf9aa205d89e2974a82660ba244e8539a1e2db77bf4f6", "block_index": 152, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "aebd60a74f16beb780629243965a4832b6c9e75043be78503b78cb904acba5d6:1", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "19241abee68c758ce2acf9aa205d89e2974a82660ba244e8539a1e2db77bf4f6:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2627,11 +2602,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416061, + "block_time": 1729419100, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -2640,10 +2615,10 @@ }, { "tx_index": 36, - "tx_hash": "29164d2e5e97a484170fd199cd18fb9fc6798b6ac00213c37ac4ae9dbc322b91", + "tx_hash": "81515ceb01d9d57d4c9c65502f478c7f3933ad32df8912f05c85977f3919ab9c", "block_index": 149, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "2df6cb6457b25d97b2a3c828c2ccdf94125693a11ccd1385a63069772b1df123:1", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "8d23f1890ae5570e81293c9c05077a8b43c14f577b2e3b74edf1f125a6764c57:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2651,11 +2626,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416048, + "block_time": 1729419086, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -2670,10 +2645,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "e755d7b8872d3d225da4d98c83eb4694a52915378b4b246272aff784b230d963", + "tx_hash": "b0bd44f210f49eeff94e14b96de922cb147dc9069d998d38e9ca17d5ad033d1d", "block_index": 151, - "source": "cdcf917d341dcb5152a735abf3e6fbe5c3f3df03e327bdacc1f0c3f858ddbbeb:0", - "destination": "bcrt1qkgcujj6uea6hshreznk6fw8e22utgsdyqd02hg", + "source": "b97859d82df08aec2a7034a1721052c7eb6e72e5a41716e18796c69e00b4a59b:0", + "destination": "bcrt1qg6cl5djlpjf8ne6z88eh7rpjt2c9ttupg48l6x", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2681,11 +2656,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416057, + "block_time": 1729419095, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -2700,9 +2675,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2711,7 +2686,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2721,7 +2696,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729416013, + "block_time": 1729419032, "asset_info": { "divisible": true, "asset_longname": null, @@ -2742,9 +2717,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2753,7 +2728,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2763,7 +2738,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729416013, + "block_time": 1729419032, "asset_info": { "divisible": true, "asset_longname": null, @@ -2783,19 +2758,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "77f26b77b205be83c57e46f437168ffa54afdd0f8fe2855da90317153ec41ae4", + "tx_hash": "c6ac5bd9f3a4f413beac1ab01476860538e1080fc55842bd6eb360ede5b96b03", "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2803,7 +2778,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2818,7 +2793,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729416013, + "block_time": 1729419032, "asset_info": { "divisible": true, "asset_longname": null, @@ -2832,19 +2807,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ea65dde6c36bf0ee93197974ace92a2b2a68a0821b6f382104f98419c6ffe544", + "tx_hash": "5b8b6d8f67be9da23119f8bb3166e1a15862ffe4ad592bfe7e4c4517034b809f", "block_index": 140, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2852,7 +2827,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2867,7 +2842,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729416009, + "block_time": 1729419028, "asset_info": { "divisible": true, "asset_longname": null, @@ -2887,19 +2862,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "77f26b77b205be83c57e46f437168ffa54afdd0f8fe2855da90317153ec41ae4", + "tx_hash": "c6ac5bd9f3a4f413beac1ab01476860538e1080fc55842bd6eb360ede5b96b03", "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2907,7 +2882,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2922,7 +2897,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729416013, + "block_time": 1729419032, "asset_info": { "divisible": true, "asset_longname": null, @@ -2936,19 +2911,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ea65dde6c36bf0ee93197974ace92a2b2a68a0821b6f382104f98419c6ffe544", + "tx_hash": "5b8b6d8f67be9da23119f8bb3166e1a15862ffe4ad592bfe7e4c4517034b809f", "block_index": 140, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2956,7 +2931,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2971,7 +2946,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729416009, + "block_time": 1729419028, "asset_info": { "divisible": true, "asset_longname": null, @@ -2991,19 +2966,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "77f26b77b205be83c57e46f437168ffa54afdd0f8fe2855da90317153ec41ae4", + "tx_hash": "c6ac5bd9f3a4f413beac1ab01476860538e1080fc55842bd6eb360ede5b96b03", "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3011,7 +2986,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3026,7 +3001,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729416013, + "block_time": 1729419032, "asset_info": { "divisible": true, "asset_longname": null, @@ -3040,19 +3015,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ea65dde6c36bf0ee93197974ace92a2b2a68a0821b6f382104f98419c6ffe544", + "tx_hash": "5b8b6d8f67be9da23119f8bb3166e1a15862ffe4ad592bfe7e4c4517034b809f", "block_index": 140, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3060,7 +3035,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3075,7 +3050,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729416009, + "block_time": 1729419028, "asset_info": { "divisible": true, "asset_longname": null, @@ -3095,19 +3070,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "77f26b77b205be83c57e46f437168ffa54afdd0f8fe2855da90317153ec41ae4", + "tx_hash": "c6ac5bd9f3a4f413beac1ab01476860538e1080fc55842bd6eb360ede5b96b03", "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3115,7 +3090,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3130,7 +3105,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729416013, + "block_time": 1729419032, "asset_info": { "divisible": true, "asset_longname": null, @@ -3144,19 +3119,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ea65dde6c36bf0ee93197974ace92a2b2a68a0821b6f382104f98419c6ffe544", + "tx_hash": "5b8b6d8f67be9da23119f8bb3166e1a15862ffe4ad592bfe7e4c4517034b809f", "block_index": 140, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3164,7 +3139,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3179,7 +3154,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729416009, + "block_time": 1729419028, "asset_info": { "divisible": true, "asset_longname": null, @@ -3198,16 +3173,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", + "tx_hash": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b", "block_index": 194, - "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", - "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "source": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "destination": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729416237, + "block_time": 1729419276, "fee_paid_normalized": "0.00600000" } ], @@ -3218,14 +3193,14 @@ "result": [ { "tx_index": 48, - "tx_hash": "bb2aa89179834fafe03acecbbade4d6fd928251f2923a59b4656957ab3685976", + "tx_hash": "e3935cf288cec52794daa26e2783ae06125ca6965f257e7d9ff3585239657033", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "transfer": false, "callable": false, "call_date": 0, @@ -3240,20 +3215,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729416112, + "block_time": 1729419150, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "55efb0e7632d7d4e2918c6d68f1a68cf6ebb205b5bf25194db11afe19f288dc0", + "tx_hash": "99d745d7b6cab56067254aafd0c9aedb86c8122f7764c92e39088c6643178415", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "transfer": false, "callable": false, "call_date": 0, @@ -3268,20 +3243,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729416107, + "block_time": 1729419146, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "915196486b240c228f8f48b8bc894be2372a5f29da06926a1aad6050d298f626", + "tx_hash": "29e7696904677d53d03bc85c345fb128b588bf78d9bc197424431a64bb383969", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "transfer": false, "callable": false, "call_date": 0, @@ -3296,20 +3271,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729416103, + "block_time": 1729419131, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "d875bf5554d034912c2a9eb7d151d9f055e3135142c077fa342ce253d4b54d3e", + "tx_hash": "82690f74f70a78c1049e4a8fb569f81e1cd0cbf656d4f1c9b006ac977558a1b7", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "transfer": false, "callable": false, "call_date": 0, @@ -3324,20 +3299,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729416098, + "block_time": 1729419127, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "68455c81e91976b50973996dd5e3b1bafeb9009b2ca1a238e4a1897afbef2d46", + "tx_hash": "c8665b67e71ee218d3415890729798887bbc54fb90e4c5e9cfeb24ce802a5b34", "msg_index": 0, "block_index": 155, "asset": "A95428958968845068", "quantity": 0, "divisible": true, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "transfer": false, "callable": false, "call_date": 0, @@ -3352,7 +3327,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729416085, + "block_time": 1729419113, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -3366,8 +3341,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 10000000000, @@ -3375,16 +3350,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729416098, - "last_issuance_block_time": 1729416107, + "first_issuance_block_time": 1729419127, + "last_issuance_block_time": 1729419146, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 100000000000, @@ -3392,16 +3367,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729416044, - "last_issuance_block_time": 1729416044, + "first_issuance_block_time": 1729419083, + "last_issuance_block_time": 1729419083, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 40, @@ -3409,16 +3384,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729415987, - "last_issuance_block_time": 1729415991, + "first_issuance_block_time": 1729419007, + "last_issuance_block_time": 1729419011, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 19, @@ -3426,16 +3401,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729415969, - "last_issuance_block_time": 1729415982, + "first_issuance_block_time": 1729418990, + "last_issuance_block_time": 1729419002, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 0, @@ -3443,8 +3418,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729415948, - "last_issuance_block_time": 1729415965, + "first_issuance_block_time": 1729418969, + "last_issuance_block_time": 1729418986, "supply_normalized": "0.00000000" } ], @@ -3457,8 +3432,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 10000000000, @@ -3466,16 +3441,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729416098, - "last_issuance_block_time": 1729416107, + "first_issuance_block_time": 1729419127, + "last_issuance_block_time": 1729419146, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 100000000000, @@ -3483,16 +3458,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729416044, - "last_issuance_block_time": 1729416044, + "first_issuance_block_time": 1729419083, + "last_issuance_block_time": 1729419083, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 40, @@ -3500,16 +3475,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729415987, - "last_issuance_block_time": 1729415991, + "first_issuance_block_time": 1729419007, + "last_issuance_block_time": 1729419011, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 19, @@ -3517,16 +3492,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729415969, - "last_issuance_block_time": 1729415982, + "first_issuance_block_time": 1729418990, + "last_issuance_block_time": 1729419002, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 0, @@ -3534,8 +3509,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729415948, - "last_issuance_block_time": 1729415965, + "first_issuance_block_time": 1729418969, + "last_issuance_block_time": 1729418986, "supply_normalized": "0.00000000" } ], @@ -3548,8 +3523,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 10000000000, @@ -3557,16 +3532,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729416098, - "last_issuance_block_time": 1729416107, + "first_issuance_block_time": 1729419127, + "last_issuance_block_time": 1729419146, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 100000000000, @@ -3574,16 +3549,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729416044, - "last_issuance_block_time": 1729416044, + "first_issuance_block_time": 1729419083, + "last_issuance_block_time": 1729419083, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 40, @@ -3591,16 +3566,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729415987, - "last_issuance_block_time": 1729415991, + "first_issuance_block_time": 1729419007, + "last_issuance_block_time": 1729419011, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 19, @@ -3608,16 +3583,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729415969, - "last_issuance_block_time": 1729415982, + "first_issuance_block_time": 1729418990, + "last_issuance_block_time": 1729419002, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 0, @@ -3625,8 +3600,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729415948, - "last_issuance_block_time": 1729415965, + "first_issuance_block_time": 1729418969, + "last_issuance_block_time": 1729418986, "supply_normalized": "0.00000000" } ], @@ -3637,17 +3612,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", + "tx_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", "block_index": 193, - "block_hash": "4711586e156dc07bc446b0d13bd07197fb6073457f04e8c962b18601d7aab73c", - "block_time": 1729416233, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "block_hash": "57dfced2294a097ac30ded16acb47a12f446095f608438f62863069eb55f26a9", + "block_time": 1729419272, + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687:1", + "utxos_info": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3683,23 +3658,23 @@ }, { "tx_index": 58, - "tx_hash": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa", + "tx_hash": "f034d2fc20879fa54967667975c28e61b9e666da655c2cdeef7b284f057afff6", "block_index": 192, - "block_hash": "7ed678c7467e7efadcf543e389f591346431c76c567638ba2fc748d67b102781", - "block_time": 1729416229, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "block_hash": "3658d2f90d22c5ac539825f061b3e1485c9d4cc338f3f9f38f7f545f4254effd", + "block_time": 1729419257, + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "460a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", + "data": "468fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", "supported": true, - "utxos_info": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa:1", + "utxos_info": "f034d2fc20879fa54967667975c28e61b9e666da655c2cdeef7b284f057afff6:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", + "offer_hash": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", "status": "valid" } }, @@ -3707,17 +3682,17 @@ }, { "tx_index": 57, - "tx_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", + "tx_hash": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", "block_index": 191, - "block_hash": "2fb7daac12d57d03a72504b4a83dcdcf2526bf0ddd4ef79a494697e3933b3d32", - "block_time": 1729416224, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "block_hash": "5a79892b45761c6b06ee6c4b9265e5b99130ebf3f085b1f3f60c31c331cb99c7", + "block_time": 1729419253, + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d:1", + "utxos_info": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3753,17 +3728,17 @@ }, { "tx_index": 56, - "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", + "tx_hash": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", "block_index": 190, - "block_hash": "49031dd5afeca85d63b74c5b576803fe4396010c7929926e9d94cfc692574922", - "block_time": 1729416220, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "block_hash": "27d56f8f7a9d91d559042a50061b02cd6ae526427d0159cd054bfb1432893317", + "block_time": 1729419248, + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003803ba2dced599f88fbfa5943ac7d4ab45523f9908780b964d3e562cdc29be80c17fb47d0461efe1c5a5d80bf13d9c76ee760db64d132b5dc3f99ed263282ec400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380d64c08d96d88ea91d982fd48c18244108a8ef38f80d0f087d8a9e67fb02f22722fc8b975fb1e6c473e803dcc35a8148c4958edc036d7dbf62f22c9ee7f8c400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6:0", + "utxos_info": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3771,14 +3746,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "destination": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -3786,7 +3761,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3805,17 +3780,17 @@ }, { "tx_index": 51, - "tx_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", + "tx_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", "block_index": 185, - "block_hash": "7022f01d2361762ff7500ea66fcef11c67e5bdb88379284af1dbec2b0c29efee", - "block_time": 1729416187, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "block_hash": "696cbe8e6ec91178e31305ec01386699fd8188f612ad44cac93d7c45cac0e8c3", + "block_time": 1729419226, + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39:1", + "utxos_info": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3857,20 +3832,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "0c95334ce0b328f2ff4e1e44c4e96d503ba60b7b2b1fbabeabef5f3ac971b288", + "tx_hash": "5954cbb59b8f533b6dc597f67642fe125d0f54d58dd8bd6109079010bc39416b", "block_index": 154, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729416070, + "block_time": 1729419109, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -3892,9 +3867,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8", + "tx_hash": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b", "block_index": 184, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3909,7 +3884,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729416128, + "block_time": 1729419167, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3935,9 +3910,9 @@ }, { "tx_index": 51, - "tx_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", + "tx_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", "block_index": 188, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -3952,7 +3927,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729416201, + "block_time": 1729419239, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3978,9 +3953,9 @@ }, { "tx_index": 57, - "tx_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", + "tx_hash": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", "block_index": 192, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3995,7 +3970,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729416229, + "block_time": 1729419257, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4021,9 +3996,9 @@ }, { "tx_index": 59, - "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", + "tx_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", "block_index": 193, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4038,7 +4013,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729416233, + "block_time": 1729419272, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4069,10 +4044,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "68455c81e91976b50973996dd5e3b1bafeb9009b2ca1a238e4a1897afbef2d46", + "tx_hash": "c8665b67e71ee218d3415890729798887bbc54fb90e4c5e9cfeb24ce802a5b34", "tx_index": 42, "block_index": 155, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4097,13 +4072,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729416085 + "block_time": 1729419113 }, { - "tx_hash": "251c310af851cba2ce4a58932e7cb803aeb6a9f7a55bac9bbf688ba85a48ef28", + "tx_hash": "f38ae5c8abb6b49f9591e5eaae9ea1d072612f70aaa73853f25ba05480b5076c", "tx_index": 22, "block_index": 135, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4128,13 +4103,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729415987 + "block_time": 1729419007 }, { - "tx_hash": "dbd38cf37e8f0c24ae54d5b6169437c48f55fb84fc0583aa0d79858c0f9a69fc", + "tx_hash": "675462aae760c27fbb910a3dec263a6af7602d963a9cf8ee68a2fb5b96eba4c1", "tx_index": 18, "block_index": 131, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4159,13 +4134,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729415969 + "block_time": 1729418990 }, { - "tx_hash": "9f887ea5403be9aa383402f97d0e8f856de8951ba3327060b3af17321c9478ad", + "tx_hash": "5dbec8408aedd6f8d6d3e7996757c0f4cc868053ef22cea6e506b00fda3c0efd", "tx_index": 14, "block_index": 130, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4190,13 +4165,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729415965 + "block_time": 1729418986 }, { - "tx_hash": "bb813d64db8f65171084ffa83e7128316586ef0283b09807d288d02a0b8e58da", + "tx_hash": "a6341ea44902feb982ab97a01f0a8313fc32d0304f32bc76b50b54252f14310c", "tx_index": 10, "block_index": 125, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4221,7 +4196,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729415943 + "block_time": 1729418965 } ], "next_cursor": null, @@ -4230,127 +4205,127 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "6b50dfb9f0288a39497978e107102a20fca9269f60c348a7d3252a97951c3dfa", + "tx_hash": "27f936d6cbc64295fbb696767820d4b39f85fcf3a8bd6345ef8efaf104da5fd0", "tx_index": 23, "block_index": 136, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", - "fairminter_tx_hash": "251c310af851cba2ce4a58932e7cb803aeb6a9f7a55bac9bbf688ba85a48ef28", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "fairminter_tx_hash": "f38ae5c8abb6b49f9591e5eaae9ea1d072612f70aaa73853f25ba05480b5076c", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729415991, + "block_time": 1729419011, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false } }, { - "tx_hash": "ec08c12c9bbaea508612d23ebc7653d37f4f177f216252e62a801b65f3858840", + "tx_hash": "7bb093115a2d0176787d5a006801240eef7f4cd71b84f5f2d06733ba0119c0cc", "tx_index": 21, "block_index": 134, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", - "fairminter_tx_hash": "dbd38cf37e8f0c24ae54d5b6169437c48f55fb84fc0583aa0d79858c0f9a69fc", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "fairminter_tx_hash": "675462aae760c27fbb910a3dec263a6af7602d963a9cf8ee68a2fb5b96eba4c1", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729415982, + "block_time": 1729419002, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false } }, { - "tx_hash": "187f59a0c410f68e7a905a52efc5ca6aa0cd19f9a082e30ab709d107d8abc5a8", + "tx_hash": "b851cfca13069253a3eeaa7fde8700cce9788279140b0656644aa14fd4e778ce", "tx_index": 20, "block_index": 133, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", - "fairminter_tx_hash": "dbd38cf37e8f0c24ae54d5b6169437c48f55fb84fc0583aa0d79858c0f9a69fc", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "fairminter_tx_hash": "675462aae760c27fbb910a3dec263a6af7602d963a9cf8ee68a2fb5b96eba4c1", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729415978, + "block_time": 1729418998, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false } }, { - "tx_hash": "77cc9d1e2521b94e0c146a22a59691f4c8bc6df0a58ab18d594ecef174baa7ae", + "tx_hash": "6d92c20c614c253df720b314dc30da74be0cd96f7f70fff35c3407497f7641dc", "tx_index": 19, "block_index": 132, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", - "fairminter_tx_hash": "dbd38cf37e8f0c24ae54d5b6169437c48f55fb84fc0583aa0d79858c0f9a69fc", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "fairminter_tx_hash": "675462aae760c27fbb910a3dec263a6af7602d963a9cf8ee68a2fb5b96eba4c1", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729415974, + "block_time": 1729418994, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false } }, { - "tx_hash": "7897fbc67e359846b7309c1dca579ddb55834c4fb67acfe598508f095ce093a2", + "tx_hash": "4315c703733bd80d7b59b20487cfab9d06f9ef12566fd13539e70991cef34510", "tx_index": 15, "block_index": 127, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", - "fairminter_tx_hash": "9f887ea5403be9aa383402f97d0e8f856de8951ba3327060b3af17321c9478ad", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "fairminter_tx_hash": "5dbec8408aedd6f8d6d3e7996757c0f4cc868053ef22cea6e506b00fda3c0efd", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729415952, + "block_time": 1729418974, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false } }, { - "tx_hash": "be65810c28d4a6e23b5459a5aff489b71f797fee7c65043b9e917ebbc5897802", + "tx_hash": "9e241c300a1a56ab1d861331e00bfb7fad835c6be25cf243cd75edd3fe306672", "tx_index": 11, "block_index": 123, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", - "fairminter_tx_hash": "bb813d64db8f65171084ffa83e7128316586ef0283b09807d288d02a0b8e58da", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "fairminter_tx_hash": "a6341ea44902feb982ab97a01f0a8313fc32d0304f32bc76b50b54252f14310c", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729415935, + "block_time": 1729418956, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false } @@ -4362,22 +4337,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "be65810c28d4a6e23b5459a5aff489b71f797fee7c65043b9e917ebbc5897802", + "tx_hash": "9e241c300a1a56ab1d861331e00bfb7fad835c6be25cf243cd75edd3fe306672", "tx_index": 11, "block_index": 123, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", - "fairminter_tx_hash": "bb813d64db8f65171084ffa83e7128316586ef0283b09807d288d02a0b8e58da", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "fairminter_tx_hash": "a6341ea44902feb982ab97a01f0a8313fc32d0304f32bc76b50b54252f14310c", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729415935, + "block_time": 1729418956, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false } @@ -4392,7 +4367,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4404,7 +4379,7 @@ "btc_out": 0, "btc_change": 4999985819, "btc_fee": 14181, - "rawtransaction": "0200000000010103c53ce48053eef01253ac42a4cfc1dacea9590d7f5ca642eb72bc386212974900000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff0200000000000000002b6a29621e6b3dde212622c0a459afe4fb71be54d2c0c406189e8b0b32e7c8ffdfba33ff8b1342e906cf1e009bba052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", + "rawtransaction": "0200000000010134379ee0469de525146eef87487832d25d4786eccfd4c014c2b0261f4a6588fc00000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff0200000000000000002b6a29038f5445b352bee2a83265e33904643ebcdcdecbaf0bca734653eedf7d82aa07a2907ed3d8a446e5bf9bba052a01000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4422,23 +4397,23 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "order_match_id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2" + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "order_match_id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109" }, "name": "btcpay", - "data": "434e5452505254590b0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", + "data": "434e5452505254590bb4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999978951, "btc_fee": 18049, - "rawtransaction": "0200000000010181dba1d05d6e406dcd50aaec18beffe131d414c55d4dd3d1a51ccfef8b1a339c00000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff03b80b000000000000160014d173175d97588c462c9f66604b39d4e4f49afab000000000000000004b6a4956141941b0b8a0a913a1c95323bd320cbfeed8410c2b57aa1846c8f23c8ad83e51ab7f9f027619783855f567635718ce30ac25e0bacf1962d72093b604d6a990da52bbfdeb2bd53186c79f052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", + "rawtransaction": "020000000001013ac9254fa830022cc186b8a81e9711e9e830138f1b82fed6a5d78f4d7b414b5500000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff03b80b000000000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351800000000000000004b6a499ddc7c9e9c28e3b8fe8dee31d7214aab602159790b17c019fcc281c2de12b88d75fad8a3dd24d913525bbe0af455a3fafa1552ed1351a16f7e7ad2638a63a29e9190fb6a5e375e4b1bc79f052a01000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", - "tx1_hash": "e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", - "order_match_id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", + "tx0_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", + "tx1_hash": "f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", + "order_match_id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", "status": "valid" } } @@ -4447,7 +4422,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "quantity": 1000, "overburn": false }, @@ -4457,27 +4432,27 @@ "btc_out": 1000, "btc_change": 4999985815, "btc_fee": 13185, - "rawtransaction": "020000000001017f6caa2830d0e4ce5780f9a7c48d89867206aeb77f898b2d24f861d1a198381f00000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000" + "rawtransaction": "02000000000101099078819364d1bd6ffee494fe691081b8ec7d216d18566ffaee78b0f6382f8400000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a01000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "offer_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687" + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "offer_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da" }, "name": "cancel", - "data": "434e545250525459466eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", + "data": "434e545250525459466c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985819, "btc_fee": 14181, - "rawtransaction": "02000000000101fe1d219bc9a58fae33f85abbfe1c2e5c6f81800c082c9c9b93a747af11cee39900000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff0200000000000000002b6a29a7b79294aaa962f1893d4d7842d5fcd643ab65a66d472051bb7fda1fc143ea237b84b03aeff31408309bba052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", + "rawtransaction": "02000000000101a0026619cc15a01340ff7034b1dd615f3446caf32eb3cbe5df21c8ec3d40bf4400000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff0200000000000000002b6a2921a0609fed30e4f020d92f90fd89f3ff49b947c1e1889d036ab61bbd82156c7ba3a149aaec7fa3c00a9bba052a01000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", + "offer_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", "status": "valid" } } @@ -4486,7 +4461,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4505,7 +4480,7 @@ "btc_out": 0, "btc_change": 4999986346, "btc_fee": 13654, - "rawtransaction": "02000000000101ad3e0a3168b60c3c0f9515e21e0b5e2b57d781da219a252a933562c768306e9f00000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff020000000000000000226a20274e41fbee760596790018e0f693d806746d1e0dedfb8f93a62f07d2075b6afdaabc052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", + "rawtransaction": "02000000000101480b39575c3ae8af03eda9cef959d3c9fa8321bd166809d31d968dd7d74fde1c00000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff020000000000000000226a20ea180e87c568d394d61a2c0bbf9c94393ed3fef91ca1f7c58dc0e5f39e09287faabc052a01000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -4521,7 +4496,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qpm0krm9adpcqdeu2tmuzwdl325fr9768g564cg", + "source": "bcrt1qpt0kqhne88xpxhdekucjewsutuh8v0srmad5le", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4545,7 +4520,7 @@ "btc_out": 0, "btc_change": 4949955760, "btc_fee": 14240, - "rawtransaction": "02000000000101646bccb479cf590cc4e036bef000b0be84b1470859ea9fa4cbde76577125c243020000001600140edf61ecbd687006e78a5ef82737f1551232fb47ffffffff0200000000000000002c6a2a5943c618172e6e00a348295443d2e7f0f85fd8d92c5c0ceed2824a7ad3210a60cd2dc5a9f945829f4275b0540a27010000001600140edf61ecbd687006e78a5ef82737f1551232fb4702000000000000", + "rawtransaction": "020000000001018a76074adb09c2d37cc57169219c493040c2f343ba55a4fafd7b6af3bd13fe88020000001600140adf605e7939cc135db9b7312cba1c5f2e763e03ffffffff0200000000000000002c6a2a78c7f4d9fe6cedbf93cf5e6e4c5edce0f44ead4670c59eafc99a36fbf624434fbb12ef2ce23b97190bfbb0540a27010000001600140adf605e7939cc135db9b7312cba1c5f2e763e0302000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -4567,14 +4542,14 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -4593,7 +4568,7 @@ "btc_out": 0, "btc_change": 4999986287, "btc_fee": 13713, - "rawtransaction": "020000000001013699ad0980fe666890e0b20c6e52e67d0e6c3d902395168a80be6ed1b3e25fc200000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff020000000000000000236a217fba0aa87b9715724d9afa5d7185d276b5ec4a765b4784c0168b2149b02d38eb356fbc052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", + "rawtransaction": "0200000000010172befe6314e0252d4d5a546342b3c29900012fbb8a9252adb5e15fbded4b48ee00000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff020000000000000000236a214592ed2fce9c665a66b110835a38f2541d3e31c01631433f72f9676c3a404ec3886fbc052a01000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -4610,10 +4585,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "transfer_destination": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "lock": false, "reset": false, @@ -4626,7 +4601,7 @@ "btc_out": 546, "btc_change": 4999983749, "btc_fee": 15705, - "rawtransaction": "02000000000101040a5b6d2e0896a75657a6546999ce5ffcf0696968f05e1fe436bb2df0e3ac6100000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff032202000000000000160014d173175d97588c462c9f66604b39d4e4f49afab00000000000000000236a21220f11267d1122791192ad25b3698e85d9ee7e6a8809925982042083b08dd7d1f185b2052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", + "rawtransaction": "0200000000010141320b3b064b77e9fea5b91fa44bcc9c25aa746d78d0d0aa7ba4408c41742bfc00000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff032202000000000000160014557b2d77cc0be408f0448c0d51a68f2eb0e135180000000000000000236a219cf3441277c7dd41343a20990c64dcf383ec1d872335624f32468fc8fda59afcb285b2052a01000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -4651,16 +4626,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", 1 ], [ "MYASSETA", - "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", 2 ] ], @@ -4668,26 +4643,26 @@ "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280d173175d97588c462c9f66604b39d4e4f49afab0803ba2dced599f88fbfa5943ac7d4ab45523f990878f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e54525052545903000280557b2d77cc0be408f0448c0d51a68f2eb0e1351880d64c08d96d88ea91d982fd48c18244108a8ef38f8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945492, "btc_fee": 52508, - "rawtransaction": "02000000000104f9e2c5c25688bf8726c76d68df44e859cf98d1e7fae582ada16ebc3946678a9300000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff6ad557f7fcfdfe084d1ac97c0332c20afb11799028ec1a75af8e0b7b03fbdef800000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffffe0de37ae9f2bb605930eaeae4ac684e780d90a42e08eca70d4797dba022dfc9e00000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff22804a4999a199c6f37de0a97b5ac0271919d5b361b621baf8b15050e1ca002200000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff03e8030000000000006951210314ca80272f1d44bde992f431faf91718e09ef86d858211df77d8c0ec597b43cd2103a8b2bc6b618117c7465a64e0ad239f93f3f13d1c50bcee000b9c8ba1a75eaf5421026a1a918fbc2c6d5fb3aa96a683c6930e932f1484f06179aa0a146e66d4d4cb4053aee803000000000000695121021bca80272f1d44bde9b1835c0844002e9f89a0e1cfbb1532a0b3f938bd8fd9a9210252027450c35dfa9ed9d2971af46033eeb9456a3fa92c698f29d4eecdcb31834e21026a1a918fbc2c6d5fb3aa96a683c6930e932f1484f06179aa0a146e66d4d4cb4053ae14f316a804000000160014d173175d97588c462c9f66604b39d4e4f49afab002000002000002000002000000000000", + "rawtransaction": "02000000000104872099d46dc4ce3f6ad0c361ce9d947cb034f9d81b1801aaea2de1363bd8fe4800000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff512d67af5c060aeaf2779bd07f5c60b7672b3bd33e2915bb7dbdd0d2c926e53f00000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffffa2e4f6f8781073461dcf3ae985a590d8edec751fcebf229538f925cf7045839300000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff8ef0f89317a99912e38142a6c4f6ea380b03ed3a5ed3d6783217577798f70bc200000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff03e8030000000000006951210344f7d4bb2c81a7b02feea09c29fb3d77fdd508e35831099f77b240362bf5b8d62102a232db0d2c6e4f90afae80aa2bf0b1942c6b8b60faa643cb693b63f1685dac262103affaa19ddc10bf87091cfd5b2bb70bbf61dbbe6e47c42d281a8eb11cd006464753aee803000000000000695121034bf7d4bb2c81a7b02fcdd7f1dbc2227ba89903075cd4d698cdc3e6b9054559212103972a13db606696fd27441973a90df955ae2f99ea7455cc444b73069d043280e32103affaa19ddc10bf87091cfd5b2bb70bbf61dbbe6e47c42d281a8eb11cd006464753ae14f316a804000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "quantity": 2, "memo": "\"Hello, world!\"", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "destination": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "quantity": 1, "memo": "\"Hello, world!\"", "memo_is_hex": false @@ -4699,7 +4674,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -4716,7 +4691,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -4730,7 +4705,7 @@ "btc_out": 0, "btc_change": 4999985233, "btc_fee": 14767, - "rawtransaction": "020000000001015c1000a9495c8eaeda2787422cdadda0a39248d151b6a45c4b79b995426d202700000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff020000000000000000356a33dba46f235b2118f816db02fd0507a464e20270d7bb1ef42c5bbaa1d3a75b4ec1f289f634020926e38e887791ec30dbdab55ace51b8052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", + "rawtransaction": "0200000000010128775239981478a97966a85861e5fc1755ff978bcb0b425411c22907a40e7ddb00000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff020000000000000000356a337770e05b3aabf76a9469096af287405436f2cae0c408b9a068c9bf1c07c67d861a89a939893a087501a74d6950a8519a92572e51b8052a01000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4752,8 +4727,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "asset": "XCP", "quantity": 1000, "memo": null, @@ -4769,19 +4744,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e8803ba2dced599f88fbfa5943ac7d4ab45523f99087", + "data": "434e54525052545902000000000000000100000000000003e880d64c08d96d88ea91d982fd48c18244108a8ef38f", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985526, "btc_fee": 14474, - "rawtransaction": "02000000000101b89d93ed0aaba12e8aef6c8b5208101f643d405fd7380a46a47559f6edeb4bc000000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff020000000000000000306a2eaafd5e5b91a750f24331b4abb684b246be7488b6da07d5fe59b8c45d32a31106de40558719e5970cdcd58eb245a576b9052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", + "rawtransaction": "020000000001013aef4e61fa90767b43f53050df3b5c3606cf70c15cb9056e93f97b89906a0bb100000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff020000000000000000306a2e6d5364169c39378a5cbd37c5f7568e54c86811c7f236a73c33a7da755d47f78422c6b73cfb926cdc13735fa2568576b9052a01000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "memo": null, "quantity_normalized": "0.00001000" } @@ -4791,23 +4766,23 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e54525052545904803ba2dced599f88fbfa5943ac7d4ab45523f9908707ffff", + "data": "434e5452505254590480d64c08d96d88ea91d982fd48c18244108a8ef38f07ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986287, "btc_fee": 13713, - "rawtransaction": "02000000000101fe1d7beaaa65e8fe5b1ff462c4fa70efbd038d750f3da1b85b9ba06e5e772e1c00000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff020000000000000000236a2130e42e7060bad5c13bccdd568448eab1079b5e5dbb7e6905e3527a44b3c0e8b97f6fbc052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", + "rawtransaction": "02000000000101bccec179aa47263a72e38ff037acd33b61961a2de721ab85455c77af0ef6288900000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff020000000000000000236a2138d73af38cfb2ed202b8b53ce996892dfb014260b15177c4ddebafc7f720ce45f86fbc052a01000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "flags": 7, "memo": "ffff" } @@ -4817,8 +4792,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", - "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "destination": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "quantity": 1000 }, "name": "dispense", @@ -4827,7 +4802,7 @@ "btc_out": 1000, "btc_change": 4949852643, "btc_fee": 14357, - "rawtransaction": "02000000000101e88f6bb6a52dde2da6ab6130a52deb2ac3028ecab967566783aa080b1a91cae6020000001600143ba2dced599f88fbfa5943ac7d4ab45523f99087ffffffff03e803000000000000160014bf13d9c76ee760db64d132b5dc3f99ed263282ec00000000000000000c6a0a329d543d7dea56a04a51e3c10827010000001600143ba2dced599f88fbfa5943ac7d4ab45523f9908702000000000000", + "rawtransaction": "02000000000101329deef688fa5253ef66b18852ede9e913f8e35aa91037e9483055c5f3493e0902000000160014d64c08d96d88ea91d982fd48c18244108a8ef38fffffffff03e8030000000000001600143dcc35a8148c4958edc036d7dbf62f22c9ee7f8c00000000000000000c6a0a987ab516920b133faea7e3c1082701000000160014d64c08d96d88ea91d982fd48c18244108a8ef38f02000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -4840,7 +4815,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -4865,7 +4840,7 @@ "btc_out": 0, "btc_change": 4999985467, "btc_fee": 14533, - "rawtransaction": "02000000000101324897311064ab9bcc6991d054a3b9f8954cee8bb23c1c172b3ea601224d124c00000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff020000000000000000316a2f60fc0683cdeaead209418cea1ee595c5788630aac3082f33f93bb3f1183e7e593a74944cf918882aea74fc2014367f3bb9052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", + "rawtransaction": "0200000000010119b378c662e58853c1348d64e6eb24bea86ad258d65edea5c46e3a3066945dad00000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff020000000000000000316a2f7770f3fda885000fecf9982d1bd5470fcfe09b713f5ab032aba6a04c462c7e62318cde01a00ffff3a8c2d24e4f38ca3bb9052a01000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -4894,13 +4869,13 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -4912,7 +4887,7 @@ "btc_out": 0, "btc_change": 4999987049, "btc_fee": 12951, - "rawtransaction": "02000000000101bd7d44cb1a8cce8ddb850f0b3cb93f096a225a11be18289ea95e72f05f834bd300000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff020000000000000000166a14e78eedfba3389cc0de2378c44d755fc1b88fc7be69bf052a01000000160014d173175d97588c462c9f66604b39d4e4f49afab002000000000000", + "rawtransaction": "02000000000101aa8f3dc7530a42a6d54ec70ec455b82ffdd975d2b57553f9efefeb7cfbaccc9600000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff020000000000000000166a142eaf0bc20ec8c24db516a8d68d159aa278543cad69bf052a01000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -4926,8 +4901,8 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630:1", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "be18eb1f6e1b54bd8664947ea547ecd06aaaddf36cfee98d705829f2cb6ad6df:0", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -4940,12 +4915,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e545250525459646263727431713639653377687668747a78797674796c766573796b777735756e3666343734737274636632337c333631383937323333363735656637636233303366636164623037663931663937383061633764383763666164306264353332306230623961396466393633303a317c5843507c31303030", + "data": "434e545250525459646263727431713234616a3661377670306a7133757a793373783472663530393663777a64676374786b7263387c626531386562316636653162353462643836363439343765613534376563643036616161646466333663666565393864373035383239663263623661643664663a307c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999918531, "btc_fee": 78469, - "rawtransaction": "02000000000106da251f016c64930c9b89bcdb4d1851875eb521a1daa3a9756822852ac19bdb1800000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffffb066a01e205eaa38a0d6dd853b8471c40590ad52acc873e4d2955640ea7d288400000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff592e5fb090da16fc1a736149bfc1375fb8b7d112d90c50e3fd09ca564766ec7300000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffffcde3d5cb4d236718f5743f534d72af2257a915ead8ed8d644ed440ca20e5021500000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff6afeeb0964b35520fd7ccd0e26ff5a478fb095a31f3f27f4d2042eef60de307900000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffffeba0072600681eb10d96a09cfd7b2d029c949be6418e6c7f1d880da3cdfec48c00000000160014d173175d97588c462c9f66604b39d4e4f49afab0ffffffff04e80300000000000069512103516fd33a2620b650f990b844b426a3cca4b1220d2ab75122fa417948f498254f2102db35eb7e1d6bfef986886ccc46f7bc295baa8dbe8fa45bd358f5311270de23bb21026a1a918fbc2c6d5fb3aa96a683c6930e932f1484f06179aa0a146e66d4d4cb4053aee80300000000000069512102516fd33a2620b650f9c7e911f167f7dba5eb250d6dec4129ef5f6301b58a659321028625b73a5c30e8ed84993acd43a5ea7918ba9de8daa458cd5ba1394b708d771221026a1a918fbc2c6d5fb3aa96a683c6930e932f1484f06179aa0a146e66d4d4cb4053aee803000000000000695121037b6fd33a2620b650f9cdec14f668a3c1cacb17426cef177a8e3b013182ec5c362103b7438e0d6400898eb3fd02fa20c38b1d28d8f9dde99668af6bc3002a49e9116d21026a1a918fbc2c6d5fb3aa96a683c6930e932f1484f06179aa0a146e66d4d4cb4053aec36d22fc06000000160014d173175d97588c462c9f66604b39d4e4f49afab002000002000002000002000002000002000000000000", + "rawtransaction": "0200000000010630dcdc266cd86fabe3b8ab5e25df57e4c5cfa946e8186bf4bbea813ec4561fed00000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff5a6be5e1f5af695aefa60d94b1492c99bd42a437ed966f05a7a130520cfe6ba900000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff4bda285c4094cdfe2eab438e2a0934ed50bccade6f0dab8915efc41c963edce900000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffffb27fe2cf50f9acdc84d3f7cc4aa3a202dcafd338aaf49df482ac5c267eef006200000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff9c937712c574e688348ecc1802eb78f78aa7810f24143835f9bee6aac970ad0100000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff78871c3829dcefbc03fa10a30ff9b64a490e99a84d9170997a4946aa581606b500000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff04e803000000000000695121025bef3a5bcc2da7ee4be733d8c975743a4a8c856bc1c65327f9cda79dcf7d88192103178ba980fa6c935472863ee09b6f298a47eb1aac9dcc74f80bfc9876f1063fc92103affaa19ddc10bf87091cfd5b2bb70bbf61dbbe6e47c42d281a8eb11cd006464753aee803000000000000695121025bef3a5bcc2da7ee4be567de8a63707f1adcdc37c1935d65be98acd9c83f97a021020ddceaceaf7f940526d93bb58f7328881da706f0df9a74b650ff9b2df6526f232103affaa19ddc10bf87091cfd5b2bb70bbf61dbbe6e47c42d281a8eb11cd006464753aee8030000000000006951210371ef3a5bcc2da7ee4be767dfdd3b753720fbb47dc697546189fdcdecfc08f2dd21026eb8daf8ce1ef56142bf0883ec154ded249f62c7efaf4c846999a94e94640ece2103affaa19ddc10bf87091cfd5b2bb70bbf61dbbe6e47c42d281a8eb11cd006464753aec36d22fc06000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -4958,8 +4933,8 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", - "destination": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", + "destination": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -4972,12 +4947,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964396162343733303664626437636262323563336637656239313062316363396434306131303136313630336162666365623166376339616365303336633238373a307c6263727431713639653377687668747a78797674796c766573796b777735756e3666343734737274636632337c5843507c31303030", + "data": "434e54525052545964303261383361623766643037353237666236636230626230643163613337643361373666613235303433643031393463663866323237623266353233636538393a307c6263727431713234616a3661377670306a7133757a793373783472663530393663777a64676374786b7263387c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, "btc_change": 4950030353, "btc_fee": 46647, - "rawtransaction": "020000000001031dcc49f47a7ff47acaaeae0040a10a382e65d6cd5b0541beb7bcaae2304bf75201000000160014d8738784ceb0bcf1708fd9c365706baff86fe9daffffffff646bccb479cf590cc4e036bef000b0be84b1470859ea9fa4cbde76577125c24300000000160014d8738784ceb0bcf1708fd9c365706baff86fe9daffffffffcfcd551e911150685480191dcf49c3def503f054d25a500e3bc308f875a272d901000000160014d8738784ceb0bcf1708fd9c365706baff86fe9daffffffff04e803000000000000695121027e1bbe0dfa426953325d01c5a12edf0d531302ef1ca34003ddff639c9f1f789b2103118621f99041904226793b95dd93394685ab12314fb2f84e4eb8b39e13ade283210389838601a2094d7754eab86e828612cb164a4237ebf9a8746314acbca1bafd2f53aee803000000000000695121027e1bbe0dfa426953325a01c5a07fd80d554654b54fae131dddae248b9d0879ed21024d812bbfc855c9553f3826d7998b6400d1ee5a6c08f6ac5946edb0c815ffa694210389838601a2094d7754eab86e828612cb164a4237ebf9a8746314acbca1bafd2f53aee80300000000000069512102541bbe0dfa426953324b4cc7a528db423b6636f149a41351bfcd56ffac794fa3210374e418c8a023a12145405fa1edf20876b49d23077f81992c28dbd6fc22cbd5c7210389838601a2094d7754eab86e828612cb164a4237ebf9a8746314acbca1bafd2f53ae11780b2701000000160014d8738784ceb0bcf1708fd9c365706baff86fe9da02000002000002000000000000", + "rawtransaction": "02000000000103c44e3a56a63826b2dbfd1a63be0925eece0ae9140c72e520728421038a5d14e801000000160014be349a1393f05baf3bf827e20714733ce47e0a21ffffffff8a76074adb09c2d37cc57169219c493040c2f343ba55a4fafd7b6af3bd13fe8800000000160014be349a1393f05baf3bf827e20714733ce47e0a21ffffffff19eb293896eb217d94e36694ad3157ab2bc9f28a8aae3c1f7e54292e2e0d926201000000160014be349a1393f05baf3bf827e20714733ce47e0a21ffffffff04e803000000000000695121027088824e7c0765c0fab07b28837d09a77417033261d987972d5b00b5fdad6a4821020d3a3764f657241581c71e8da2662a3d251b2c0a884daafd7402b6ddd13e966a210326c408f412d836117adec973b8f41ca15fa95a3652199afab7cbea30203e4c7e53aee803000000000000695121027088824e7c0765c0fae67c78d0230ff42543006e68d482d9785e10f7afbe682621025b396d36a603335686c95cdfe02a356f6456284cdd1caaf57b55a2c18d3fc752210326c408f412d836117adec973b8f41ca15fa95a3652199afab7cbea30203e4c7e53aee803000000000000695121035a88824e7c0765c0faa03371902602ba4e63352a60de82951a3d62839ecf5a0721036f580700c7344526b6a32dec95504c5c172e1c3ebb299acc4d36d5bbe958a47b210326c408f412d836117adec973b8f41ca15fa95a3652199afab7cbea30203e4c7e53ae11780b2701000000160014be349a1393f05baf3bf827e20714733ce47e0a2102000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -4993,8 +4968,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 10000000000, @@ -5002,16 +4977,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729416098, - "last_issuance_block_time": 1729416107, + "first_issuance_block_time": 1729419127, + "last_issuance_block_time": 1729419146, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", - "owner": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "issuer": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "owner": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "divisible": true, "locked": false, "supply": 100000000000, @@ -5019,16 +4994,16 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1729416094, - "last_issuance_block_time": 1729416094, + "first_issuance_block_time": 1729419123, + "last_issuance_block_time": 1729419123, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 100000000000, @@ -5036,16 +5011,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729416044, - "last_issuance_block_time": 1729416044, + "first_issuance_block_time": 1729419083, + "last_issuance_block_time": 1729419083, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 40, @@ -5053,16 +5028,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729415987, - "last_issuance_block_time": 1729415991, + "first_issuance_block_time": 1729419007, + "last_issuance_block_time": 1729419011, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 19, @@ -5070,8 +5045,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729415969, - "last_issuance_block_time": 1729415982, + "first_issuance_block_time": 1729418990, + "last_issuance_block_time": 1729419002, "supply_normalized": "0.00000019" } ], @@ -5083,8 +5058,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 10000000000, @@ -5092,15 +5067,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1729415930, - "last_issuance_block_time": 1729415943, + "first_issuance_block_time": 1729418953, + "last_issuance_block_time": 1729418965, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "address": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5108,14 +5083,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5123,7 +5098,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -5135,7 +5110,7 @@ }, "/v2/assets//balances/
": { "result": { - "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -5154,9 +5129,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8", + "tx_hash": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b", "block_index": 184, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5171,7 +5146,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729416128, + "block_time": 1729419167, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5197,9 +5172,9 @@ }, { "tx_index": 51, - "tx_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", + "tx_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", "block_index": 188, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5214,7 +5189,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729416201, + "block_time": 1729419239, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5240,9 +5215,9 @@ }, { "tx_index": 57, - "tx_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", + "tx_hash": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", "block_index": 192, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5257,7 +5232,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729416229, + "block_time": 1729419257, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5283,9 +5258,9 @@ }, { "tx_index": 59, - "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", + "tx_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", "block_index": 193, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5300,7 +5275,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729416233, + "block_time": 1729419272, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5326,9 +5301,9 @@ }, { "tx_index": 52, - "tx_hash": "34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", + "tx_hash": "a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", "block_index": 187, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -5343,7 +5318,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729416196, + "block_time": 1729419235, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5374,13 +5349,13 @@ "/v2/assets//matches": { "result": [ { - "id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", + "id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", "tx0_index": 51, - "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", - "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "tx0_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", + "tx0_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "tx1_index": 54, - "tx1_hash": "e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", - "tx1_address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "tx1_hash": "f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", + "tx1_address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5394,7 +5369,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729416201, + "block_time": 1729419239, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5414,13 +5389,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", + "id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", "tx0_index": 51, - "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", - "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "tx0_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", + "tx0_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "tx1_index": 52, - "tx1_hash": "34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", - "tx1_address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "tx1_hash": "a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", + "tx1_address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5434,7 +5409,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729416196, + "block_time": 1729419235, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5454,13 +5429,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8_31f95069423c6c4ddfe0a4574c1a3369fb58dac7a6652ba054558eb83930ed0b", + "id": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b_97a614c1cd5ebc6475742cff5c39401b7d7a1c7b9432bf2f31b973c81a8ceeac", "tx0_index": 49, - "tx0_hash": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8", - "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "tx0_hash": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b", + "tx0_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "tx1_index": 50, - "tx1_hash": "31f95069423c6c4ddfe0a4574c1a3369fb58dac7a6652ba054558eb83930ed0b", - "tx1_address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "tx1_hash": "97a614c1cd5ebc6475742cff5c39401b7d7a1c7b9432bf2f31b973c81a8ceeac", + "tx1_address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5474,7 +5449,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729416128, + "block_time": 1729419167, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5501,20 +5476,20 @@ "result": [ { "block_index": 194, - "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "address": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", + "event": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729416237, + "block_time": 1729419276, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -5522,20 +5497,20 @@ }, { "block_index": 125, - "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "address": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "a1497078258ff9f4f88b012baeee38971b3a79972c437baf8dd53c9d4571eed2", + "event": "45c5ae041f18c2fc862a1c82ae645f4f0627dac8edf11736fa4d1533720381f7", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729415943, + "block_time": 1729418965, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -5543,20 +5518,20 @@ }, { "block_index": 124, - "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "6812bf6b8199c898a40d2bc0949e80556f9b275b19f73b96a09fd3f2f0c691f0", + "event": "fa630def9f37d80f4fb7036a427e5b2458137478095ee22a8bd99036659e19bf", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729415939, + "block_time": 1729418961, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -5564,20 +5539,20 @@ }, { "block_index": 124, - "address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "be65810c28d4a6e23b5459a5aff489b71f797fee7c65043b9e917ebbc5897802", + "event": "9e241c300a1a56ab1d861331e00bfb7fad835c6be25cf243cd75edd3fe306672", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729415939, + "block_time": 1729418961, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -5589,16 +5564,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "6812bf6b8199c898a40d2bc0949e80556f9b275b19f73b96a09fd3f2f0c691f0", + "event": "fa630def9f37d80f4fb7036a427e5b2458137478095ee22a8bd99036659e19bf", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729415939, + "block_time": 1729418961, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -5616,12 +5591,12 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62, - "utxo": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", - "utxo_address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "utxo": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", + "utxo_address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "confirmed": true, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -5633,16 +5608,16 @@ }, { "block_index": 195, - "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "address": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "849f54d8426192c0270d4d240627ba157876e3601948aed0ac24e730dcab52d7", + "event": "857b0199761f230748e7583d48033e2dcc3de8fbea85b2ca971f83f5261bd29a", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729416242, + "block_time": 1729419281, "asset_info": { "divisible": true, "asset_longname": null, @@ -5654,16 +5629,16 @@ }, { "block_index": 194, - "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", + "event": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729416237, + "block_time": 1729419276, "asset_info": { "divisible": true, "asset_longname": null, @@ -5675,16 +5650,16 @@ }, { "block_index": 194, - "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", + "event": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729416237, + "block_time": 1729419276, "asset_info": { "divisible": true, "asset_longname": null, @@ -5696,16 +5671,16 @@ }, { "block_index": 193, - "address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", + "event": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729416233, + "block_time": 1729419272, "asset_info": { "divisible": true, "asset_longname": null, @@ -5723,20 +5698,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "0c95334ce0b328f2ff4e1e44c4e96d503ba60b7b2b1fbabeabef5f3ac971b288", + "tx_hash": "5954cbb59b8f533b6dc597f67642fe125d0f54d58dd8bd6109079010bc39416b", "block_index": 154, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729416070, + "block_time": 1729419109, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -5758,14 +5733,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "a1497078258ff9f4f88b012baeee38971b3a79972c437baf8dd53c9d4571eed2", + "tx_hash": "45c5ae041f18c2fc862a1c82ae645f4f0627dac8edf11736fa4d1533720381f7", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "transfer": false, "callable": false, "call_date": 0, @@ -5780,20 +5755,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729415943, + "block_time": 1729418965, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "6812bf6b8199c898a40d2bc0949e80556f9b275b19f73b96a09fd3f2f0c691f0", + "tx_hash": "fa630def9f37d80f4fb7036a427e5b2458137478095ee22a8bd99036659e19bf", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "transfer": false, "callable": false, "call_date": 0, @@ -5808,20 +5783,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729415939, + "block_time": 1729418961, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "be65810c28d4a6e23b5459a5aff489b71f797fee7c65043b9e917ebbc5897802", + "tx_hash": "9e241c300a1a56ab1d861331e00bfb7fad835c6be25cf243cd75edd3fe306672", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "transfer": false, "callable": false, "call_date": 0, @@ -5836,20 +5811,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729415935, + "block_time": 1729418956, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "bb813d64db8f65171084ffa83e7128316586ef0283b09807d288d02a0b8e58da", + "tx_hash": "a6341ea44902feb982ab97a01f0a8313fc32d0304f32bc76b50b54252f14310c", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "transfer": false, "callable": false, "call_date": 0, @@ -5864,7 +5839,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729415930, + "block_time": 1729418953, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -5876,10 +5851,10 @@ "result": [ { "tx_index": 62, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "source": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", - "destination": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "source": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", + "destination": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5887,7 +5862,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -5900,10 +5875,10 @@ }, { "tx_index": 56, - "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", + "tx_hash": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", "block_index": 190, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5911,7 +5886,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416220, + "block_time": 1729419248, "asset_info": { "divisible": true, "asset_longname": null, @@ -5924,10 +5899,10 @@ }, { "tx_index": 55, - "tx_hash": "41940d57c4a9b1f5d0a22cb937643b5a48181fabeb27a4fe2ae5e3b102045d0f", + "tx_hash": "9e959e4d7992f9ebacdffa06990aeb2dc4ae9b61a3bce8e456f2a54430c2047a", "block_index": 189, - "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", - "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "source": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "destination": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -5935,7 +5910,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416215, + "block_time": 1729419244, "asset_info": { "divisible": true, "asset_longname": null, @@ -5948,10 +5923,10 @@ }, { "tx_index": 44, - "tx_hash": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2", + "tx_hash": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80", "block_index": 157, - "source": "d972a275f808c33b0e505ad254f003f5dec349cf1d198054685011911e55cdcf:0", - "destination": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", + "source": "62920d2e2e29547e1f3cae8a8af2c92bab5731ad9466e3947d21eb963829eb19:0", + "destination": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5959,7 +5934,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416094, + "block_time": 1729419123, "asset_info": { "divisible": true, "asset_longname": null, @@ -5972,10 +5947,10 @@ }, { "tx_index": 43, - "tx_hash": "d972a275f808c33b0e505ad254f003f5dec349cf1d198054685011911e55cdcf", + "tx_hash": "62920d2e2e29547e1f3cae8a8af2c92bab5731ad9466e3947d21eb963829eb19", "block_index": 156, - "source": "cebea8c09925ead707b16a98370c550b4a41a22723ed309d31de931fe4f62b71:0", - "destination": "d972a275f808c33b0e505ad254f003f5dec349cf1d198054685011911e55cdcf:0", + "source": "9c0d167b260df60d016e565fc425dfef009e84963c7a94841da4fd69dd1b28ad:0", + "destination": "62920d2e2e29547e1f3cae8a8af2c92bab5731ad9466e3947d21eb963829eb19:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5983,7 +5958,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416089, + "block_time": 1729419118, "asset_info": { "divisible": true, "asset_longname": null, @@ -6002,9 +5977,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6013,7 +5988,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6023,7 +5998,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729416013, + "block_time": 1729419032, "asset_info": { "divisible": true, "asset_longname": null, @@ -6039,9 +6014,9 @@ }, { "tx_index": 29, - "tx_hash": "7f6a4ca9e3d855d805ca980cee733de3d16f239f2c2e40241d4a607e55a74b86", + "tx_hash": "0c3886c49a507aedd17fd9f356a72b16d9353097e6c76fdd57bb6e87e969db10", "block_index": 142, - "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6050,7 +6025,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "origin": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6060,7 +6035,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729416017, + "block_time": 1729419037, "asset_info": { "divisible": true, "asset_longname": null, @@ -6076,9 +6051,9 @@ }, { "tx_index": 30, - "tx_hash": "8463aade5566a0f1e8c8f67bc3a36514814d844fa9a8925b244600e282392b52", + "tx_hash": "03163da185ecd4f58783c6feb8cdf29574011d5410f7983f983644aaaec1d685", "block_index": 150, - "source": "mxn9viJTMZ952ierCiR5GaQwzaXBTAAdFh", + "source": "mgm25pVEpj1Ey3H9pdvQUT6kCysXns3ZpB", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6086,10 +6061,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "3418f6969c77f8bec6ebfbddccf5f09827ad4f0155e0eda4417c4647d168a18f", - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "last_status_tx_hash": "a3c2dead7d58200fd37472fd2f94ec1d701f506e1d89f0b07418841bd75ee124", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 0, - "last_status_tx_source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "last_status_tx_source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -6097,7 +6072,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729416053, + "block_time": 1729419091, "asset_info": { "divisible": true, "asset_longname": null, @@ -6113,18 +6088,18 @@ }, { "tx_index": 33, - "tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", + "tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", "block_index": 196, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "oracle_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "last_status_tx_hash": null, - "origin": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "origin": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6134,7 +6109,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -6155,9 +6130,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6166,7 +6141,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6176,7 +6151,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729416013, + "block_time": 1729419032, "asset_info": { "divisible": true, "asset_longname": null, @@ -6204,7 +6179,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -6212,7 +6187,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -6221,7 +6196,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -6229,7 +6204,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6238,7 +6213,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -6246,7 +6221,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "address": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6255,7 +6230,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -6270,27 +6245,27 @@ { "tx_index": 62, "dispense_index": 0, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", - "destination": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "destination": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", + "dispenser_tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "oracle_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "last_status_tx_hash": null, - "origin": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "origin": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6305,7 +6280,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -6319,27 +6294,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "43c225715776decba49fea590847b184beb000f0be36e0c40c59cf79b4cc6b64", + "tx_hash": "88fe13bdf36a7bfdfaa455ba43f3c24030499c216971c57cd3c209db4a07768a", "block_index": 147, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", - "destination": "bcrt1qpm0krm9adpcqdeu2tmuzwdl325fr9768g564cg", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "destination": "bcrt1qpt0kqhne88xpxhdekucjewsutuh8v0srmad5le", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", + "dispenser_tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "oracle_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "last_status_tx_hash": null, - "origin": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "origin": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6354,7 +6329,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729416039, + "block_time": 1729419079, "asset_info": { "divisible": true, "asset_longname": null, @@ -6368,19 +6343,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "77f26b77b205be83c57e46f437168ffa54afdd0f8fe2855da90317153ec41ae4", + "tx_hash": "c6ac5bd9f3a4f413beac1ab01476860538e1080fc55842bd6eb360ede5b96b03", "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6388,7 +6363,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6403,7 +6378,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729416013, + "block_time": 1729419032, "asset_info": { "divisible": true, "asset_longname": null, @@ -6417,19 +6392,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ea65dde6c36bf0ee93197974ace92a2b2a68a0821b6f382104f98419c6ffe544", + "tx_hash": "5b8b6d8f67be9da23119f8bb3166e1a15862ffe4ad592bfe7e4c4517034b809f", "block_index": 140, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6437,7 +6412,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6452,7 +6427,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729416009, + "block_time": 1729419028, "asset_info": { "divisible": true, "asset_longname": null, @@ -6473,8 +6448,8 @@ "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "owner": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false, "supply": 0, @@ -6482,8 +6457,8 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1729416103, - "last_issuance_block_time": 1729416103, + "first_issuance_block_time": 1729419131, + "last_issuance_block_time": 1729419131, "supply_normalized": "0.00000000" } ], @@ -6493,10 +6468,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "bb813d64db8f65171084ffa83e7128316586ef0283b09807d288d02a0b8e58da", + "tx_hash": "a6341ea44902feb982ab97a01f0a8313fc32d0304f32bc76b50b54252f14310c", "tx_index": 10, "block_index": 125, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6521,7 +6496,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729415943 + "block_time": 1729418965 } ], "next_cursor": null, @@ -6530,64 +6505,64 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "a1497078258ff9f4f88b012baeee38971b3a79972c437baf8dd53c9d4571eed2", + "tx_hash": "45c5ae041f18c2fc862a1c82ae645f4f0627dac8edf11736fa4d1533720381f7", "tx_index": 13, "block_index": 125, - "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", - "fairminter_tx_hash": "bb813d64db8f65171084ffa83e7128316586ef0283b09807d288d02a0b8e58da", + "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "fairminter_tx_hash": "a6341ea44902feb982ab97a01f0a8313fc32d0304f32bc76b50b54252f14310c", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729415943, + "block_time": 1729418965, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false } }, { - "tx_hash": "6812bf6b8199c898a40d2bc0949e80556f9b275b19f73b96a09fd3f2f0c691f0", + "tx_hash": "fa630def9f37d80f4fb7036a427e5b2458137478095ee22a8bd99036659e19bf", "tx_index": 12, "block_index": 124, - "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", - "fairminter_tx_hash": "bb813d64db8f65171084ffa83e7128316586ef0283b09807d288d02a0b8e58da", + "source": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "fairminter_tx_hash": "a6341ea44902feb982ab97a01f0a8313fc32d0304f32bc76b50b54252f14310c", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729415939, + "block_time": 1729418961, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false } }, { - "tx_hash": "be65810c28d4a6e23b5459a5aff489b71f797fee7c65043b9e917ebbc5897802", + "tx_hash": "9e241c300a1a56ab1d861331e00bfb7fad835c6be25cf243cd75edd3fe306672", "tx_index": 11, "block_index": 123, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", - "fairminter_tx_hash": "bb813d64db8f65171084ffa83e7128316586ef0283b09807d288d02a0b8e58da", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "fairminter_tx_hash": "a6341ea44902feb982ab97a01f0a8313fc32d0304f32bc76b50b54252f14310c", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729415935, + "block_time": 1729418956, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false } @@ -6599,22 +6574,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "be65810c28d4a6e23b5459a5aff489b71f797fee7c65043b9e917ebbc5897802", + "tx_hash": "9e241c300a1a56ab1d861331e00bfb7fad835c6be25cf243cd75edd3fe306672", "tx_index": 11, "block_index": 123, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", - "fairminter_tx_hash": "bb813d64db8f65171084ffa83e7128316586ef0283b09807d288d02a0b8e58da", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "fairminter_tx_hash": "a6341ea44902feb982ab97a01f0a8313fc32d0304f32bc76b50b54252f14310c", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729415935, + "block_time": 1729418956, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false } @@ -6627,9 +6602,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8", + "tx_hash": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b", "block_index": 184, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6644,7 +6619,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729416128, + "block_time": 1729419167, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6670,9 +6645,9 @@ }, { "tx_index": 52, - "tx_hash": "34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", + "tx_hash": "a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", "block_index": 187, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6687,7 +6662,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729416196, + "block_time": 1729419235, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6713,9 +6688,9 @@ }, { "tx_index": 51, - "tx_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", + "tx_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", "block_index": 188, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6730,7 +6705,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729416201, + "block_time": 1729419239, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6756,9 +6731,9 @@ }, { "tx_index": 54, - "tx_hash": "e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", + "tx_hash": "f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", "block_index": 188, - "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "source": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6773,7 +6748,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729416201, + "block_time": 1729419239, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6799,9 +6774,9 @@ }, { "tx_index": 57, - "tx_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", + "tx_hash": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", "block_index": 192, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6816,7 +6791,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729416229, + "block_time": 1729419257, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6847,9 +6822,9 @@ "/v2/orders/": { "result": { "tx_index": 59, - "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", + "tx_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", "block_index": 193, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6864,7 +6839,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729416233, + "block_time": 1729419272, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6892,13 +6867,13 @@ "/v2/orders//matches": { "result": [ { - "id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", + "id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", "tx0_index": 51, - "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", - "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "tx0_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", + "tx0_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "tx1_index": 54, - "tx1_hash": "e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", - "tx1_address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "tx1_hash": "f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", + "tx1_address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -6912,7 +6887,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729416201, + "block_time": 1729419239, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6932,13 +6907,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", + "id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", "tx0_index": 51, - "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", - "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "tx0_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", + "tx0_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "tx1_index": 52, - "tx1_hash": "34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", - "tx1_address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "tx1_hash": "a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", + "tx1_address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -6952,7 +6927,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729416196, + "block_time": 1729419235, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -6979,15 +6954,15 @@ "result": [ { "tx_index": 53, - "tx_hash": "e6ca911a0b08aa83675667b9ca8e02c32aeb2da53061aba62dde2da5b66b8fe8", + "tx_hash": "093e49f3c5553048e93710a95ae3f813e9e9ed5288b166ef5352fa88f6ee9d32", "block_index": 187, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", - "destination": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "destination": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "btc_amount": 2000, - "order_match_id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", + "order_match_id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", "status": "valid", "confirmed": true, - "block_time": 1729416196, + "block_time": 1729419235, "btc_amount_normalized": "0.00002000" } ], @@ -6998,9 +6973,9 @@ "result": [ { "tx_index": 52, - "tx_hash": "34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", + "tx_hash": "a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", "block_index": 187, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7018,7 +6993,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729416196, + "block_time": 1729419235, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7044,9 +7019,9 @@ }, { "tx_index": 54, - "tx_hash": "e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", + "tx_hash": "f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", "block_index": 188, - "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "source": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -7064,7 +7039,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729416201, + "block_time": 1729419239, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7090,9 +7065,9 @@ }, { "tx_index": 49, - "tx_hash": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8", + "tx_hash": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b", "block_index": 184, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7110,7 +7085,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729416128, + "block_time": 1729419167, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7136,9 +7111,9 @@ }, { "tx_index": 51, - "tx_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", + "tx_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", "block_index": 188, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7156,7 +7131,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729416201, + "block_time": 1729419239, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7182,9 +7157,9 @@ }, { "tx_index": 57, - "tx_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", + "tx_hash": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", "block_index": 192, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7202,7 +7177,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729416229, + "block_time": 1729419257, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7233,13 +7208,13 @@ "/v2/orders///matches": { "result": [ { - "id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", + "id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", "tx0_index": 51, - "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", - "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "tx0_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", + "tx0_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "tx1_index": 54, - "tx1_hash": "e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", - "tx1_address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "tx1_hash": "f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", + "tx1_address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7256,7 +7231,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729416201, + "block_time": 1729419239, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7276,13 +7251,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", + "id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", "tx0_index": 51, - "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", - "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "tx0_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", + "tx0_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "tx1_index": 52, - "tx1_hash": "34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", - "tx1_address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "tx1_hash": "a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", + "tx1_address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7299,7 +7274,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729416196, + "block_time": 1729419235, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7319,13 +7294,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8_31f95069423c6c4ddfe0a4574c1a3369fb58dac7a6652ba054558eb83930ed0b", + "id": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b_97a614c1cd5ebc6475742cff5c39401b7d7a1c7b9432bf2f31b973c81a8ceeac", "tx0_index": 49, - "tx0_hash": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8", - "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "tx0_hash": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b", + "tx0_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "tx1_index": 50, - "tx1_hash": "31f95069423c6c4ddfe0a4574c1a3369fb58dac7a6652ba054558eb83930ed0b", - "tx1_address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "tx1_hash": "97a614c1cd5ebc6475742cff5c39401b7d7a1c7b9432bf2f31b973c81a8ceeac", + "tx1_address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7342,7 +7317,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729416128, + "block_time": 1729419167, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7368,13 +7343,13 @@ "/v2/order_matches": { "result": [ { - "id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", + "id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", "tx0_index": 51, - "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", - "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "tx0_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", + "tx0_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "tx1_index": 54, - "tx1_hash": "e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", - "tx1_address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "tx1_hash": "f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", + "tx1_address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7388,7 +7363,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729416201, + "block_time": 1729419239, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7408,13 +7383,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", + "id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", "tx0_index": 51, - "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", - "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "tx0_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", + "tx0_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "tx1_index": 52, - "tx1_hash": "34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", - "tx1_address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "tx1_hash": "a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", + "tx1_address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7428,7 +7403,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729416196, + "block_time": 1729419235, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7448,13 +7423,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8_31f95069423c6c4ddfe0a4574c1a3369fb58dac7a6652ba054558eb83930ed0b", + "id": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b_97a614c1cd5ebc6475742cff5c39401b7d7a1c7b9432bf2f31b973c81a8ceeac", "tx0_index": 49, - "tx0_hash": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8", - "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "tx0_hash": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b", + "tx0_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "tx1_index": 50, - "tx1_hash": "31f95069423c6c4ddfe0a4574c1a3369fb58dac7a6652ba054558eb83930ed0b", - "tx1_address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "tx1_hash": "97a614c1cd5ebc6475742cff5c39401b7d7a1c7b9432bf2f31b973c81a8ceeac", + "tx1_address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7468,7 +7443,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729416128, + "block_time": 1729419167, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7513,66 +7488,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "3c708852d4951ec7994feec5ab282528777c9dbf169290986261472cf1fb27fa", + "tx_hash": "aeb9c55ef28fc0085850c3f2ab1825dcc5c218dd40c691ca08b32a7f0413ef81", "block_index": 121, - "source": "bcrt1qwhyc990hruyqf3e7r3ee9xx3g558uugekpa3kw", + "source": "bcrt1qwel02ewd5s0334xz3z95wd9t2ycslyadsevzhv", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1729415925, + "block_time": 1729418948, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "9b0a770f7159fc7dd964563092a25836bcf871dd9133d1c83559069b2ac65b52", + "tx_hash": "ffeaf1b43f7569fa148705559404ea437e0b212a8024f587ec394ccaaf938315", "block_index": 120, - "source": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "source": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1729415921, + "block_time": 1729418944, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "5b40993b2bcb6a081fa6fd35f641469b274a7e873d881ccd8ee10fa6f7a19caf", + "tx_hash": "1f62d539da180fa0ed76247c29ab849571c519f9748bf0292ea54f051dc0bda9", "block_index": 119, - "source": "bcrt1qsadvwd5q5legncwy7gd0e8nzcar0xtmpjd6smx", + "source": "bcrt1qvvmxpag7eapq07zz0rua2xxaf3ph7mac4j3sql", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1729415916, + "block_time": 1729418939, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "1e5e7ad77496deeac81c1ff22674d9a02d8723b7ebb91ce1a0e4c866a85fcfbd", + "tx_hash": "dcedbaa79e315ea1c900f0458b3685e41de188628a8548e91b811c840a594afc", "block_index": 118, - "source": "bcrt1qpm0krm9adpcqdeu2tmuzwdl325fr9768g564cg", + "source": "bcrt1qpt0kqhne88xpxhdekucjewsutuh8v0srmad5le", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1729415912, + "block_time": 1729418935, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "ec570fcd1f8c5b9495121143779d9c60083708d5ab38cd85ce3c06da15639e9b", + "tx_hash": "4017707d2086d5a37548fb576553c50b86d9358b3d0d76a82700bc6cf841633b", "block_index": 117, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1729415908, + "block_time": 1729418931, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -7584,9 +7559,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7595,7 +7570,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7605,7 +7580,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729416013, + "block_time": 1729419032, "asset_info": { "divisible": true, "asset_longname": null, @@ -7621,9 +7596,9 @@ }, { "tx_index": 29, - "tx_hash": "7f6a4ca9e3d855d805ca980cee733de3d16f239f2c2e40241d4a607e55a74b86", + "tx_hash": "0c3886c49a507aedd17fd9f356a72b16d9353097e6c76fdd57bb6e87e969db10", "block_index": 142, - "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7632,7 +7607,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "origin": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7642,7 +7617,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729416017, + "block_time": 1729419037, "asset_info": { "divisible": true, "asset_longname": null, @@ -7658,9 +7633,9 @@ }, { "tx_index": 30, - "tx_hash": "8463aade5566a0f1e8c8f67bc3a36514814d844fa9a8925b244600e282392b52", + "tx_hash": "03163da185ecd4f58783c6feb8cdf29574011d5410f7983f983644aaaec1d685", "block_index": 150, - "source": "mxn9viJTMZ952ierCiR5GaQwzaXBTAAdFh", + "source": "mgm25pVEpj1Ey3H9pdvQUT6kCysXns3ZpB", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -7668,10 +7643,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "3418f6969c77f8bec6ebfbddccf5f09827ad4f0155e0eda4417c4647d168a18f", - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "last_status_tx_hash": "a3c2dead7d58200fd37472fd2f94ec1d701f506e1d89f0b07418841bd75ee124", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 0, - "last_status_tx_source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "last_status_tx_source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -7679,7 +7654,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729416053, + "block_time": 1729419091, "asset_info": { "divisible": true, "asset_longname": null, @@ -7695,18 +7670,18 @@ }, { "tx_index": 33, - "tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", + "tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", "block_index": 196, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "oracle_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "last_status_tx_hash": null, - "origin": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "origin": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7716,7 +7691,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -7737,9 +7712,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7748,7 +7723,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7758,7 +7733,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729416013, + "block_time": 1729419032, "asset_info": { "divisible": true, "asset_longname": null, @@ -7778,19 +7753,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "77f26b77b205be83c57e46f437168ffa54afdd0f8fe2855da90317153ec41ae4", + "tx_hash": "c6ac5bd9f3a4f413beac1ab01476860538e1080fc55842bd6eb360ede5b96b03", "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7798,7 +7773,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7813,7 +7788,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729416013, + "block_time": 1729419032, "asset_info": { "divisible": true, "asset_longname": null, @@ -7827,19 +7802,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ea65dde6c36bf0ee93197974ace92a2b2a68a0821b6f382104f98419c6ffe544", + "tx_hash": "5b8b6d8f67be9da23119f8bb3166e1a15862ffe4ad592bfe7e4c4517034b809f", "block_index": 140, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7847,7 +7822,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7862,7 +7837,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729416009, + "block_time": 1729419028, "asset_info": { "divisible": true, "asset_longname": null, @@ -7881,20 +7856,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "0c95334ce0b328f2ff4e1e44c4e96d503ba60b7b2b1fbabeabef5f3ac971b288", + "tx_hash": "5954cbb59b8f533b6dc597f67642fe125d0f54d58dd8bd6109079010bc39416b", "block_index": 154, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729416070, + "block_time": 1729419109, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -7915,20 +7890,20 @@ "/v2/dividends/": { "result": { "tx_index": 41, - "tx_hash": "0c95334ce0b328f2ff4e1e44c4e96d503ba60b7b2b1fbabeabef5f3ac971b288", + "tx_hash": "5954cbb59b8f533b6dc597f67642fe125d0f54d58dd8bd6109079010bc39416b", "block_index": 154, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729416070, + "block_time": 1729419109, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -7951,12 +7926,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "0c95334ce0b328f2ff4e1e44c4e96d503ba60b7b2b1fbabeabef5f3ac971b288", + "event": "5954cbb59b8f533b6dc597f67642fe125d0f54d58dd8bd6109079010bc39416b", "tx_index": 41, - "utxo": "cebea8c09925ead707b16a98370c550b4a41a22723ed309d31de931fe4f62b71:0", - "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "utxo": "9c0d167b260df60d016e565fc425dfef009e84963c7a94841da4fd69dd1b28ad:0", + "utxo_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "confirmed": true, - "block_time": 1729416070, + "block_time": 1729419109, "asset_info": { "divisible": true, "asset_longname": null, @@ -7968,16 +7943,16 @@ }, { "block_index": 154, - "address": "bcrt1qkgcujj6uea6hshreznk6fw8e22utgsdyqd02hg", + "address": "bcrt1qg6cl5djlpjf8ne6z88eh7rpjt2c9ttupg48l6x", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "0c95334ce0b328f2ff4e1e44c4e96d503ba60b7b2b1fbabeabef5f3ac971b288", + "event": "5954cbb59b8f533b6dc597f67642fe125d0f54d58dd8bd6109079010bc39416b", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729416070, + "block_time": 1729419109, "asset_info": { "divisible": true, "asset_longname": null, @@ -7998,27 +7973,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "f94b9a0cde6ac7ff4c57657df4d33d9a8f1dae9ef5de975f5df1dcc5cc851ece", - "messages_hash": "90707f8a533719986dc3f0949bda3f2eb1e3b12b4d1113e9caccbd9b4d5efb63", + "ledger_hash": "eead9d1cf4256ee6a5064148d170bd143227743df35f8eaf771be669fbacdefc", + "messages_hash": "ed329d64324602888971f8c2cfcdb14ded0ce770d8b6530880d3cdb734881033", "transaction_count": 1, - "txlist_hash": "41aa08840203abe0c1883ea81febef8fdb9238af22a71a5495b39bfc7c1db71b", - "block_time": 1729416251 + "txlist_hash": "4168e789766cc3d4a561e1a4d9324b0838ffcd186cbb040b504e385bbfab51dc", + "block_time": 1729419295 }, "tx_hash": null, "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 }, { "event_index": 562, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62 }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 }, { "event_index": 561, @@ -8027,14 +8002,14 @@ "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "destination": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "dispenser_tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -8045,9 +8020,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 }, { "event_index": 560, @@ -8056,9 +8031,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "status": 0, - "tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", + "tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", "asset_info": { "divisible": true, "asset_longname": null, @@ -8068,24 +8043,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -8095,9 +8070,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 } ], "next_cursor": 558, @@ -8109,15 +8084,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "f94b9a0cde6ac7ff4c57657df4d33d9a8f1dae9ef5de975f5df1dcc5cc851ece", - "messages_hash": "90707f8a533719986dc3f0949bda3f2eb1e3b12b4d1113e9caccbd9b4d5efb63", + "ledger_hash": "eead9d1cf4256ee6a5064148d170bd143227743df35f8eaf771be669fbacdefc", + "messages_hash": "ed329d64324602888971f8c2cfcdb14ded0ce770d8b6530880d3cdb734881033", "transaction_count": 1, - "txlist_hash": "41aa08840203abe0c1883ea81febef8fdb9238af22a71a5495b39bfc7c1db71b", - "block_time": 1729416251 + "txlist_hash": "4168e789766cc3d4a561e1a4d9324b0838ffcd186cbb040b504e385bbfab51dc", + "block_time": 1729419295 }, "tx_hash": null, "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 } }, "/v2/events/counts": { @@ -8152,16 +8127,16 @@ "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -8171,9 +8146,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 }, { "event_index": 557, @@ -8183,12 +8158,12 @@ "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "quantity": 1500000000, "tx_index": 62, - "utxo": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", - "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", - "block_time": 1729416251, + "utxo": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", + "utxo_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -8198,9 +8173,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 }, { "event_index": 554, @@ -8210,39 +8185,39 @@ "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "quantity": 1500000000, "tx_index": 62, - "utxo": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", - "utxo_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", - "block_time": 1729416251, + "utxo": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", + "utxo_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "block_time": 1729419295, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 }, { "event_index": 540, "event": "CREDIT", "params": { - "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "address": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "asset": "XCP", "block_index": 194, "calling_function": "sweep", - "event": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", + "event": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b", "quantity": 74499387833, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1729416237, + "block_time": 1729419276, "asset_info": { "divisible": true, "asset_longname": null, @@ -8252,36 +8227,36 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", + "tx_hash": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b", "block_index": 194, - "block_time": 1729416237 + "block_time": 1729419276 }, { "event_index": 538, "event": "CREDIT", "params": { - "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "address": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "asset": "MYASSETA", "block_index": 194, "calling_function": "sweep", - "event": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", + "event": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b", "quantity": 10, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1729416237, + "block_time": 1729419276, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", + "tx_hash": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b", "block_index": 194, - "block_time": 1729416237 + "block_time": 1729419276 } ], "next_cursor": 536, @@ -8298,27 +8273,27 @@ { "tx_index": 62, "dispense_index": 0, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", - "destination": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "destination": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", + "dispenser_tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "oracle_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "last_status_tx_hash": null, - "origin": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "origin": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8333,7 +8308,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -8347,27 +8322,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "43c225715776decba49fea590847b184beb000f0be36e0c40c59cf79b4cc6b64", + "tx_hash": "88fe13bdf36a7bfdfaa455ba43f3c24030499c216971c57cd3c209db4a07768a", "block_index": 147, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", - "destination": "bcrt1qpm0krm9adpcqdeu2tmuzwdl325fr9768g564cg", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "destination": "bcrt1qpt0kqhne88xpxhdekucjewsutuh8v0srmad5le", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", + "dispenser_tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "oracle_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "last_status_tx_hash": null, - "origin": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "origin": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8382,7 +8357,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729416039, + "block_time": 1729419079, "asset_info": { "divisible": true, "asset_longname": null, @@ -8396,19 +8371,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "77f26b77b205be83c57e46f437168ffa54afdd0f8fe2855da90317153ec41ae4", + "tx_hash": "c6ac5bd9f3a4f413beac1ab01476860538e1080fc55842bd6eb360ede5b96b03", "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8416,7 +8391,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8431,7 +8406,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729416013, + "block_time": 1729419032, "asset_info": { "divisible": true, "asset_longname": null, @@ -8445,19 +8420,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ea65dde6c36bf0ee93197974ace92a2b2a68a0821b6f382104f98419c6ffe544", + "tx_hash": "5b8b6d8f67be9da23119f8bb3166e1a15862ffe4ad592bfe7e4c4517034b809f", "block_index": 140, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "361897233675ef7cb303fcadb07f91f9780ac7d87cfad0bd5320b0b9a9df9630", + "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8465,7 +8440,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8480,7 +8455,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729416009, + "block_time": 1729419028, "asset_info": { "divisible": true, "asset_longname": null, @@ -8499,10 +8474,10 @@ "result": [ { "tx_index": 62, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "source": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", - "destination": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "source": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", + "destination": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -8510,7 +8485,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -8523,10 +8498,10 @@ }, { "tx_index": 62, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "source": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", - "destination": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "source": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", + "destination": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -8534,11 +8509,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -8547,10 +8522,10 @@ }, { "tx_index": 56, - "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", + "tx_hash": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", "block_index": 190, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "asset": "XCP", "quantity": 10, "status": "valid", @@ -8558,7 +8533,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416220, + "block_time": 1729419248, "asset_info": { "divisible": true, "asset_longname": null, @@ -8571,10 +8546,10 @@ }, { "tx_index": 56, - "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", + "tx_hash": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", "block_index": 190, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8582,11 +8557,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416220, + "block_time": 1729419248, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -8595,10 +8570,10 @@ }, { "tx_index": 56, - "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", + "tx_hash": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", "block_index": 190, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "destination": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8606,11 +8581,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729416220, + "block_time": 1729419248, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -8625,14 +8600,14 @@ "result": [ { "tx_index": 48, - "tx_hash": "bb2aa89179834fafe03acecbbade4d6fd928251f2923a59b4656957ab3685976", + "tx_hash": "e3935cf288cec52794daa26e2783ae06125ca6965f257e7d9ff3585239657033", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "transfer": false, "callable": false, "call_date": 0, @@ -8647,20 +8622,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729416112, + "block_time": 1729419150, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "55efb0e7632d7d4e2918c6d68f1a68cf6ebb205b5bf25194db11afe19f288dc0", + "tx_hash": "99d745d7b6cab56067254aafd0c9aedb86c8122f7764c92e39088c6643178415", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "transfer": false, "callable": false, "call_date": 0, @@ -8675,20 +8650,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729416107, + "block_time": 1729419146, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "915196486b240c228f8f48b8bc894be2372a5f29da06926a1aad6050d298f626", + "tx_hash": "29e7696904677d53d03bc85c345fb128b588bf78d9bc197424431a64bb383969", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "transfer": false, "callable": false, "call_date": 0, @@ -8703,20 +8678,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729416103, + "block_time": 1729419131, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "d875bf5554d034912c2a9eb7d151d9f055e3135142c077fa342ce253d4b54d3e", + "tx_hash": "82690f74f70a78c1049e4a8fb569f81e1cd0cbf656d4f1c9b006ac977558a1b7", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "transfer": false, "callable": false, "call_date": 0, @@ -8731,20 +8706,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729416098, + "block_time": 1729419127, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 44, - "tx_hash": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2", + "tx_hash": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80", "msg_index": 0, "block_index": 157, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", - "issuer": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "source": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "issuer": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "transfer": false, "callable": false, "call_date": 0, @@ -8759,7 +8734,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729416094, + "block_time": 1729419123, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -8770,14 +8745,14 @@ "/v2/issuances/": { "result": { "tx_index": 48, - "tx_hash": "bb2aa89179834fafe03acecbbade4d6fd928251f2923a59b4656957ab3685976", + "tx_hash": "e3935cf288cec52794daa26e2783ae06125ca6965f257e7d9ff3585239657033", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "transfer": false, "callable": false, "call_date": 0, @@ -8792,7 +8767,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729416112, + "block_time": 1729419150, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -8801,16 +8776,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", + "tx_hash": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b", "block_index": 194, - "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", - "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "source": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "destination": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729416237, + "block_time": 1729419276, "fee_paid_normalized": "0.00600000" } ], @@ -8821,16 +8796,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", + "tx_hash": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b", "block_index": 194, - "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", - "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "source": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "destination": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729416237, + "block_time": 1729419276, "fee_paid_normalized": "0.00600000" } ], @@ -8841,9 +8816,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "1945e07d63301090025795858c49fef361dfc2d9851d9e074cc4215d9d91255f", + "tx_hash": "fcd3ac244dcdca9116bd6de331c88e6b7fc07a65cbc5f45a7f4f2731ad085430", "block_index": 138, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8851,14 +8826,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729416000, + "block_time": 1729419020, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "674a65a64a4826a0b0d490aca3e07b7fd65869b1649206fa97265a826ed95b11", + "tx_hash": "d0aca4399eb6a0726cf88725563432f6ab5e40ed7b526c9a96ce23e4881a0b1e", "block_index": 137, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -8866,7 +8841,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729415995, + "block_time": 1729419015, "fee_fraction_int_normalized": "0.00000000" } ], @@ -8876,9 +8851,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "1945e07d63301090025795858c49fef361dfc2d9851d9e074cc4215d9d91255f", + "tx_hash": "fcd3ac244dcdca9116bd6de331c88e6b7fc07a65cbc5f45a7f4f2731ad085430", "block_index": 138, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8886,17 +8861,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729416000, + "block_time": 1729419020, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "68455c81e91976b50973996dd5e3b1bafeb9009b2ca1a238e4a1897afbef2d46", + "tx_hash": "c8665b67e71ee218d3415890729798887bbc54fb90e4c5e9cfeb24ce802a5b34", "tx_index": 42, "block_index": 155, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -8921,13 +8896,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729416085 + "block_time": 1729419113 }, { - "tx_hash": "251c310af851cba2ce4a58932e7cb803aeb6a9f7a55bac9bbf688ba85a48ef28", + "tx_hash": "f38ae5c8abb6b49f9591e5eaae9ea1d072612f70aaa73853f25ba05480b5076c", "tx_index": 22, "block_index": 135, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -8952,13 +8927,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729415987 + "block_time": 1729419007 }, { - "tx_hash": "dbd38cf37e8f0c24ae54d5b6169437c48f55fb84fc0583aa0d79858c0f9a69fc", + "tx_hash": "675462aae760c27fbb910a3dec263a6af7602d963a9cf8ee68a2fb5b96eba4c1", "tx_index": 18, "block_index": 131, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -8983,13 +8958,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729415969 + "block_time": 1729418990 }, { - "tx_hash": "9f887ea5403be9aa383402f97d0e8f856de8951ba3327060b3af17321c9478ad", + "tx_hash": "5dbec8408aedd6f8d6d3e7996757c0f4cc868053ef22cea6e506b00fda3c0efd", "tx_index": 14, "block_index": 130, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -9014,13 +8989,13 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729415965 + "block_time": 1729418986 }, { - "tx_hash": "bb813d64db8f65171084ffa83e7128316586ef0283b09807d288d02a0b8e58da", + "tx_hash": "a6341ea44902feb982ab97a01f0a8313fc32d0304f32bc76b50b54252f14310c", "tx_index": 10, "block_index": 125, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -9045,7 +9020,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729415943 + "block_time": 1729418965 } ], "next_cursor": null, @@ -9054,106 +9029,106 @@ "/v2/fairmints": { "result": [ { - "tx_hash": "6b50dfb9f0288a39497978e107102a20fca9269f60c348a7d3252a97951c3dfa", + "tx_hash": "27f936d6cbc64295fbb696767820d4b39f85fcf3a8bd6345ef8efaf104da5fd0", "tx_index": 23, "block_index": 136, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", - "fairminter_tx_hash": "251c310af851cba2ce4a58932e7cb803aeb6a9f7a55bac9bbf688ba85a48ef28", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "fairminter_tx_hash": "f38ae5c8abb6b49f9591e5eaae9ea1d072612f70aaa73853f25ba05480b5076c", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729415991, + "block_time": 1729419011, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false } }, { - "tx_hash": "ec08c12c9bbaea508612d23ebc7653d37f4f177f216252e62a801b65f3858840", + "tx_hash": "7bb093115a2d0176787d5a006801240eef7f4cd71b84f5f2d06733ba0119c0cc", "tx_index": 21, "block_index": 134, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", - "fairminter_tx_hash": "dbd38cf37e8f0c24ae54d5b6169437c48f55fb84fc0583aa0d79858c0f9a69fc", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "fairminter_tx_hash": "675462aae760c27fbb910a3dec263a6af7602d963a9cf8ee68a2fb5b96eba4c1", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729415982, + "block_time": 1729419002, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false } }, { - "tx_hash": "187f59a0c410f68e7a905a52efc5ca6aa0cd19f9a082e30ab709d107d8abc5a8", + "tx_hash": "b851cfca13069253a3eeaa7fde8700cce9788279140b0656644aa14fd4e778ce", "tx_index": 20, "block_index": 133, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", - "fairminter_tx_hash": "dbd38cf37e8f0c24ae54d5b6169437c48f55fb84fc0583aa0d79858c0f9a69fc", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "fairminter_tx_hash": "675462aae760c27fbb910a3dec263a6af7602d963a9cf8ee68a2fb5b96eba4c1", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729415978, + "block_time": 1729418998, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false } }, { - "tx_hash": "77cc9d1e2521b94e0c146a22a59691f4c8bc6df0a58ab18d594ecef174baa7ae", + "tx_hash": "6d92c20c614c253df720b314dc30da74be0cd96f7f70fff35c3407497f7641dc", "tx_index": 19, "block_index": 132, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", - "fairminter_tx_hash": "dbd38cf37e8f0c24ae54d5b6169437c48f55fb84fc0583aa0d79858c0f9a69fc", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "fairminter_tx_hash": "675462aae760c27fbb910a3dec263a6af7602d963a9cf8ee68a2fb5b96eba4c1", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729415974, + "block_time": 1729418994, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false } }, { - "tx_hash": "3c243ab902c141cee432205867f5e8b017982288a7857714a37cdfeb5c583742", + "tx_hash": "b42956a53cd087cdbd64c8e1b3444907d632c8beaab2790a2a1707d469dbcd1d", "tx_index": 17, "block_index": 129, - "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", - "fairminter_tx_hash": "9f887ea5403be9aa383402f97d0e8f856de8951ba3327060b3af17321c9478ad", + "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "fairminter_tx_hash": "5dbec8408aedd6f8d6d3e7996757c0f4cc868053ef22cea6e506b00fda3c0efd", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729415961, + "block_time": 1729418982, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false } @@ -9164,22 +9139,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "6b50dfb9f0288a39497978e107102a20fca9269f60c348a7d3252a97951c3dfa", + "tx_hash": "27f936d6cbc64295fbb696767820d4b39f85fcf3a8bd6345ef8efaf104da5fd0", "tx_index": 23, "block_index": 136, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", - "fairminter_tx_hash": "251c310af851cba2ce4a58932e7cb803aeb6a9f7a55bac9bbf688ba85a48ef28", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "fairminter_tx_hash": "f38ae5c8abb6b49f9591e5eaae9ea1d072612f70aaa73853f25ba05480b5076c", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729415991, + "block_time": 1729419011, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false } @@ -9193,8 +9168,8 @@ "value": 4949970000, "confirmations": 50, "amount": 49.4997, - "txid": "43c225715776decba49fea590847b184beb000f0be36e0c40c59cf79b4cc6b64", - "address": "bcrt1qpm0krm9adpcqdeu2tmuzwdl325fr9768g564cg" + "txid": "88fe13bdf36a7bfdfaa455ba43f3c24030499c216971c57cd3c209db4a07768a", + "address": "bcrt1qpt0kqhne88xpxhdekucjewsutuh8v0srmad5le" }, { "vout": 2, @@ -9202,8 +9177,8 @@ "value": 100000, "confirmations": 40, "amount": 0.001, - "txid": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2", - "address": "bcrt1qsadvwd5q5legncwy7gd0e8nzcar0xtmpjd6smx" + "txid": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80", + "address": "bcrt1qvvmxpag7eapq07zz0rua2xxaf3ph7mac4j3sql" } ], "next_cursor": null, @@ -9212,28 +9187,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "41940d57c4a9b1f5d0a22cb937643b5a48181fabeb27a4fe2ae5e3b102045d0f" + "tx_hash": "f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109" }, { - "tx_hash": "2df6cb6457b25d97b2a3c828c2ccdf94125693a11ccd1385a63069772b1df123" + "tx_hash": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b" }, { - "tx_hash": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024" + "tx_hash": "8d23f1890ae5570e81293c9c05077a8b43c14f577b2e3b74edf1f125a6764c57" }, { - "tx_hash": "4ca32aa99d8580d669b23533fc8915333ca201ca36a675d0713d4412a1d43d77" + "tx_hash": "9e959e4d7992f9ebacdffa06990aeb2dc4ae9b61a3bce8e456f2a54430c2047a" }, { - "tx_hash": "a744820b0b584d066a290e88a83e879d7632baf3894ca06daf56aeab5281ebb7" + "tx_hash": "b97859d82df08aec2a7034a1721052c7eb6e72e5a41716e18796c69e00b4a59b" }, { - "tx_hash": "cdcf917d341dcb5152a735abf3e6fbe5c3f3df03e327bdacc1f0c3f858ddbbeb" + "tx_hash": "f34d6f9e951e1f65aeec2550ceeaefec67e13aa7c7ec069886aa14e508a81fab" }, { - "tx_hash": "6812bf6b8199c898a40d2bc0949e80556f9b275b19f73b96a09fd3f2f0c691f0" + "tx_hash": "fa630def9f37d80f4fb7036a427e5b2458137478095ee22a8bd99036659e19bf" }, { - "tx_hash": "e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2" + "tx_hash": "d5655c17204f4afcd976f8e236802d6ba005c5eb6c5c851c9f9df06a67b362cc" } ], "next_cursor": null, @@ -9242,7 +9217,7 @@ "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { "block_index": 8, - "tx_hash": "fa9544479a11d9853792beb7c26938301dd85ee82f3a8d9a4f3495b4c5e42512" + "tx_hash": "2cc5d11d7cf036554b2248d330e894ac68203a296a5a937032a5a04a9fbd98ed" } }, "/v2/bitcoin/addresses/
/utxos": { @@ -9253,17 +9228,17 @@ "value": 4949970000, "confirmations": 50, "amount": 49.4997, - "txid": "43c225715776decba49fea590847b184beb000f0be36e0c40c59cf79b4cc6b64" + "txid": "88fe13bdf36a7bfdfaa455ba43f3c24030499c216971c57cd3c209db4a07768a" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "026a1a918fbc2c6d5fb3aa96a683c6930e932f1484f06179aa0a146e66d4d4cb40" + "result": "03affaa19ddc10bf87091cfd5b2bb70bbf61dbbe6e47c42d281a8eb11cd0064647" }, "/v2/bitcoin/transactions/": { - "result": "02000000000101c2521e5851fa91a88dcab7d1cdeb177b78e1187975db3f54e8704b95d235493c0100000000ffffffff03e803000000000000160014d8738784ceb0bcf1708fd9c365706baff86fe9da00000000000000000c6a0a7f8e9e8ef534ab6d96e8dced08270100000016001467aa929a8ea1b72138c4a091440afffcf0ebeb160247304402201510ffaba3089e65d1da3d6a3475dc6b6694a9a2fcb0da86c18cb2884ea6eb1b022061ade669879bbe17147ea02e83b8a55f690d02ea1673da16a5bb4ea006af4897012103101e7eeabdd5073988f3ffc0f17d1ed34e6754fb80183bcf5a60f1698898086600000000" + "result": "02000000000101802bd33d1bb2543a4cfb359de84596424d69397eed30b436ebc98f16af8c2fe60100000000ffffffff03e803000000000000160014be349a1393f05baf3bf827e20714733ce47e0a2100000000000000000c6a0a4533ae9c62bb15aa58a3dced08270100000016001463bc647fb95b1a8caaaf070fd47b389e6eff23240247304402201f8dee0903c0db6d0d7fdd76ba352904f8c9fbb00bc2342ace11312d2cb3e05f02201f0ab9fd9b6ff44fff1c8d12bb74ad3f3b0b790c30c3e1f6b11b40aa6952fb5101210209d94ed54c33b6494134dd0fd179ad960f0c4cb1fe3ad5c8b7011adfaa0f90cb00000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 58603 @@ -9286,27 +9261,27 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "tx_index": 63 }, - "timestamp": 1729416255.7714357 + "timestamp": 1729419299.9227293 }, { - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "destination": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "memo": null, "quantity": 10000, - "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "status": "valid", - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "tx_index": 63, "asset_info": { "divisible": true, @@ -9317,22 +9292,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729416255.7714357 + "timestamp": 1729419299.9227293 }, { - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "event": "CREDIT", "params": { - "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "event": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -9342,22 +9317,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729416255.7714357 + "timestamp": 1729419299.9227293 }, { - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "address": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "asset": "XCP", "block_index": 196, - "event": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "event": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -9367,30 +9342,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729416255.7714357 + "timestamp": 1729419299.9227293 }, { - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729416255.7714357, + "block_time": 1729419299.9227293, "btc_amount": 0, - "data": "020000000000000001000000000000271080b964d3e562cdc29be80c17fb47d0461efe1c5a5d", + "data": "020000000000000001000000000000271080d0f087d8a9e67fb02f22722fc8b975fb1e6c473e", "destination": "", "fee": 10000, - "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "tx_index": 63, - "utxos_info": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836:1", + "utxos_info": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "memo": null, "asset_info": { "divisible": true, @@ -9404,7 +9379,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729416255.7714357 + "timestamp": 1729419299.9227293 } ], "next_cursor": null, @@ -9413,19 +9388,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "event": "CREDIT", "params": { - "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "event": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -9435,7 +9410,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729416255.7714357 + "timestamp": 1729419299.9227293 } ], "next_cursor": null, @@ -9444,27 +9419,27 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "tx_index": 63 }, - "timestamp": 1729416255.7714357 + "timestamp": 1729419299.9227293 }, { - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "destination": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "memo": null, "quantity": 10000, - "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "status": "valid", - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "tx_index": 63, "asset_info": { "divisible": true, @@ -9475,22 +9450,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729416255.7714357 + "timestamp": 1729419299.9227293 }, { - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "event": "CREDIT", "params": { - "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "event": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -9500,22 +9475,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729416255.7714357 + "timestamp": 1729419299.9227293 }, { - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "address": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "asset": "XCP", "block_index": 196, - "event": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "event": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -9525,30 +9500,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729416255.7714357 + "timestamp": 1729419299.9227293 }, { - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729416255.7714357, + "block_time": 1729419299.9227293, "btc_amount": 0, - "data": "020000000000000001000000000000271080b964d3e562cdc29be80c17fb47d0461efe1c5a5d", + "data": "020000000000000001000000000000271080d0f087d8a9e67fb02f22722fc8b975fb1e6c473e", "destination": "", "fee": 10000, - "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", - "tx_hash": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836", + "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", "tx_index": 63, - "utxos_info": "a4f32f82131100f6a485d750f0c03288eff0412be63434469ea2315890c4b836:1", + "utxos_info": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "memo": null, "asset_info": { "divisible": true, @@ -9562,7 +9537,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729416255.7714357 + "timestamp": 1729419299.9227293 } ], "next_cursor": null, @@ -9584,15 +9559,15 @@ "event_index": 550, "event": "NEW_BLOCK", "params": { - "block_hash": "6507d71596a5bde486e1a5c1e33be2c96c037acf161f1c5cb41cd6e966e2d3a2", + "block_hash": "26010869f45387e5100f965afbf68e7ac474fd78998b5120bd34d7046c79ae6f", "block_index": 196, - "block_time": 1729416251, + "block_time": 1729419295, "difficulty": 545259519, - "previous_block_hash": "3ecdd06511d985f7dd0ec1b9070e68ab57bd0c147b76d85bc1ac386a188c75a3" + "previous_block_hash": "45a86bea1b49d417d16f0cf58b6a3caa438b49eb73a1150d3654da0866e1c113" }, "tx_hash": null, "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 } ], "next_cursor": 544, @@ -9604,17 +9579,17 @@ "event_index": 551, "event": "NEW_TRANSACTION", "params": { - "block_hash": "6507d71596a5bde486e1a5c1e33be2c96c037acf161f1c5cb41cd6e966e2d3a2", + "block_hash": "26010869f45387e5100f965afbf68e7ac474fd78998b5120bd34d7046c79ae6f", "block_index": 196, - "block_time": 1729416251, + "block_time": 1729419295, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "destination": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "fee": 0, - "source": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "source": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62, - "utxos_info": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1 9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "utxos_info": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1 02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9624,9 +9599,9 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 } ], "next_cursor": 545, @@ -9640,16 +9615,16 @@ "params": { "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "destination": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "out_index": 0, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62, - "block_time": 1729416251, + "block_time": 1729419295, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 } ], "next_cursor": 277, @@ -9662,15 +9637,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "f94b9a0cde6ac7ff4c57657df4d33d9a8f1dae9ef5de975f5df1dcc5cc851ece", - "messages_hash": "90707f8a533719986dc3f0949bda3f2eb1e3b12b4d1113e9caccbd9b4d5efb63", + "ledger_hash": "eead9d1cf4256ee6a5064148d170bd143227743df35f8eaf771be669fbacdefc", + "messages_hash": "ed329d64324602888971f8c2cfcdb14ded0ce770d8b6530880d3cdb734881033", "transaction_count": 1, - "txlist_hash": "41aa08840203abe0c1883ea81febef8fdb9238af22a71a5495b39bfc7c1db71b", - "block_time": 1729416251 + "txlist_hash": "4168e789766cc3d4a561e1a4d9324b0838ffcd186cbb040b504e385bbfab51dc", + "block_time": 1729419295 }, "tx_hash": null, "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 } ], "next_cursor": 549, @@ -9683,12 +9658,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62 }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 } ], "next_cursor": 548, @@ -9704,12 +9679,12 @@ "address": null, "asset": "XCP", "block_index": 196, - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "quantity": 1500000000, "tx_index": 62, - "utxo": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", - "utxo_address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", - "block_time": 1729416251, + "utxo": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", + "utxo_address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -9719,9 +9694,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 } ], "next_cursor": 553, @@ -9733,16 +9708,16 @@ "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -9752,9 +9727,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 } ], "next_cursor": 557, @@ -9768,14 +9743,14 @@ "params": { "asset": "XCP", "block_index": 189, - "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "destination": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "memo": null, "quantity": 10000, - "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "source": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "status": "valid", - "tx_hash": "41940d57c4a9b1f5d0a22cb937643b5a48181fabeb27a4fe2ae5e3b102045d0f", + "tx_hash": "9e959e4d7992f9ebacdffa06990aeb2dc4ae9b61a3bce8e456f2a54430c2047a", "tx_index": 55, - "block_time": 1729416215, + "block_time": 1729419244, "asset_info": { "divisible": true, "asset_longname": null, @@ -9785,9 +9760,9 @@ }, "quantity_normalized": "0.00010000" }, - "tx_hash": "41940d57c4a9b1f5d0a22cb937643b5a48181fabeb27a4fe2ae5e3b102045d0f", + "tx_hash": "9e959e4d7992f9ebacdffa06990aeb2dc4ae9b61a3bce8e456f2a54430c2047a", "block_index": 189, - "block_time": 1729416215 + "block_time": 1729419244 } ], "next_cursor": null, @@ -9801,15 +9776,15 @@ "params": { "asset": "XCP", "block_index": 190, - "destination": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "status": "valid", - "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", + "tx_hash": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", "tx_index": 56, - "block_time": 1729416220, + "block_time": 1729419248, "asset_info": { "divisible": true, "asset_longname": null, @@ -9819,9 +9794,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "23f40df5b8f5bf38cb66582b87a5d423be83c7d321f62c4827c870f7af86f2f6", + "tx_hash": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", "block_index": 190, - "block_time": 1729416220 + "block_time": 1729419248 } ], "next_cursor": 509, @@ -9844,20 +9819,20 @@ "event": "SWEEP", "params": { "block_index": 194, - "destination": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "destination": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "source": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "status": "valid", - "tx_hash": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", + "tx_hash": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b", "tx_index": 60, - "block_time": 1729416237, + "block_time": 1729419276, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "68e22b20bf817d4232cd1cb6b02daff314a3cb5d82d6d64529667db0218e5024", + "tx_hash": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b", "block_index": 194, - "block_time": 1729416237 + "block_time": 1729419276 } ], "next_cursor": null, @@ -9874,15 +9849,15 @@ "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "status": "valid", - "tx_hash": "0c95334ce0b328f2ff4e1e44c4e96d503ba60b7b2b1fbabeabef5f3ac971b288", + "tx_hash": "5954cbb59b8f533b6dc597f67642fe125d0f54d58dd8bd6109079010bc39416b", "tx_index": 41, - "block_time": 1729416070, + "block_time": 1729419109, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, @@ -9896,9 +9871,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "0c95334ce0b328f2ff4e1e44c4e96d503ba60b7b2b1fbabeabef5f3ac971b288", + "tx_hash": "5954cbb59b8f533b6dc597f67642fe125d0f54d58dd8bd6109079010bc39416b", "block_index": 154, - "block_time": 1729416070 + "block_time": 1729419109 } ], "next_cursor": null, @@ -9919,11 +9894,11 @@ "asset_longname": "A95428959745315388.SUBNUMERIC", "asset_name": "A95428956980101314", "block_index": 161, - "block_time": 1729416112 + "block_time": 1729419150 }, - "tx_hash": "bb2aa89179834fafe03acecbbade4d6fd928251f2923a59b4656957ab3685976", + "tx_hash": "e3935cf288cec52794daa26e2783ae06125ca6965f257e7d9ff3585239657033", "block_index": 161, - "block_time": 1729416112 + "block_time": 1729419150 } ], "next_cursor": 381, @@ -9946,22 +9921,22 @@ "description_locked": false, "divisible": true, "fee_paid": 0, - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "status": "valid", "transfer": false, - "tx_hash": "bb2aa89179834fafe03acecbbade4d6fd928251f2923a59b4656957ab3685976", + "tx_hash": "e3935cf288cec52794daa26e2783ae06125ca6965f257e7d9ff3585239657033", "tx_index": 48, - "block_time": 1729416112, + "block_time": 1729419150, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "bb2aa89179834fafe03acecbbade4d6fd928251f2923a59b4656957ab3685976", + "tx_hash": "e3935cf288cec52794daa26e2783ae06125ca6965f257e7d9ff3585239657033", "block_index": 161, - "block_time": 1729416112 + "block_time": 1729419150 } ], "next_cursor": 388, @@ -9976,12 +9951,12 @@ "asset": "XCP", "block_index": 195, "quantity": 1, - "source": "bcrt1qhufan3mwuasdkex3x26ac0uea5nr9qhv8ulhn3", + "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", "status": "valid", "tag": "64657374726f79", - "tx_hash": "849f54d8426192c0270d4d240627ba157876e3601948aed0ac24e730dcab52d7", + "tx_hash": "857b0199761f230748e7583d48033e2dcc3de8fbea85b2ca971f83f5261bd29a", "tx_index": 61, - "block_time": 1729416242, + "block_time": 1729419281, "asset_info": { "divisible": true, "asset_longname": null, @@ -9991,9 +9966,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "849f54d8426192c0270d4d240627ba157876e3601948aed0ac24e730dcab52d7", + "tx_hash": "857b0199761f230748e7583d48033e2dcc3de8fbea85b2ca971f83f5261bd29a", "block_index": 195, - "block_time": 1729416242 + "block_time": 1729419281 } ], "next_cursor": 157, @@ -10018,11 +9993,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "status": "open", - "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", + "tx_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", "tx_index": 59, - "block_time": 1729416233, + "block_time": 1729419272, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10046,9 +10021,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "6eff7a562604f3a090fe71f29369d95574bc03b45844368af258bc43e490c687", + "tx_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", "block_index": 193, - "block_time": 1729416233 + "block_time": 1729419272 } ], "next_cursor": 516, @@ -10066,20 +10041,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", + "id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", "match_expire_index": 208, "status": "pending", - "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "tx0_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "tx0_block_index": 186, "tx0_expiration": 21, - "tx0_hash": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39", + "tx0_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", "tx0_index": 51, - "tx1_address": "bcrt1qh9jd8etzehpfh6qvzla505zxrmlpckja04cdtt", + "tx1_address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", "tx1_block_index": 188, "tx1_expiration": 21, - "tx1_hash": "e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", + "tx1_hash": "f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", "tx1_index": 54, - "block_time": 1729416201, + "block_time": 1729419239, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10098,9 +10073,9 @@ "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "e22cd964f93c711ddcb831b511f53b81e2690d14fe71449617e8c40d7052e7f2", + "tx_hash": "f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", "block_index": 188, - "block_time": 1729416201 + "block_time": 1729419239 } ], "next_cursor": 475, @@ -10113,11 +10088,11 @@ "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d" + "tx_hash": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9" }, - "tx_hash": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa", + "tx_hash": "f034d2fc20879fa54967667975c28e61b9e666da655c2cdeef7b284f057afff6", "block_index": 192, - "block_time": 1729416229 + "block_time": 1729419257 } ], "next_cursor": 490, @@ -10130,11 +10105,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80" + "tx_hash": "a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6" }, - "tx_hash": "e6ca911a0b08aa83675667b9ca8e02c32aeb2da53061aba62dde2da5b66b8fe8", + "tx_hash": "093e49f3c5553048e93710a95ae3f813e9e9ed5288b166ef5352fa88f6ee9d32", "block_index": 187, - "block_time": 1729416196 + "block_time": 1729419235 } ], "next_cursor": null, @@ -10146,13 +10121,13 @@ "event_index": 481, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", - "order_match_id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", + "id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", + "order_match_id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", "status": "completed" }, - "tx_hash": "e6ca911a0b08aa83675667b9ca8e02c32aeb2da53061aba62dde2da5b66b8fe8", + "tx_hash": "093e49f3c5553048e93710a95ae3f813e9e9ed5288b166ef5352fa88f6ee9d32", "block_index": 187, - "block_time": 1729416196 + "block_time": 1729419235 } ], "next_cursor": 454, @@ -10166,18 +10141,18 @@ "params": { "block_index": 187, "btc_amount": 2000, - "destination": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "order_match_id": "0ffe13e8edf2ebb2dd89ce1ca67da5151095d53569e04313d89a00a66067da39_34797a1f6427320cf94103017d217885eec0ea350eaedda82d3b62cf47e0ce80", - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "destination": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "order_match_id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "status": "valid", - "tx_hash": "e6ca911a0b08aa83675667b9ca8e02c32aeb2da53061aba62dde2da5b66b8fe8", + "tx_hash": "093e49f3c5553048e93710a95ae3f813e9e9ed5288b166ef5352fa88f6ee9d32", "tx_index": 53, - "block_time": 1729416196, + "block_time": 1729419235, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "e6ca911a0b08aa83675667b9ca8e02c32aeb2da53061aba62dde2da5b66b8fe8", + "tx_hash": "093e49f3c5553048e93710a95ae3f813e9e9ed5288b166ef5352fa88f6ee9d32", "block_index": 187, - "block_time": 1729416196 + "block_time": 1729419235 } ], "next_cursor": null, @@ -10190,16 +10165,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "0a4aaca16695b57a2816b39047c827e97ec7237d805cb898eaeca634a9c6aa1d", - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "offer_hash": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "status": "valid", - "tx_hash": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa", + "tx_hash": "f034d2fc20879fa54967667975c28e61b9e666da655c2cdeef7b284f057afff6", "tx_index": 58, - "block_time": 1729416229 + "block_time": 1729419257 }, - "tx_hash": "d2b1d41677e6d2c5b2e7337012a975aa1c68376126b45670dae24885af7bedfa", + "tx_hash": "f034d2fc20879fa54967667975c28e61b9e666da655c2cdeef7b284f057afff6", "block_index": 192, - "block_time": 1729416229 + "block_time": 1729419257 } ], "next_cursor": null, @@ -10212,13 +10187,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 184, - "order_hash": "31f95069423c6c4ddfe0a4574c1a3369fb58dac7a6652ba054558eb83930ed0b", - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", - "block_time": 1729416128 + "order_hash": "97a614c1cd5ebc6475742cff5c39401b7d7a1c7b9432bf2f31b973c81a8ceeac", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "block_time": 1729419167 }, "tx_hash": null, "block_index": 184, - "block_time": 1729416128 + "block_time": 1729419167 } ], "next_cursor": 460, @@ -10231,14 +10206,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 184, - "order_match_id": "d054f0400db96ae5e50d58f9f3bf0c565342ed4cb50da49e21166e52e033e3f8_31f95069423c6c4ddfe0a4574c1a3369fb58dac7a6652ba054558eb83930ed0b", - "tx0_address": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "tx1_address": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", - "block_time": 1729416128 + "order_match_id": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b_97a614c1cd5ebc6475742cff5c39401b7d7a1c7b9432bf2f31b973c81a8ceeac", + "tx0_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "tx1_address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "block_time": 1729419167 }, "tx_hash": null, "block_index": 184, - "block_time": 1729416128 + "block_time": 1729419167 } ], "next_cursor": null, @@ -10256,14 +10231,14 @@ "escrow_quantity": 10000, "give_quantity": 1, "give_remaining": 10000, - "oracle_address": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", - "origin": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "oracle_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "origin": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "satoshirate": 1, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "status": 0, - "tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", + "tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", "tx_index": 33, - "block_time": 1729416035, + "block_time": 1729419074, "asset_info": { "divisible": true, "asset_longname": null, @@ -10276,9 +10251,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", + "tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", "block_index": 146, - "block_time": 1729416035 + "block_time": 1729419074 } ], "next_cursor": 254, @@ -10293,9 +10268,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "status": 0, - "tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", + "tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", "asset_info": { "divisible": true, "asset_longname": null, @@ -10305,9 +10280,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 } ], "next_cursor": 302, @@ -10321,13 +10296,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "mxn9viJTMZ952ierCiR5GaQwzaXBTAAdFh", + "destination": "mgm25pVEpj1Ey3H9pdvQUT6kCysXns3ZpB", "dispense_quantity": 10, - "dispenser_tx_hash": "8463aade5566a0f1e8c8f67bc3a36514814d844fa9a8925b244600e282392b52", - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", - "tx_hash": "6a06e123de94dc01dda7d60f67d09fe6d4a304f0b7fcb2ddd6642b6895f8bf8a", + "dispenser_tx_hash": "03163da185ecd4f58783c6feb8cdf29574011d5410f7983f983644aaaec1d685", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "tx_hash": "5bf2a1fde45df978c1bc9fb8fb6cf057b80b9b6c8f39021ca122b3d9f3276246", "tx_index": 31, - "block_time": 1729416026, + "block_time": 1729419056, "asset_info": { "divisible": true, "asset_longname": null, @@ -10337,9 +10312,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "6a06e123de94dc01dda7d60f67d09fe6d4a304f0b7fcb2ddd6642b6895f8bf8a", + "tx_hash": "5bf2a1fde45df978c1bc9fb8fb6cf057b80b9b6c8f39021ca122b3d9f3276246", "block_index": 144, - "block_time": 1729416026 + "block_time": 1729419056 } ], "next_cursor": null, @@ -10354,14 +10329,14 @@ "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qv74f9x5w5xmjzwxy5zg5gzhllncwh6cknnn4tc", + "destination": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "52f74b30e2aabcb7be41055bcdd6652e380aa14000aeaeca7af47f7af449cc1d", - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "dispenser_tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -10372,9 +10347,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 } ], "next_cursor": 280, @@ -10389,19 +10364,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qmpec0pxwkz70zuy0m8pk2urt4luxl6w64grj20", + "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "1945e07d63301090025795858c49fef361dfc2d9851d9e074cc4215d9d91255f", + "tx_hash": "fcd3ac244dcdca9116bd6de331c88e6b7fc07a65cbc5f45a7f4f2731ad085430", "tx_index": 25, "value": 66600.0, - "block_time": 1729416000, + "block_time": 1729419020, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "1945e07d63301090025795858c49fef361dfc2d9851d9e074cc4215d9d91255f", + "tx_hash": "fcd3ac244dcdca9116bd6de331c88e6b7fc07a65cbc5f45a7f4f2731ad085430", "block_index": 138, - "block_time": 1729416000 + "block_time": 1729419020 } ], "next_cursor": 213, @@ -10432,16 +10407,16 @@ "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "start_block": 0, "status": "open", - "tx_hash": "68455c81e91976b50973996dd5e3b1bafeb9009b2ca1a238e4a1897afbef2d46", + "tx_hash": "c8665b67e71ee218d3415890729798887bbc54fb90e4c5e9cfeb24ce802a5b34", "tx_index": 42, - "block_time": 1729416085 + "block_time": 1729419113 }, - "tx_hash": "68455c81e91976b50973996dd5e3b1bafeb9009b2ca1a238e4a1897afbef2d46", + "tx_hash": "c8665b67e71ee218d3415890729798887bbc54fb90e4c5e9cfeb24ce802a5b34", "block_index": 155, - "block_time": 1729416085 + "block_time": 1729419113 } ], "next_cursor": 196, @@ -10454,11 +10429,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "9f887ea5403be9aa383402f97d0e8f856de8951ba3327060b3af17321c9478ad" + "tx_hash": "5dbec8408aedd6f8d6d3e7996757c0f4cc868053ef22cea6e506b00fda3c0efd" }, "tx_hash": null, "block_index": 130, - "block_time": 1729415965 + "block_time": 1729418986 } ], "next_cursor": 110, @@ -10474,24 +10449,24 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "251c310af851cba2ce4a58932e7cb803aeb6a9f7a55bac9bbf688ba85a48ef28", + "fairminter_tx_hash": "f38ae5c8abb6b49f9591e5eaae9ea1d072612f70aaa73853f25ba05480b5076c", "paid_quantity": 34, - "source": "bcrt1q8w3dem2en7y0h7jegwk86j45253lnyy8njfr22", + "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", "status": "valid", - "tx_hash": "6b50dfb9f0288a39497978e107102a20fca9269f60c348a7d3252a97951c3dfa", + "tx_hash": "27f936d6cbc64295fbb696767820d4b39f85fcf3a8bd6345ef8efaf104da5fd0", "tx_index": 23, - "block_time": 1729415991, + "block_time": 1729419011, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false } }, - "tx_hash": "6b50dfb9f0288a39497978e107102a20fca9269f60c348a7d3252a97951c3dfa", + "tx_hash": "27f936d6cbc64295fbb696767820d4b39f85fcf3a8bd6345ef8efaf104da5fd0", "block_index": 136, - "block_time": 1729415991 + "block_time": 1729419011 } ], "next_cursor": 190, @@ -10505,28 +10480,28 @@ "params": { "asset": "MYASSETA", "block_index": 152, - "destination": "aebd60a74f16beb780629243965a4832b6c9e75043be78503b78cb904acba5d6:1", + "destination": "19241abee68c758ce2acf9aa205d89e2974a82660ba244e8539a1e2db77bf4f6:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "status": "valid", - "tx_hash": "aebd60a74f16beb780629243965a4832b6c9e75043be78503b78cb904acba5d6", + "tx_hash": "19241abee68c758ce2acf9aa205d89e2974a82660ba244e8539a1e2db77bf4f6", "tx_index": 39, - "block_time": 1729416061, + "block_time": 1729419100, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "aebd60a74f16beb780629243965a4832b6c9e75043be78503b78cb904acba5d6", + "tx_hash": "19241abee68c758ce2acf9aa205d89e2974a82660ba244e8539a1e2db77bf4f6", "block_index": 152, - "block_time": 1729416061 + "block_time": 1729419100 } ], "next_cursor": 296, @@ -10540,28 +10515,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qkgcujj6uea6hshreznk6fw8e22utgsdyqd02hg", + "destination": "bcrt1qg6cl5djlpjf8ne6z88eh7rpjt2c9ttupg48l6x", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "cdcf917d341dcb5152a735abf3e6fbe5c3f3df03e327bdacc1f0c3f858ddbbeb:0", + "source": "b97859d82df08aec2a7034a1721052c7eb6e72e5a41716e18796c69e00b4a59b:0", "status": "valid", - "tx_hash": "e755d7b8872d3d225da4d98c83eb4694a52915378b4b246272aff784b230d963", + "tx_hash": "b0bd44f210f49eeff94e14b96de922cb147dc9069d998d38e9ca17d5ad033d1d", "tx_index": 38, - "block_time": 1729416057, + "block_time": 1729419095, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q69e3whvhtzxyvtylvesykww5un6f474srtcf23", + "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "e755d7b8872d3d225da4d98c83eb4694a52915378b4b246272aff784b230d963", + "tx_hash": "b0bd44f210f49eeff94e14b96de922cb147dc9069d998d38e9ca17d5ad033d1d", "block_index": 151, - "block_time": 1729416057 + "block_time": 1729419095 } ], "next_cursor": null, @@ -10575,14 +10550,14 @@ "params": { "asset": "XCP", "block_index": 196, - "destination": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287:0", + "destination": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", "msg_index": 1, "quantity": 1500000000, - "source": "3c4935d2954b70e8543fdb757918e1787b17ebcdd1b7ca8da891fa51581e52c2:1", + "source": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", "status": "valid", - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "tx_index": 62, - "block_time": 1729416251, + "block_time": 1729419295, "asset_info": { "divisible": true, "asset_longname": null, @@ -10592,9 +10567,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "9ab47306dbd7cbb25c3f7eb910b1cc9d40a10161603abfceb1f7c9ace036c287", + "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", "block_index": 196, - "block_time": 1729416251 + "block_time": 1729419295 } ], "next_cursor": 555, @@ -10609,17 +10584,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qwhyc990hruyqf3e7r3ee9xx3g558uugekpa3kw", + "source": "bcrt1qwel02ewd5s0334xz3z95wd9t2ycslyadsevzhv", "status": "valid", - "tx_hash": "3c708852d4951ec7994feec5ab282528777c9dbf169290986261472cf1fb27fa", + "tx_hash": "aeb9c55ef28fc0085850c3f2ab1825dcc5c218dd40c691ca08b32a7f0413ef81", "tx_index": 9, - "block_time": 1729415925, + "block_time": 1729418948, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "3c708852d4951ec7994feec5ab282528777c9dbf169290986261472cf1fb27fa", + "tx_hash": "aeb9c55ef28fc0085850c3f2ab1825dcc5c218dd40c691ca08b32a7f0413ef81", "block_index": 121, - "block_time": 1729415925 + "block_time": 1729418948 } ], "next_cursor": 65, diff --git a/release-notes/release-notes-v10.5.0.md b/release-notes/release-notes-v10.5.0.md index 1e45650547..0f02fba77f 100644 --- a/release-notes/release-notes-v10.5.0.md +++ b/release-notes/release-notes-v10.5.0.md @@ -30,6 +30,7 @@ This update requires an automatic reparse from block 865999. - Have `--force` bypass checks that node is caught up - Have `/v2/blocks/last` return the last parsed block and not the block currently being parsed +- Change route `/v2/fairminters//mints` to `/v2/fairminters//fairmints` - Add the following new routes: - `/v2/fairmints` - `/v2/fairmints/` From 9d792dc54aace18e390540c91681293d045fb9ad Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sun, 20 Oct 2024 10:50:57 +0000 Subject: [PATCH 20/37] fix check database version --- counterparty-core/counterpartycore/lib/check.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/check.py b/counterparty-core/counterpartycore/lib/check.py index 89abe9712c..b5638077ba 100644 --- a/counterparty-core/counterpartycore/lib/check.py +++ b/counterparty-core/counterpartycore/lib/check.py @@ -1041,7 +1041,7 @@ def database_version(db): elif version_minor != config.VERSION_MINOR: # Reparse transactions from the vesion block if minor version has changed. message = ( - f"Client minor version number mismatch: ({version_minor} ≠ {config.VERSION_MINOR}). " + f"Client minor version number mismatch: {version_minor} ≠ {config.VERSION_MINOR}. " ) message += "Checking if a reparse is needed..." check_need_reparse(version_minor, message) @@ -1050,8 +1050,12 @@ def database_version(db): version_string = database.get_config_value(db, "VERSION_STRING") if version_string: version_pre_release = "-".join(version_string.split("-")[1:]) - if version_pre_release == config.VERSION_PRE_RELEASE: - return + else: + # if version_string is not set, that mean we are on a version before 10.5.0 and after 10.4.8 + # let's assume it's a pre-release version + # and set an arbitrary value different from config.VERSION_PRE_RELEASE + version_pre_release = "xxxx" + if version_pre_release != config.VERSION_PRE_RELEASE: message = f"Client pre-release version number mismatch: {version_pre_release} ≠ {config.VERSION_PRE_RELEASE}. " message += "Checking if a reparse is needed..." check_need_reparse(version_minor, message) From ed7b52f1f6b0c31bebed03c70b5cf9b35a820c1e Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Sun, 20 Oct 2024 08:53:06 -0400 Subject: [PATCH 21/37] Clean Up Config --- counterparty-core/counterpartycore/cli.py | 27 +++++++++++++------ .../counterpartycore/lib/api/wsgi.py | 4 +-- .../counterpartycore/lib/config.py | 5 +--- counterparty-core/counterpartycore/server.py | 27 ++++++++++--------- 4 files changed, 36 insertions(+), 27 deletions(-) diff --git a/counterparty-core/counterpartycore/cli.py b/counterparty-core/counterpartycore/cli.py index a9e6f005bd..2a240705a1 100755 --- a/counterparty-core/counterpartycore/cli.py +++ b/counterparty-core/counterpartycore/cli.py @@ -1,5 +1,6 @@ #! /usr/bin/env python3 +import os import argparse import logging from urllib.parse import quote_plus as urlencode @@ -306,16 +307,10 @@ def float_range_checker(arg): ("--db-connection-pool-size",), { "type": int, + "default": 20, "help": "size of the database connection pool", }, ], - [ - ("--waitress-threads",), - { - "type": int, - "help": "number of threads for the Waitress WSGI server (if enabled)", - }, - ], [ ("--json-logs",), { @@ -332,12 +327,28 @@ def float_range_checker(arg): "choices": ["waitress", "gunicorn", "werkzeug"], }, ], + [ + ("--waitress-threads",), + { + "type": int, + "default": 10, + "help": "number of threads for the Waitress WSGI server (if enabled)", + }, + ], [ ("--gunicorn-workers",), + { + "type": int, + "default": 2 * os.cpu_count() + 1, + "help": "number of worker processes for gunicorn (if enabled)", + }, + ], + [ + ("--gunicorn-threads-per-worker",), { "type": int, "default": 2, - "help": "number of worker processes for gunicorn", + "help": "number of threads per worker for the Gunicorn WSGI server (if enabled)", }, ], ] diff --git a/counterparty-core/counterpartycore/lib/api/wsgi.py b/counterparty-core/counterpartycore/lib/api/wsgi.py index 842167e29e..2c4709ee09 100644 --- a/counterparty-core/counterpartycore/lib/api/wsgi.py +++ b/counterparty-core/counterpartycore/lib/api/wsgi.py @@ -209,7 +209,7 @@ def __init__(self, app, args=None): "workers": config.GUNICORN_WORKERS, "worker_class": "gthread", "daemon": True, - "threads": 2, + "threads": config.GUNICORN_THREADS_PER_WORKER, "loglevel": "debug", # "access-logfile": "-", } @@ -274,7 +274,7 @@ def __init__(self, app, args=None): self.args = args self.timer_db = get_db_connection(config.API_DATABASE, read_only=True, check_wal=False) self.server = waitress.server.create_server( - self.app, host=config.API_HOST, port=config.API_PORT, threads=20 + self.app, host=config.API_HOST, port=config.API_PORT, threads=config.WAITRESS_THREADS ) def run(self): diff --git a/counterparty-core/counterpartycore/lib/config.py b/counterparty-core/counterpartycore/lib/config.py index 55dedb4f7f..8defb6300b 100644 --- a/counterparty-core/counterpartycore/lib/config.py +++ b/counterparty-core/counterpartycore/lib/config.py @@ -183,7 +183,4 @@ INFLUX_DB_ORG = "counterparty" INFLUX_DB_BUCKET = "node-telemetry" -LOG_IN_CONSOLE = False - -DEFAULT_DB_CONNECTION_POOL_SIZE = 20 -DEFAULT_WAITRESS_THREADS = 10 +LOG_IN_CONSOLE = False \ No newline at end of file diff --git a/counterparty-core/counterpartycore/server.py b/counterparty-core/counterpartycore/server.py index 8ff5c48448..44696b58fc 100755 --- a/counterparty-core/counterpartycore/server.py +++ b/counterparty-core/counterpartycore/server.py @@ -175,9 +175,10 @@ def initialise_config( enable_zmq_publisher=False, zmq_publisher_port=None, db_connection_pool_size=None, - wsgi_server="waitress", - waitress_threads=20, - gunicorn_workers=2, + wsgi_server=None, + waitress_threads=None, + gunicorn_workers=None, + gunicorn_threads_per_worker=None, ): # log config already initialized @@ -594,19 +595,17 @@ def initialise_config( config.NO_TELEMETRY = no_telemetry - if db_connection_pool_size: - config.DB_CONNECTION_POOL_SIZE = db_connection_pool_size - else: - config.DB_CONNECTION_POOL_SIZE = config.DEFAULT_DB_CONNECTION_POOL_SIZE - - if waitress_threads: - config.WAITRESS_THREADS = waitress_threads - else: - config.WAITRESS_THREADS = config.DEFAULT_WAITRESS_THREADS - + config.DB_CONNECTION_POOL_SIZE = db_connection_pool_size config.WSGI_SERVER = wsgi_server + config.WAITRESS_THREADS = waitress_threads + config.GUNICORN_THREADS_PER_WORKER = gunicorn_threads_per_worker config.GUNICORN_WORKERS = gunicorn_workers + # Log all config parameters, sorted by key + # Filter out default values #TODO: these should be set in a different way + custom_config = {k: v for k, v in sorted(config.__dict__.items()) if not k.startswith('__') and not k.startswith('DEFAULT_')} + logger.debug(f"Config: {custom_config}") + def initialise_log_and_config(args): # Configuration @@ -651,6 +650,7 @@ def initialise_log_and_config(args): "wsgi_server": args.wsgi_server, "waitress_threads": args.waitress_threads, "gunicorn_workers": args.gunicorn_workers, + "gunicorn_threads_per_worker": args.gunicorn_threads_per_worker, } initialise_log_config( @@ -983,3 +983,4 @@ def bootstrap_progress(blocknum, blocksize, totalsize): f"Databases have been successfully bootstrapped to {ledger_database_path} and {api_database_path}.", "green", ) + From 25fb960c568fa2da9e3eb50a278e2dd90591b2ed Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Sun, 20 Oct 2024 09:27:38 -0400 Subject: [PATCH 22/37] Tweak Threading Etc. --- .../counterpartycore/lib/api/api_server.py | 43 ++++++++++--- counterparty-core/counterpartycore/server.py | 63 +++++++++---------- 2 files changed, 64 insertions(+), 42 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/api/api_server.py b/counterparty-core/counterpartycore/lib/api/api_server.py index 92ed9bd6de..f80fe23614 100644 --- a/counterparty-core/counterpartycore/lib/api/api_server.py +++ b/counterparty-core/counterpartycore/lib/api/api_server.py @@ -392,7 +392,7 @@ def init_flask_app(): return app -def run_api_server(args, interruped_value, server_ready_value): +def run_api_server(args, interrupted_value, server_ready_value): sentry.init() # Initialise log and config server.initialise_log_and_config(argparse.Namespace(**args)) @@ -404,24 +404,46 @@ def run_api_server(args, interruped_value, server_ready_value): app = init_flask_app() wsgi_server = None + parent_checker = None try: # Init the HTTP Server. wsgi_server = wsgi.WSGIApplication(app, args=args) - ParentProcessChecker(interruped_value, wsgi_server).start() + parent_checker = ParentProcessChecker(interrupted_value, wsgi_server) + parent_checker.start() app.app_context().push() # Run app server (blocking) server_ready_value.value = 1 wsgi_server.run() except KeyboardInterrupt: logger.trace("Keyboard Interrupt!") + except Exception as e: + capture_exception(e) + logger.error("Error in API Server: %s", e) finally: logger.trace("Shutting down API Server...") - watcher.stop() - watcher.join() + try: + watcher.stop() + watcher.join() + except Exception as e: + logger.error("Error stopping API Watcher: %s", e) + if wsgi_server is not None: - wsgi_server.stop() - APIDBConnectionPool().close() + try: + wsgi_server.stop() + except Exception as e: + logger.error("Error stopping WSGI Server: %s", e) + + if parent_checker is not None: + try: + parent_checker.join() + except Exception as e: + logger.error("Error joining ParentProcessChecker: %s", e) + + try: + APIDBConnectionPool().close() + except Exception as e: + logger.error("Error closing DB connection pool: %s", e) # This thread is used for the following two reasons: @@ -466,13 +488,14 @@ def is_ready(self): def stop(self): logger.info("Stopping API Server...") - self.interrupted.value = 1 + self.interrupted.value = 1 # stop the thread waiting_start_time = time.time() while self.process.is_alive(): - time.sleep(0.5) - logger.trace("Waiting for API Server to stop...") - if time.time() - waiting_start_time > 2: + time.sleep(1) + logger.trace("Waiting 10 seconds for API Server to stop...") + if time.time() - waiting_start_time > 10: logger.error("API Server did not stop in time. Terminating...") self.process.kill() break logger.trace("API Server stopped.") + diff --git a/counterparty-core/counterpartycore/server.py b/counterparty-core/counterpartycore/server.py index 44696b58fc..37be8a27c8 100755 --- a/counterparty-core/counterpartycore/server.py +++ b/counterparty-core/counterpartycore/server.py @@ -733,44 +733,45 @@ def start_all(args): bootstrap(no_confirm=True) # initialise database - db = database.initialise_db() - blocks.initialise(db) - blocks.check_database_version(db) - database.optimize(db) + with database.initialise_db() as db: - # check software version - check.software_version() + blocks.initialise(db) + blocks.check_database_version(db) + database.optimize(db) - # API Server v2. - api_server_v2 = api_v2.APIServer() - api_server_v2.start(args) - while not api_server_v2.is_ready(): - logger.trace("Waiting for API server to start...") - time.sleep(0.1) + # check software version + check.software_version() + + # API Server v2. + api_server_v2 = api_v2.APIServer() + api_server_v2.start(args) + while not api_server_v2.is_ready(): + logger.trace("Waiting for API server to start...") + time.sleep(0.1) - # Backend. - connect_to_backend() + # Backend. + connect_to_backend() - # API Status Poller. - api_status_poller = api_v1.APIStatusPoller() - api_status_poller.daemon = True - api_status_poller.start() + # API Status Poller. + api_status_poller = api_v1.APIStatusPoller() + api_status_poller.daemon = True + api_status_poller.start() - # API Server v1. - api_server_v1 = api_v1.APIServer() - api_server_v1.daemon = True - api_server_v1.start() + # API Server v1. + api_server_v1 = api_v1.APIServer() + api_server_v1.daemon = True + api_server_v1.start() - # Asset conservation checker - asset_conservation_checker = AssetConservationChecker() - asset_conservation_checker.start() + # Asset conservation checker + asset_conservation_checker = AssetConservationChecker() + asset_conservation_checker.start() - # catch up - blocks.catch_up(db) + # catch up + blocks.catch_up(db) - # Blockchain watcher - logger.info("Watching for new blocks...") - follower_daemon = follow.start_blockchain_watcher(db) + # Blockchain watcher + logger.info("Watching for new blocks...") + follower_daemon = follow.start_blockchain_watcher(db) except KeyboardInterrupt: logger.warning("Keyboard interrupt!") @@ -791,8 +792,6 @@ def start_all(args): follower_daemon.stop() if not config.NO_TELEMETRY: TelemetryOneShot().close() - if db: - database.close(db) backend.addrindexrs.stop() log.shutdown() rsfetcher.stop() From 4b1d1e89223e2d5c13673a427e01729cd01037f8 Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Sun, 20 Oct 2024 09:37:42 -0400 Subject: [PATCH 23/37] Release Notes for v10.5.0 --- release-notes/release-notes-v10.5.0.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/release-notes/release-notes-v10.5.0.md b/release-notes/release-notes-v10.5.0.md index f342612254..3211c31fdd 100644 --- a/release-notes/release-notes-v10.5.0.md +++ b/release-notes/release-notes-v10.5.0.md @@ -25,16 +25,19 @@ This update requires an automatic reparse from block 865999. - Support several required reparsing by major version - Optimize database `rowtracer` - Optimize `ledger.get_last_issuance()`, `ledger.asset_issued_total()` and `ledger.asset_destroyed_total()` +- Tweak thread handling logic ## API - Have `--force` bypass checks that node is caught up - Have `/v2/blocks/last` return the last parsed block and not the block currently being parsed -- Make the number of Waitress threads configurable (default 4 -> 20) ## CLI - Add `--max-log-file-size` and `--max-log-file-rotations` flags +- Make the number of Waitress threads configurable +- Make the number of Gunicorn threads per worker configurable +- Log all configuration options on startup at `DEBUG` level # Credits From 5a2ffbb8f5800083f368036730709e1801a6565e Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Sun, 20 Oct 2024 09:39:10 -0400 Subject: [PATCH 24/37] Ruff --- counterparty-core/counterpartycore/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/counterparty-core/counterpartycore/cli.py b/counterparty-core/counterpartycore/cli.py index 2a240705a1..6aa996b40f 100755 --- a/counterparty-core/counterpartycore/cli.py +++ b/counterparty-core/counterpartycore/cli.py @@ -1,8 +1,8 @@ #! /usr/bin/env python3 -import os import argparse import logging +import os from urllib.parse import quote_plus as urlencode from termcolor import cprint From d2df7f3b10a74a5dbb993cb8573818d3e9c775b5 Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Sun, 20 Oct 2024 09:39:26 -0400 Subject: [PATCH 25/37] Ruff Format --- counterparty-core/counterpartycore/lib/api/api_server.py | 1 - counterparty-core/counterpartycore/lib/config.py | 2 +- counterparty-core/counterpartycore/server.py | 8 +++++--- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/api/api_server.py b/counterparty-core/counterpartycore/lib/api/api_server.py index f80fe23614..95308b6e1f 100644 --- a/counterparty-core/counterpartycore/lib/api/api_server.py +++ b/counterparty-core/counterpartycore/lib/api/api_server.py @@ -498,4 +498,3 @@ def stop(self): self.process.kill() break logger.trace("API Server stopped.") - diff --git a/counterparty-core/counterpartycore/lib/config.py b/counterparty-core/counterpartycore/lib/config.py index 8defb6300b..9b8e56b10b 100644 --- a/counterparty-core/counterpartycore/lib/config.py +++ b/counterparty-core/counterpartycore/lib/config.py @@ -183,4 +183,4 @@ INFLUX_DB_ORG = "counterparty" INFLUX_DB_BUCKET = "node-telemetry" -LOG_IN_CONSOLE = False \ No newline at end of file +LOG_IN_CONSOLE = False diff --git a/counterparty-core/counterpartycore/server.py b/counterparty-core/counterpartycore/server.py index 37be8a27c8..ccdd89e7a0 100755 --- a/counterparty-core/counterpartycore/server.py +++ b/counterparty-core/counterpartycore/server.py @@ -603,7 +603,11 @@ def initialise_config( # Log all config parameters, sorted by key # Filter out default values #TODO: these should be set in a different way - custom_config = {k: v for k, v in sorted(config.__dict__.items()) if not k.startswith('__') and not k.startswith('DEFAULT_')} + custom_config = { + k: v + for k, v in sorted(config.__dict__.items()) + if not k.startswith("__") and not k.startswith("DEFAULT_") + } logger.debug(f"Config: {custom_config}") @@ -734,7 +738,6 @@ def start_all(args): # initialise database with database.initialise_db() as db: - blocks.initialise(db) blocks.check_database_version(db) database.optimize(db) @@ -982,4 +985,3 @@ def bootstrap_progress(blocknum, blocksize, totalsize): f"Databases have been successfully bootstrapped to {ledger_database_path} and {api_database_path}.", "green", ) - From a9c879c746f3ceb948068b704cd7a7ac0caa23ae Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Sun, 20 Oct 2024 09:54:40 -0400 Subject: [PATCH 26/37] Tweak Release Notes for v10.5.0 --- release-notes/release-notes-v10.5.0.md | 1 + 1 file changed, 1 insertion(+) diff --git a/release-notes/release-notes-v10.5.0.md b/release-notes/release-notes-v10.5.0.md index 0f02fba77f..3fa34a8937 100644 --- a/release-notes/release-notes-v10.5.0.md +++ b/release-notes/release-notes-v10.5.0.md @@ -38,6 +38,7 @@ This update requires an automatic reparse from block 865999. ## CLI - Add `--max-log-file-size` and `--max-log-file-rotations` flags +- Disable mempool synchronization when `--no-mempool` is passed # Credits From f3554ceeca5e0bcd1d279aa78ab79a189987e49d Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Sun, 20 Oct 2024 09:55:09 -0400 Subject: [PATCH 27/37] Tweak Release Notes for v10.5.0 --- release-notes/release-notes-v10.5.0.md | 1 + 1 file changed, 1 insertion(+) diff --git a/release-notes/release-notes-v10.5.0.md b/release-notes/release-notes-v10.5.0.md index 3fa34a8937..e71d1dd49c 100644 --- a/release-notes/release-notes-v10.5.0.md +++ b/release-notes/release-notes-v10.5.0.md @@ -20,6 +20,7 @@ This update requires an automatic reparse from block 865999. ## Codebase +- Mandatory reparse for all alphas and betas - Add missing index to `address_events` table - Add missing compound index to `issuances` table - Support several required reparsing by major version From cf6a14f408b6feea320f0e73cfe6f8650280046c Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sun, 20 Oct 2024 15:08:09 +0000 Subject: [PATCH 28/37] Sanity check in list_tx for mempool tx --- counterparty-core/counterpartycore/lib/blocks.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/counterparty-core/counterpartycore/lib/blocks.py b/counterparty-core/counterpartycore/lib/blocks.py index e3295a9c72..6439867a20 100644 --- a/counterparty-core/counterpartycore/lib/blocks.py +++ b/counterparty-core/counterpartycore/lib/blocks.py @@ -972,6 +972,10 @@ def list_tx(db, block_hash, block_index, block_time, tx_hash, tx_index, decoded_ if block_hash is None or block_hash == config.MEMPOOL_BLOCK_HASH: block_hash = config.MEMPOOL_BLOCK_HASH block_index = config.MEMPOOL_BLOCK_INDEX + existing_tx = ledger.get_transaction(db, tx_hash) + if existing_tx: + util.CURRENT_TX_HASH = None + return tx_index else: assert block_index == util.CURRENT_BLOCK_INDEX From 5673a0539bd0081670aa9c92828e361508bb0de8 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sun, 20 Oct 2024 15:35:56 +0000 Subject: [PATCH 29/37] Fix description checking when creating a fairminter --- counterparty-core/counterpartycore/lib/api/compose.py | 2 +- .../counterpartycore/lib/messages/fairminter.py | 9 ++++++++- release-notes/release-notes-v10.5.0.md | 1 + 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/api/compose.py b/counterparty-core/counterpartycore/lib/api/compose.py index 7557c418b0..7842f7eb5e 100644 --- a/counterparty-core/counterpartycore/lib/api/compose.py +++ b/counterparty-core/counterpartycore/lib/api/compose.py @@ -563,7 +563,7 @@ def compose_fairminter( :param lock_description: If True, the description of the asset is locked :param lock_quantity: If True, the quantity of the asset cannot be changed after the minting :param divisible: If True, the asset is divisible - :param description: The description of the asset + :param description: The description of the asset. Overrides the current description if the asset already exists. """ params = { "source": address, diff --git a/counterparty-core/counterpartycore/lib/messages/fairminter.py b/counterparty-core/counterpartycore/lib/messages/fairminter.py index f6e9314241..839bc8355d 100644 --- a/counterparty-core/counterpartycore/lib/messages/fairminter.py +++ b/counterparty-core/counterpartycore/lib/messages/fairminter.py @@ -147,7 +147,11 @@ def validate( if existing_asset["issuer"] != source: problems.append(f"Asset `{asset_name}` is not issued by `{source}`.") # check if description is locked - if description != "" and existing_asset["description_locked"]: + if ( + description != "" + and existing_asset["description_locked"] + and existing_asset["description"] != description + ): problems.append(f"Description of asset `{asset_name}` is locked.") # check if hard cap is already reached if hard_cap and existing_asset["supply"] + premint_quantity >= hard_cap: @@ -434,6 +438,9 @@ def parse(db, tx, message): if status == "open" and premint_quantity > 0 and soft_cap == 0: pre_minted = True + if existing_asset and description == "": + description = existing_asset["description"] + # insert into fairminters table bindings = { "tx_hash": tx["tx_hash"], diff --git a/release-notes/release-notes-v10.5.0.md b/release-notes/release-notes-v10.5.0.md index e71d1dd49c..cb3a0f691d 100644 --- a/release-notes/release-notes-v10.5.0.md +++ b/release-notes/release-notes-v10.5.0.md @@ -17,6 +17,7 @@ This update requires an automatic reparse from block 865999. - Fix missing compound index on `status`, `tx_index` and `asset_longname` - Fix checking when a fairmint reach the hard cap - Fix divisibility check when creating a fairminter +- Fix description checking when creating a fairminter ## Codebase From 18f03c58a004aa1c51cf8f51536d16c1fe6a905c Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sun, 20 Oct 2024 17:34:39 +0000 Subject: [PATCH 30/37] Tweak signature verification --- counterparty-core/counterpartycore/lib/public_keys.py | 2 +- counterparty-core/counterpartycore/server.py | 9 +++++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/public_keys.py b/counterparty-core/counterpartycore/lib/public_keys.py index 5624f49831..90446625aa 100644 --- a/counterparty-core/counterpartycore/lib/public_keys.py +++ b/counterparty-core/counterpartycore/lib/public_keys.py @@ -169,4 +169,4 @@ =KIdX -----END PGP PUBLIC KEY BLOCK-----""" -PUBLIC_KEYS = [PUBLIC_KEY_1, PUBLIC_KEY_2, PUBLIC_KEY_3] +PUBLIC_KEYS = [PUBLIC_KEY_3, PUBLIC_KEY_1, PUBLIC_KEY_2] diff --git a/counterparty-core/counterpartycore/server.py b/counterparty-core/counterpartycore/server.py index cc47fdb191..6eb3e87f4f 100755 --- a/counterparty-core/counterpartycore/server.py +++ b/counterparty-core/counterpartycore/server.py @@ -954,8 +954,13 @@ def bootstrap_progress(blocknum, blocksize, totalsize): spinner.stop() with log.Spinner("Verifying signature..."): - if not any(util.verify_signature(k, sig_path, tarball_path) for k in PUBLIC_KEYS): - print("Snaptshot was not signed by any trusted keys") + signatue_verified = False + for key in PUBLIC_KEYS: + if util.verify_signature(key, sig_path, tarball_path): + signatue_verified = True + break + if not signatue_verified: + print("Snapshot was not signed by any trusted keys") sys.exit(1) # TODO: check checksum, filenames, etc. From 748e30fb474e2f1eb9c7916e390133f8b6e661d8 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sun, 20 Oct 2024 17:36:27 +0000 Subject: [PATCH 31/37] fix typo --- counterparty-core/counterpartycore/server.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/counterparty-core/counterpartycore/server.py b/counterparty-core/counterpartycore/server.py index 6eb3e87f4f..76a10195d5 100755 --- a/counterparty-core/counterpartycore/server.py +++ b/counterparty-core/counterpartycore/server.py @@ -954,12 +954,12 @@ def bootstrap_progress(blocknum, blocksize, totalsize): spinner.stop() with log.Spinner("Verifying signature..."): - signatue_verified = False + signature_verified = False for key in PUBLIC_KEYS: if util.verify_signature(key, sig_path, tarball_path): - signatue_verified = True + signature_verified = True break - if not signatue_verified: + if not signature_verified: print("Snapshot was not signed by any trusted keys") sys.exit(1) From b0eaeb10964ebd82f6fb5a2891fa5d2062255243 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sun, 20 Oct 2024 17:49:46 +0000 Subject: [PATCH 32/37] don't run the server inside a SQL transaction --- counterparty-core/counterpartycore/server.py | 76 ++++++++++---------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/counterparty-core/counterpartycore/server.py b/counterparty-core/counterpartycore/server.py index ccdd89e7a0..d7df6f871d 100755 --- a/counterparty-core/counterpartycore/server.py +++ b/counterparty-core/counterpartycore/server.py @@ -737,44 +737,44 @@ def start_all(args): bootstrap(no_confirm=True) # initialise database - with database.initialise_db() as db: - blocks.initialise(db) - blocks.check_database_version(db) - database.optimize(db) - - # check software version - check.software_version() - - # API Server v2. - api_server_v2 = api_v2.APIServer() - api_server_v2.start(args) - while not api_server_v2.is_ready(): - logger.trace("Waiting for API server to start...") - time.sleep(0.1) - - # Backend. - connect_to_backend() - - # API Status Poller. - api_status_poller = api_v1.APIStatusPoller() - api_status_poller.daemon = True - api_status_poller.start() - - # API Server v1. - api_server_v1 = api_v1.APIServer() - api_server_v1.daemon = True - api_server_v1.start() - - # Asset conservation checker - asset_conservation_checker = AssetConservationChecker() - asset_conservation_checker.start() - - # catch up - blocks.catch_up(db) - - # Blockchain watcher - logger.info("Watching for new blocks...") - follower_daemon = follow.start_blockchain_watcher(db) + db = database.initialise_db() + blocks.initialise(db) + blocks.check_database_version(db) + database.optimize(db) + + # check software version + check.software_version() + + # API Server v2. + api_server_v2 = api_v2.APIServer() + api_server_v2.start(args) + while not api_server_v2.is_ready(): + logger.trace("Waiting for API server to start...") + time.sleep(0.1) + + # Backend. + connect_to_backend() + + # API Status Poller. + api_status_poller = api_v1.APIStatusPoller() + api_status_poller.daemon = True + api_status_poller.start() + + # API Server v1. + api_server_v1 = api_v1.APIServer() + api_server_v1.daemon = True + api_server_v1.start() + + # Asset conservation checker + asset_conservation_checker = AssetConservationChecker() + asset_conservation_checker.start() + + # catch up + blocks.catch_up(db) + + # Blockchain watcher + logger.info("Watching for new blocks...") + follower_daemon = follow.start_blockchain_watcher(db) except KeyboardInterrupt: logger.warning("Keyboard interrupt!") From e1d99d7aba681430e9499a68bd5d29967cb5fc23 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sun, 20 Oct 2024 17:55:00 +0000 Subject: [PATCH 33/37] fix fixtures --- .../counterpartycore/test/fixtures/api_v2_fixtures.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index 8535eed34f..e94e86e777 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -13444,7 +13444,7 @@ "default": "", "required": false, "type": "str", - "description": "The description of the asset" + "description": "The description of the asset. Overrides the current description if the asset already exists." }, { "name": "encoding", From 534b73a53772428fb32719f2db8616dceb1b0ff6 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sun, 20 Oct 2024 17:56:54 +0000 Subject: [PATCH 34/37] close db --- counterparty-core/counterpartycore/server.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/counterparty-core/counterpartycore/server.py b/counterparty-core/counterpartycore/server.py index d7df6f871d..08f999fb43 100755 --- a/counterparty-core/counterpartycore/server.py +++ b/counterparty-core/counterpartycore/server.py @@ -795,6 +795,8 @@ def start_all(args): follower_daemon.stop() if not config.NO_TELEMETRY: TelemetryOneShot().close() + if db: + database.close(db) backend.addrindexrs.stop() log.shutdown() rsfetcher.stop() From 86ffcfc06bea967122ffee8811b715c0af4515d3 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sun, 20 Oct 2024 19:32:40 +0000 Subject: [PATCH 35/37] update blueprint --- apiary.apib | 3616 ++++++++++++++++++++++++++------------------------- 1 file changed, 1809 insertions(+), 1807 deletions(-) diff --git a/apiary.apib b/apiary.apib index a6d796d6b7..3bd59c85d9 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-10-20 10:15:16.359919. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-10-20 18:04:50.524685. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -180,15 +180,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 550, "event": "NEW_BLOCK", "params": { - "block_hash": "26010869f45387e5100f965afbf68e7ac474fd78998b5120bd34d7046c79ae6f", + "block_hash": "15c3b59a16274e2743ce3a99d689864a2110c643c9ee66a6ae35bef38816a32e", "block_index": 196, - "block_time": 1729419295, + "block_time": 1729447470, "difficulty": 545259519, - "previous_block_hash": "45a86bea1b49d417d16f0cf58b6a3caa438b49eb73a1150d3654da0866e1c113" + "previous_block_hash": "5c6c5a7791c4296aea6388bfb4327a93ff21135621868d137409017797ed3b5e" }, "tx_hash": null, "block_index": 196, - "block_time": 1729419295 + "block_time": 1729447470 } ], "next_cursor": 544, @@ -205,17 +205,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 551, "event": "NEW_TRANSACTION", "params": { - "block_hash": "26010869f45387e5100f965afbf68e7ac474fd78998b5120bd34d7046c79ae6f", + "block_hash": "15c3b59a16274e2743ce3a99d689864a2110c643c9ee66a6ae35bef38816a32e", "block_index": 196, - "block_time": 1729419295, + "block_time": 1729447470, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "destination": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "fee": 0, - "source": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "source": "bcrt1qvkluz3xu0dwkdu6whlkfuz0j7q7etzfpr6le3w", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "tx_index": 62, - "utxos_info": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1 02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", + "utxos_info": "ea7f3e0c42a8b5fd1d052a801db5c9b934b7cbead7d495511fbd6ec515a775d9:1 364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -225,9 +225,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "block_time": 1729419295 + "block_time": 1729447470 } ], "next_cursor": 545, @@ -246,16 +246,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "destination": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "out_index": 0, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "tx_index": 62, - "block_time": 1729419295, + "block_time": 1729447470, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "block_time": 1729419295 + "block_time": 1729447470 } ], "next_cursor": 277, @@ -273,15 +273,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "eead9d1cf4256ee6a5064148d170bd143227743df35f8eaf771be669fbacdefc", - "messages_hash": "ed329d64324602888971f8c2cfcdb14ded0ce770d8b6530880d3cdb734881033", + "ledger_hash": "92f40b235813f85660fe0e245bc8dca845fd340c73a60aabd4099a4236fc3daa", + "messages_hash": "03bd02c4fb712f2d5b962d381353ae13fe6386aeca5c968b6b97daa0bc19ba5f", "transaction_count": 1, - "txlist_hash": "4168e789766cc3d4a561e1a4d9324b0838ffcd186cbb040b504e385bbfab51dc", - "block_time": 1729419295 + "txlist_hash": "65bc95a4ed3a9588527395651776698f1d6dc89df72381127560eff0c603cf4f", + "block_time": 1729447470 }, "tx_hash": null, "block_index": 196, - "block_time": 1729419295 + "block_time": 1729447470 } ], "next_cursor": 549, @@ -299,12 +299,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "tx_index": 62 }, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "block_time": 1729419295 + "block_time": 1729447470 } ], "next_cursor": 548, @@ -327,12 +327,12 @@ Here is a list of events classified by theme and for each an example response: "address": null, "asset": "XCP", "block_index": 196, - "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "event": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "quantity": 1500000000, "tx_index": 62, - "utxo": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", - "utxo_address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", - "block_time": 1729419295, + "utxo": "ea7f3e0c42a8b5fd1d052a801db5c9b934b7cbead7d495511fbd6ec515a775d9:1", + "utxo_address": "bcrt1qvkluz3xu0dwkdu6whlkfuz0j7q7etzfpr6le3w", + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -342,9 +342,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "block_time": 1729419295 + "block_time": 1729447470 } ], "next_cursor": 553, @@ -361,16 +361,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "address": "bcrt1qvkluz3xu0dwkdu6whlkfuz0j7q7etzfpr6le3w", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "event": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -380,9 +380,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "block_time": 1729419295 + "block_time": 1729447470 } ], "next_cursor": 557, @@ -401,14 +401,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 189, - "destination": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "destination": "bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z", "memo": null, "quantity": 10000, - "source": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "source": "bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad", "status": "valid", - "tx_hash": "9e959e4d7992f9ebacdffa06990aeb2dc4ae9b61a3bce8e456f2a54430c2047a", + "tx_hash": "efd3181b365de6670bf1a6547dfbff5b41c38a0175263f31288db454ca4fb931", "tx_index": 55, - "block_time": 1729419244, + "block_time": 1729447424, "asset_info": { "divisible": true, "asset_longname": null, @@ -418,9 +418,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00010000" }, - "tx_hash": "9e959e4d7992f9ebacdffa06990aeb2dc4ae9b61a3bce8e456f2a54430c2047a", + "tx_hash": "efd3181b365de6670bf1a6547dfbff5b41c38a0175263f31288db454ca4fb931", "block_index": 189, - "block_time": 1729419244 + "block_time": 1729447424 } ], "next_cursor": null, @@ -439,15 +439,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 190, - "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "destination": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "status": "valid", - "tx_hash": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", + "tx_hash": "f513fcb3467cbc7dbfe9958aa5ff4ea88d870361cf31448a92d5d8d36f14f104", "tx_index": 56, - "block_time": 1729419248, + "block_time": 1729447428, "asset_info": { "divisible": true, "asset_longname": null, @@ -457,9 +457,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", + "tx_hash": "f513fcb3467cbc7dbfe9958aa5ff4ea88d870361cf31448a92d5d8d36f14f104", "block_index": 190, - "block_time": 1729419248 + "block_time": 1729447428 } ], "next_cursor": 509, @@ -497,20 +497,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 194, - "destination": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "destination": "bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "source": "bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad", "status": "valid", - "tx_hash": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b", + "tx_hash": "bf68e49ab1ffae81693d197b3de1bb5c91e0725e1272f025cd6f15af53e820c7", "tx_index": 60, - "block_time": 1729419276, + "block_time": 1729447456, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b", + "tx_hash": "bf68e49ab1ffae81693d197b3de1bb5c91e0725e1272f025cd6f15af53e820c7", "block_index": 194, - "block_time": 1729419276 + "block_time": 1729447456 } ], "next_cursor": null, @@ -532,15 +532,15 @@ Here is a list of events classified by theme and for each an example response: "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "status": "valid", - "tx_hash": "5954cbb59b8f533b6dc597f67642fe125d0f54d58dd8bd6109079010bc39416b", + "tx_hash": "ccb12d28c1f97f63b03f3d50250a1b73998770f111969ee88849111ec3385cb3", "tx_index": 41, - "block_time": 1729419109, + "block_time": 1729447286, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -554,9 +554,9 @@ Here is a list of events classified by theme and for each an example response: "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "5954cbb59b8f533b6dc597f67642fe125d0f54d58dd8bd6109079010bc39416b", + "tx_hash": "ccb12d28c1f97f63b03f3d50250a1b73998770f111969ee88849111ec3385cb3", "block_index": 154, - "block_time": 1729419109 + "block_time": 1729447286 } ], "next_cursor": null, @@ -589,11 +589,11 @@ Here is a list of events classified by theme and for each an example response: "asset_longname": "A95428959745315388.SUBNUMERIC", "asset_name": "A95428956980101314", "block_index": 161, - "block_time": 1729419150 + "block_time": 1729447328 }, - "tx_hash": "e3935cf288cec52794daa26e2783ae06125ca6965f257e7d9ff3585239657033", + "tx_hash": "5791ae7ad84daa69a8a790a14d20e5a1e0b6997b562968904cdc3a9e2295dc00", "block_index": 161, - "block_time": 1729419150 + "block_time": 1729447328 } ], "next_cursor": 381, @@ -621,22 +621,22 @@ Here is a list of events classified by theme and for each an example response: "description_locked": false, "divisible": true, "fee_paid": 0, - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "status": "valid", "transfer": false, - "tx_hash": "e3935cf288cec52794daa26e2783ae06125ca6965f257e7d9ff3585239657033", + "tx_hash": "5791ae7ad84daa69a8a790a14d20e5a1e0b6997b562968904cdc3a9e2295dc00", "tx_index": 48, - "block_time": 1729419150, + "block_time": 1729447328, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "e3935cf288cec52794daa26e2783ae06125ca6965f257e7d9ff3585239657033", + "tx_hash": "5791ae7ad84daa69a8a790a14d20e5a1e0b6997b562968904cdc3a9e2295dc00", "block_index": 161, - "block_time": 1729419150 + "block_time": 1729447328 } ], "next_cursor": 388, @@ -656,12 +656,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 195, "quantity": 1, - "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "source": "bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z", "status": "valid", "tag": "64657374726f79", - "tx_hash": "857b0199761f230748e7583d48033e2dcc3de8fbea85b2ca971f83f5261bd29a", + "tx_hash": "0b96e09bf2b9b10ea3d1a40906b3834072d951cfcef625173390a816be06fbe3", "tx_index": 61, - "block_time": 1729419281, + "block_time": 1729447460, "asset_info": { "divisible": true, "asset_longname": null, @@ -671,9 +671,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "857b0199761f230748e7583d48033e2dcc3de8fbea85b2ca971f83f5261bd29a", + "tx_hash": "0b96e09bf2b9b10ea3d1a40906b3834072d951cfcef625173390a816be06fbe3", "block_index": 195, - "block_time": 1729419281 + "block_time": 1729447460 } ], "next_cursor": 157, @@ -705,11 +705,11 @@ Here is a list of events classified by theme and for each an example response: "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "status": "open", - "tx_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", + "tx_hash": "3c8fed50434df20de6b1d183d583fde724a128b0f72ce1baae593b03bd361643", "tx_index": 59, - "block_time": 1729419272, + "block_time": 1729447451, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -733,9 +733,9 @@ Here is a list of events classified by theme and for each an example response: "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", + "tx_hash": "3c8fed50434df20de6b1d183d583fde724a128b0f72ce1baae593b03bd361643", "block_index": 193, - "block_time": 1729419272 + "block_time": 1729447451 } ], "next_cursor": 516, @@ -758,20 +758,20 @@ Here is a list of events classified by theme and for each an example response: "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", + "id": "53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3_130bd2486665083b2f9e2f3effca5ee96a8a412f872cb211754d78da496d1465", "match_expire_index": 208, "status": "pending", - "tx0_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "tx0_address": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "tx0_block_index": 186, "tx0_expiration": 21, - "tx0_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", + "tx0_hash": "53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3", "tx0_index": 51, - "tx1_address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "tx1_address": "bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad", "tx1_block_index": 188, "tx1_expiration": 21, - "tx1_hash": "f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", + "tx1_hash": "130bd2486665083b2f9e2f3effca5ee96a8a412f872cb211754d78da496d1465", "tx1_index": 54, - "block_time": 1729419239, + "block_time": 1729447419, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -790,9 +790,9 @@ Here is a list of events classified by theme and for each an example response: "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", + "tx_hash": "130bd2486665083b2f9e2f3effca5ee96a8a412f872cb211754d78da496d1465", "block_index": 188, - "block_time": 1729419239 + "block_time": 1729447419 } ], "next_cursor": 475, @@ -810,11 +810,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9" + "tx_hash": "51bf0f868d20a7ffb1ffb95dda008d72d5440f3c08ebb52cea5e21416bbfe8fd" }, - "tx_hash": "f034d2fc20879fa54967667975c28e61b9e666da655c2cdeef7b284f057afff6", + "tx_hash": "0c6283d30a020a060bd9b8feb6949b3aa279be9b407f9d8ef97015053977f958", "block_index": 192, - "block_time": 1729419257 + "block_time": 1729447437 } ], "next_cursor": 490, @@ -832,11 +832,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6" + "tx_hash": "ea35ac149cac7ce65aec3f44fde03ff76f1a764dbd2ec69cfdb725a6e730cc7b" }, - "tx_hash": "093e49f3c5553048e93710a95ae3f813e9e9ed5288b166ef5352fa88f6ee9d32", + "tx_hash": "410d59644f017101215e824abcdc0b0f1cd1d477d42a41ddfd5d545703126065", "block_index": 187, - "block_time": 1729419235 + "block_time": 1729447415 } ], "next_cursor": null, @@ -853,13 +853,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 481, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", - "order_match_id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", + "id": "53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3_ea35ac149cac7ce65aec3f44fde03ff76f1a764dbd2ec69cfdb725a6e730cc7b", + "order_match_id": "53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3_ea35ac149cac7ce65aec3f44fde03ff76f1a764dbd2ec69cfdb725a6e730cc7b", "status": "completed" }, - "tx_hash": "093e49f3c5553048e93710a95ae3f813e9e9ed5288b166ef5352fa88f6ee9d32", + "tx_hash": "410d59644f017101215e824abcdc0b0f1cd1d477d42a41ddfd5d545703126065", "block_index": 187, - "block_time": 1729419235 + "block_time": 1729447415 } ], "next_cursor": 454, @@ -878,18 +878,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 187, "btc_amount": 2000, - "destination": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "order_match_id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", - "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "destination": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "order_match_id": "53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3_ea35ac149cac7ce65aec3f44fde03ff76f1a764dbd2ec69cfdb725a6e730cc7b", + "source": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "status": "valid", - "tx_hash": "093e49f3c5553048e93710a95ae3f813e9e9ed5288b166ef5352fa88f6ee9d32", + "tx_hash": "410d59644f017101215e824abcdc0b0f1cd1d477d42a41ddfd5d545703126065", "tx_index": 53, - "block_time": 1729419235, + "block_time": 1729447415, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "093e49f3c5553048e93710a95ae3f813e9e9ed5288b166ef5352fa88f6ee9d32", + "tx_hash": "410d59644f017101215e824abcdc0b0f1cd1d477d42a41ddfd5d545703126065", "block_index": 187, - "block_time": 1729419235 + "block_time": 1729447415 } ], "next_cursor": null, @@ -907,16 +907,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "offer_hash": "51bf0f868d20a7ffb1ffb95dda008d72d5440f3c08ebb52cea5e21416bbfe8fd", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "status": "valid", - "tx_hash": "f034d2fc20879fa54967667975c28e61b9e666da655c2cdeef7b284f057afff6", + "tx_hash": "0c6283d30a020a060bd9b8feb6949b3aa279be9b407f9d8ef97015053977f958", "tx_index": 58, - "block_time": 1729419257 + "block_time": 1729447437 }, - "tx_hash": "f034d2fc20879fa54967667975c28e61b9e666da655c2cdeef7b284f057afff6", + "tx_hash": "0c6283d30a020a060bd9b8feb6949b3aa279be9b407f9d8ef97015053977f958", "block_index": 192, - "block_time": 1729419257 + "block_time": 1729447437 } ], "next_cursor": null, @@ -934,13 +934,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 184, - "order_hash": "97a614c1cd5ebc6475742cff5c39401b7d7a1c7b9432bf2f31b973c81a8ceeac", - "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", - "block_time": 1729419167 + "order_hash": "a65fbad5f7e83c65b8c3b5ab58dab74fa7798d0f7497da4f2d17c09f8443df59", + "source": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", + "block_time": 1729447344 }, "tx_hash": null, "block_index": 184, - "block_time": 1729419167 + "block_time": 1729447344 } ], "next_cursor": 460, @@ -958,14 +958,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 184, - "order_match_id": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b_97a614c1cd5ebc6475742cff5c39401b7d7a1c7b9432bf2f31b973c81a8ceeac", - "tx0_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "tx1_address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", - "block_time": 1729419167 + "order_match_id": "e3b475745235defa74a454101dd553cc3a3014ad6473b986467cfdb04dd19b5d_a65fbad5f7e83c65b8c3b5ab58dab74fa7798d0f7497da4f2d17c09f8443df59", + "tx0_address": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "tx1_address": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", + "block_time": 1729447344 }, "tx_hash": null, "block_index": 184, - "block_time": 1729419167 + "block_time": 1729447344 } ], "next_cursor": null, @@ -990,14 +990,14 @@ Here is a list of events classified by theme and for each an example response: "escrow_quantity": 10000, "give_quantity": 1, "give_remaining": 10000, - "oracle_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", - "origin": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "oracle_address": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", + "origin": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "satoshirate": 1, - "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "source": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "status": 0, - "tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", + "tx_hash": "97a6a8715419af93dd8db32ab9443fc20bf92b50e05a20bad0aa71a5bbab6d31", "tx_index": 33, - "block_time": 1729419074, + "block_time": 1729447252, "asset_info": { "divisible": true, "asset_longname": null, @@ -1010,9 +1010,9 @@ Here is a list of events classified by theme and for each an example response: "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", + "tx_hash": "97a6a8715419af93dd8db32ab9443fc20bf92b50e05a20bad0aa71a5bbab6d31", "block_index": 146, - "block_time": 1729419074 + "block_time": 1729447252 } ], "next_cursor": 254, @@ -1032,9 +1032,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "source": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "status": 0, - "tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", + "tx_hash": "97a6a8715419af93dd8db32ab9443fc20bf92b50e05a20bad0aa71a5bbab6d31", "asset_info": { "divisible": true, "asset_longname": null, @@ -1044,9 +1044,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "block_time": 1729419295 + "block_time": 1729447470 } ], "next_cursor": 302, @@ -1065,13 +1065,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "mgm25pVEpj1Ey3H9pdvQUT6kCysXns3ZpB", + "destination": "n2QS8qnKWbBiGnzYZTMNVjNwQX8Pe9NYa5", "dispense_quantity": 10, - "dispenser_tx_hash": "03163da185ecd4f58783c6feb8cdf29574011d5410f7983f983644aaaec1d685", - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "tx_hash": "5bf2a1fde45df978c1bc9fb8fb6cf057b80b9b6c8f39021ca122b3d9f3276246", + "dispenser_tx_hash": "0e7f77c7eb398dc9d8a016b57e8d90470eccce2a1e740a0289757820b0df3bb9", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "tx_hash": "7724d6e09aab65ed3728b7421ef61cd90d5ccfd32574a90ac255c45991c07862", "tx_index": 31, - "block_time": 1729419056, + "block_time": 1729447243, "asset_info": { "divisible": true, "asset_longname": null, @@ -1081,9 +1081,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "5bf2a1fde45df978c1bc9fb8fb6cf057b80b9b6c8f39021ca122b3d9f3276246", + "tx_hash": "7724d6e09aab65ed3728b7421ef61cd90d5ccfd32574a90ac255c45991c07862", "block_index": 144, - "block_time": 1729419056 + "block_time": 1729447243 } ], "next_cursor": null, @@ -1103,14 +1103,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "destination": "bcrt1qvkluz3xu0dwkdu6whlkfuz0j7q7etzfpr6le3w", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", - "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "dispenser_tx_hash": "97a6a8715419af93dd8db32ab9443fc20bf92b50e05a20bad0aa71a5bbab6d31", + "source": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "tx_index": 62, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -1121,9 +1121,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "block_time": 1729419295 + "block_time": 1729447470 } ], "next_cursor": 280, @@ -1145,19 +1145,19 @@ Here is a list of events classified by theme and for each an example response: "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "source": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "fcd3ac244dcdca9116bd6de331c88e6b7fc07a65cbc5f45a7f4f2731ad085430", + "tx_hash": "0b4133821f51e6916981570ba2585bbb1a69dd93eefbd74bb2dd3b1784387ad6", "tx_index": 25, "value": 66600.0, - "block_time": 1729419020, + "block_time": 1729447216, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "fcd3ac244dcdca9116bd6de331c88e6b7fc07a65cbc5f45a7f4f2731ad085430", + "tx_hash": "0b4133821f51e6916981570ba2585bbb1a69dd93eefbd74bb2dd3b1784387ad6", "block_index": 138, - "block_time": 1729419020 + "block_time": 1729447216 } ], "next_cursor": 213, @@ -1195,16 +1195,16 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "start_block": 0, "status": "open", - "tx_hash": "c8665b67e71ee218d3415890729798887bbc54fb90e4c5e9cfeb24ce802a5b34", + "tx_hash": "e76e7d705f58d6716ca7d02d11d7d384250546ea9d960167434cfae4b41e13fb", "tx_index": 42, - "block_time": 1729419113 + "block_time": 1729447301 }, - "tx_hash": "c8665b67e71ee218d3415890729798887bbc54fb90e4c5e9cfeb24ce802a5b34", + "tx_hash": "e76e7d705f58d6716ca7d02d11d7d384250546ea9d960167434cfae4b41e13fb", "block_index": 155, - "block_time": 1729419113 + "block_time": 1729447301 } ], "next_cursor": 196, @@ -1222,11 +1222,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "5dbec8408aedd6f8d6d3e7996757c0f4cc868053ef22cea6e506b00fda3c0efd" + "tx_hash": "bd690021efec814e7fe79fe8bbe7ff5a11b9eb1340ce43fa8d60363a7cbb875d" }, "tx_hash": null, "block_index": 130, - "block_time": 1729418986 + "block_time": 1729447182 } ], "next_cursor": 110, @@ -1247,24 +1247,24 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "f38ae5c8abb6b49f9591e5eaae9ea1d072612f70aaa73853f25ba05480b5076c", + "fairminter_tx_hash": "499cda6c892bff542a02d2b575762157df777df8ab8215209fccd8e795319bdd", "paid_quantity": 34, - "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "source": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "status": "valid", - "tx_hash": "27f936d6cbc64295fbb696767820d4b39f85fcf3a8bd6345ef8efaf104da5fd0", + "tx_hash": "668bf685b6cd3b67b04a2443b8fbe9683abfd2ea36ddc8459375320b4d6d1625", "tx_index": 23, - "block_time": 1729419011, + "block_time": 1729447208, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false } }, - "tx_hash": "27f936d6cbc64295fbb696767820d4b39f85fcf3a8bd6345ef8efaf104da5fd0", + "tx_hash": "668bf685b6cd3b67b04a2443b8fbe9683abfd2ea36ddc8459375320b4d6d1625", "block_index": 136, - "block_time": 1729419011 + "block_time": 1729447208 } ], "next_cursor": 190, @@ -1285,28 +1285,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 152, - "destination": "19241abee68c758ce2acf9aa205d89e2974a82660ba244e8539a1e2db77bf4f6:1", + "destination": "44cf9bd27ce95d617703e5bede8f76b5a05494f84aab5c8d1d902cb91e6af2f6:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "status": "valid", - "tx_hash": "19241abee68c758ce2acf9aa205d89e2974a82660ba244e8539a1e2db77bf4f6", + "tx_hash": "44cf9bd27ce95d617703e5bede8f76b5a05494f84aab5c8d1d902cb91e6af2f6", "tx_index": 39, - "block_time": 1729419100, + "block_time": 1729447278, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "19241abee68c758ce2acf9aa205d89e2974a82660ba244e8539a1e2db77bf4f6", + "tx_hash": "44cf9bd27ce95d617703e5bede8f76b5a05494f84aab5c8d1d902cb91e6af2f6", "block_index": 152, - "block_time": 1729419100 + "block_time": 1729447278 } ], "next_cursor": 296, @@ -1325,28 +1325,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qg6cl5djlpjf8ne6z88eh7rpjt2c9ttupg48l6x", + "destination": "bcrt1qlygmyzhqckmv8007adm0q274ygpaa0zmtlmnt6", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "b97859d82df08aec2a7034a1721052c7eb6e72e5a41716e18796c69e00b4a59b:0", + "source": "db2fc3ded8c751431df8bb8e84c166f6f64cf606ee00df30b3852e9324a6547a:0", "status": "valid", - "tx_hash": "b0bd44f210f49eeff94e14b96de922cb147dc9069d998d38e9ca17d5ad033d1d", + "tx_hash": "5cbb783420ffe519de23b1565c112bffd39de2a6822f18e2d2a12f80c0d36d58", "tx_index": 38, - "block_time": 1729419095, + "block_time": 1729447273, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "b0bd44f210f49eeff94e14b96de922cb147dc9069d998d38e9ca17d5ad033d1d", + "tx_hash": "5cbb783420ffe519de23b1565c112bffd39de2a6822f18e2d2a12f80c0d36d58", "block_index": 151, - "block_time": 1729419095 + "block_time": 1729447273 } ], "next_cursor": null, @@ -1365,14 +1365,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 196, - "destination": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", + "destination": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453:0", "msg_index": 1, "quantity": 1500000000, - "source": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", + "source": "ea7f3e0c42a8b5fd1d052a801db5c9b934b7cbead7d495511fbd6ec515a775d9:1", "status": "valid", - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "tx_index": 62, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -1382,9 +1382,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "block_time": 1729419295 + "block_time": 1729447470 } ], "next_cursor": 555, @@ -1406,17 +1406,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qwel02ewd5s0334xz3z95wd9t2ycslyadsevzhv", + "source": "bcrt1qyg8fqfmjduy4dytlcctt0c58pfzmzwxkjue25m", "status": "valid", - "tx_hash": "aeb9c55ef28fc0085850c3f2ab1825dcc5c218dd40c691ca08b32a7f0413ef81", + "tx_hash": "1e44004c0faa5346a209e8ef47274e3e9880c0dadae72597eac4556a14403f47", "tx_index": 9, - "block_time": 1729418948, + "block_time": 1729447143, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "aeb9c55ef28fc0085850c3f2ab1825dcc5c218dd40c691ca08b32a7f0413ef81", + "tx_hash": "1e44004c0faa5346a209e8ef47274e3e9880c0dadae72597eac4556a14403f47", "block_index": 121, - "block_time": 1729418948 + "block_time": 1729447143 } ], "next_cursor": 65, @@ -1473,61 +1473,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 196, - "block_hash": "26010869f45387e5100f965afbf68e7ac474fd78998b5120bd34d7046c79ae6f", - "block_time": 1729419295, - "previous_block_hash": "45a86bea1b49d417d16f0cf58b6a3caa438b49eb73a1150d3654da0866e1c113", + "block_hash": "15c3b59a16274e2743ce3a99d689864a2110c643c9ee66a6ae35bef38816a32e", + "block_time": 1729447470, + "previous_block_hash": "5c6c5a7791c4296aea6388bfb4327a93ff21135621868d137409017797ed3b5e", "difficulty": 545259519, - "ledger_hash": "eead9d1cf4256ee6a5064148d170bd143227743df35f8eaf771be669fbacdefc", - "txlist_hash": "4168e789766cc3d4a561e1a4d9324b0838ffcd186cbb040b504e385bbfab51dc", - "messages_hash": "ed329d64324602888971f8c2cfcdb14ded0ce770d8b6530880d3cdb734881033", + "ledger_hash": "92f40b235813f85660fe0e245bc8dca845fd340c73a60aabd4099a4236fc3daa", + "txlist_hash": "65bc95a4ed3a9588527395651776698f1d6dc89df72381127560eff0c603cf4f", + "messages_hash": "03bd02c4fb712f2d5b962d381353ae13fe6386aeca5c968b6b97daa0bc19ba5f", "transaction_count": 1, "confirmed": true }, { "block_index": 195, - "block_hash": "45a86bea1b49d417d16f0cf58b6a3caa438b49eb73a1150d3654da0866e1c113", - "block_time": 1729419281, - "previous_block_hash": "714288ba07f8f87419ab198860e8bb0175209a1f6f0566ee68441fdb0a948d13", + "block_hash": "5c6c5a7791c4296aea6388bfb4327a93ff21135621868d137409017797ed3b5e", + "block_time": 1729447460, + "previous_block_hash": "71189bb7c57980feb1f7cc731a4668e278142d5749cd37628f0429baf9b694c6", "difficulty": 545259519, - "ledger_hash": "8d4a675808c86f3d5cf275fbb2b01ebcb78ff46be836ae5196368422f3518c58", - "txlist_hash": "6c00273b2d15d31cadacc162ba8812c4c69ffec8f2bc984e069159713b46fe6c", - "messages_hash": "f9546c1da9c14cc0197a5b5cf5e80bbb1b830595b6dbbd1e4a2c3a32e38c1ba2", + "ledger_hash": "b6f364ac1406ca8b71cdf2639f491a355eb7e61491477a94d3376b4a137fe563", + "txlist_hash": "89fa86f1c1f4b2661e5b736046dea3f09386a49e54682e2c8cf2d4cd8936ad26", + "messages_hash": "ef4ffcaecb7f71295b46d0fa17749b1f21e8b1b9a170b1700a3dc39f9fea8fd4", "transaction_count": 1, "confirmed": true }, { "block_index": 194, - "block_hash": "714288ba07f8f87419ab198860e8bb0175209a1f6f0566ee68441fdb0a948d13", - "block_time": 1729419276, - "previous_block_hash": "57dfced2294a097ac30ded16acb47a12f446095f608438f62863069eb55f26a9", + "block_hash": "71189bb7c57980feb1f7cc731a4668e278142d5749cd37628f0429baf9b694c6", + "block_time": 1729447456, + "previous_block_hash": "3db74a68c196dec9f8e79ba19abbf571081d3131d6ecd5aee8199418f1db8b4b", "difficulty": 545259519, - "ledger_hash": "b23221b39e36fbdaf365a1416a2137f711bdc4c62bffb6cfa5cb35035789df0c", - "txlist_hash": "0f0866eae37543ff2b55a46ec365f0d8f884827de8a1c455ff871d33ea32bcf3", - "messages_hash": "150f3f2112bc4a497ace7a7c6e75acd2ee44c3db7eaddacc49dcbfd24abb4726", + "ledger_hash": "92167e6e4a2a2b96a9d5161152dae780e41ec120eac67f3bd9db615885325316", + "txlist_hash": "ac005b7fc82c26596eeb5a210d8d0bcf944c2d2b61b080f30e2373f40715d0f8", + "messages_hash": "75bcbf8740882de88fa5f1bfa0f9c200c7e17c7fcd0b65937058c3026f828d06", "transaction_count": 1, "confirmed": true }, { "block_index": 193, - "block_hash": "57dfced2294a097ac30ded16acb47a12f446095f608438f62863069eb55f26a9", - "block_time": 1729419272, - "previous_block_hash": "3658d2f90d22c5ac539825f061b3e1485c9d4cc338f3f9f38f7f545f4254effd", + "block_hash": "3db74a68c196dec9f8e79ba19abbf571081d3131d6ecd5aee8199418f1db8b4b", + "block_time": 1729447451, + "previous_block_hash": "36f0f07cfc44e0b08783268e11509ef600352857da8cad31618b92375ed5b7da", "difficulty": 545259519, - "ledger_hash": "0e3b11652d642ddf2981f2f07cf7782c851ba0b7d4e6beb5b0e7e2a6a72a2fda", - "txlist_hash": "2e0a754fcc764ec28ca313c161c5ddda153c3da1316ae2cc2bda8eb1b25aa916", - "messages_hash": "0dc42b030d4b5ce7631274571320b2003f089b2b941310ff17687a1a7143d91a", + "ledger_hash": "ff172125f62884792b6acccaf7d4485bbfcfb8d2ac2b9c4092c4ee346dc442ec", + "txlist_hash": "1df6b74a2e1339bb84fb1f007a82350c0b341640952e53650dd56f91377fc309", + "messages_hash": "4cd271ccda3d3c0a81124040b0230cd8bf38634d45db3dc4938231524b8f30ce", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "3658d2f90d22c5ac539825f061b3e1485c9d4cc338f3f9f38f7f545f4254effd", - "block_time": 1729419257, - "previous_block_hash": "5a79892b45761c6b06ee6c4b9265e5b99130ebf3f085b1f3f60c31c331cb99c7", + "block_hash": "36f0f07cfc44e0b08783268e11509ef600352857da8cad31618b92375ed5b7da", + "block_time": 1729447437, + "previous_block_hash": "4d68da1b72dc251d1178c430c8fa8957fe6a54d8316e506559bfa4e4afbfc1dc", "difficulty": 545259519, - "ledger_hash": "ba9d083664623fb74cb71cce6e292b5ae927fd52814e53759c82ac38de7b52dc", - "txlist_hash": "24644b6aebff4a38f6034c3d8e6b52630235a164b265c8b3f8ff72b548215193", - "messages_hash": "7574667d077c75564e36a68f0b931f74c74ece654314b7d527fda809ce11e73d", + "ledger_hash": "f00e97aeae3b623ba6158155b031ed0a246655ad37e703e0a39673626c2d73b8", + "txlist_hash": "d1db73bff9acb8bf13d0117a9c3838c513514b02b356fdce757ba1fc09f15539", + "messages_hash": "35a39df1be22ecb5286982d78327ecd69ecfdb2d2865a990f2b5bef8356b2ade", "transaction_count": 1, "confirmed": true } @@ -1564,13 +1564,13 @@ Return the information of a block { "result": { "block_index": 196, - "block_hash": "26010869f45387e5100f965afbf68e7ac474fd78998b5120bd34d7046c79ae6f", - "block_time": 1729419295, - "previous_block_hash": "45a86bea1b49d417d16f0cf58b6a3caa438b49eb73a1150d3654da0866e1c113", + "block_hash": "15c3b59a16274e2743ce3a99d689864a2110c643c9ee66a6ae35bef38816a32e", + "block_time": 1729447470, + "previous_block_hash": "5c6c5a7791c4296aea6388bfb4327a93ff21135621868d137409017797ed3b5e", "difficulty": 545259519, - "ledger_hash": "eead9d1cf4256ee6a5064148d170bd143227743df35f8eaf771be669fbacdefc", - "txlist_hash": "4168e789766cc3d4a561e1a4d9324b0838ffcd186cbb040b504e385bbfab51dc", - "messages_hash": "ed329d64324602888971f8c2cfcdb14ded0ce770d8b6530880d3cdb734881033", + "ledger_hash": "92f40b235813f85660fe0e245bc8dca845fd340c73a60aabd4099a4236fc3daa", + "txlist_hash": "65bc95a4ed3a9588527395651776698f1d6dc89df72381127560eff0c603cf4f", + "messages_hash": "03bd02c4fb712f2d5b962d381353ae13fe6386aeca5c968b6b97daa0bc19ba5f", "transaction_count": 1, "confirmed": true } @@ -1582,7 +1582,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `26010869f45387e5100f965afbf68e7ac474fd78998b5120bd34d7046c79ae6f` (str, required) - The index of the block to return + + block_hash: `15c3b59a16274e2743ce3a99d689864a2110c643c9ee66a6ae35bef38816a32e` (str, required) - The index of the block to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -1594,13 +1594,13 @@ Return the information of a block { "result": { "block_index": 196, - "block_hash": "26010869f45387e5100f965afbf68e7ac474fd78998b5120bd34d7046c79ae6f", - "block_time": 1729419295, - "previous_block_hash": "45a86bea1b49d417d16f0cf58b6a3caa438b49eb73a1150d3654da0866e1c113", + "block_hash": "15c3b59a16274e2743ce3a99d689864a2110c643c9ee66a6ae35bef38816a32e", + "block_time": 1729447470, + "previous_block_hash": "5c6c5a7791c4296aea6388bfb4327a93ff21135621868d137409017797ed3b5e", "difficulty": 545259519, - "ledger_hash": "eead9d1cf4256ee6a5064148d170bd143227743df35f8eaf771be669fbacdefc", - "txlist_hash": "4168e789766cc3d4a561e1a4d9324b0838ffcd186cbb040b504e385bbfab51dc", - "messages_hash": "ed329d64324602888971f8c2cfcdb14ded0ce770d8b6530880d3cdb734881033", + "ledger_hash": "92f40b235813f85660fe0e245bc8dca845fd340c73a60aabd4099a4236fc3daa", + "txlist_hash": "65bc95a4ed3a9588527395651776698f1d6dc89df72381127560eff0c603cf4f", + "messages_hash": "03bd02c4fb712f2d5b962d381353ae13fe6386aeca5c968b6b97daa0bc19ba5f", "transaction_count": 1, "confirmed": true } @@ -1631,17 +1631,17 @@ Returns the transactions of a block "result": [ { "tx_index": 62, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "block_hash": "26010869f45387e5100f965afbf68e7ac474fd78998b5120bd34d7046c79ae6f", - "block_time": 1729419295, - "source": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", - "destination": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "block_hash": "15c3b59a16274e2743ce3a99d689864a2110c643c9ee66a6ae35bef38816a32e", + "block_time": 1729447470, + "source": "bcrt1qvkluz3xu0dwkdu6whlkfuz0j7q7etzfpr6le3w", + "destination": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1 02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", + "utxos_info": "ea7f3e0c42a8b5fd1d052a801db5c9b934b7cbead7d495511fbd6ec515a775d9:1 364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1687,11 +1687,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "eead9d1cf4256ee6a5064148d170bd143227743df35f8eaf771be669fbacdefc", - "messages_hash": "ed329d64324602888971f8c2cfcdb14ded0ce770d8b6530880d3cdb734881033", + "ledger_hash": "92f40b235813f85660fe0e245bc8dca845fd340c73a60aabd4099a4236fc3daa", + "messages_hash": "03bd02c4fb712f2d5b962d381353ae13fe6386aeca5c968b6b97daa0bc19ba5f", "transaction_count": 1, - "txlist_hash": "4168e789766cc3d4a561e1a4d9324b0838ffcd186cbb040b504e385bbfab51dc", - "block_time": 1729419295 + "txlist_hash": "65bc95a4ed3a9588527395651776698f1d6dc89df72381127560eff0c603cf4f", + "block_time": 1729447470 }, "tx_hash": null }, @@ -1700,10 +1700,10 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "tx_index": 62 }, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89" + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453" }, { "event_index": 561, @@ -1712,14 +1712,14 @@ Returns the events of a block "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "destination": "bcrt1qvkluz3xu0dwkdu6whlkfuz0j7q7etzfpr6le3w", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", - "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "dispenser_tx_hash": "97a6a8715419af93dd8db32ab9443fc20bf92b50e05a20bad0aa71a5bbab6d31", + "source": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "tx_index": 62, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -1730,7 +1730,7 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89" + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453" }, { "event_index": 560, @@ -1739,9 +1739,9 @@ Returns the events of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "source": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "status": 0, - "tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", + "tx_hash": "97a6a8715419af93dd8db32ab9443fc20bf92b50e05a20bad0aa71a5bbab6d31", "asset_info": { "divisible": true, "asset_longname": null, @@ -1751,22 +1751,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89" + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453" }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "address": "bcrt1qvkluz3xu0dwkdu6whlkfuz0j7q7etzfpr6le3w", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "event": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -1776,7 +1776,7 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89" + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453" } ], "next_cursor": 558, @@ -1859,16 +1859,16 @@ Returns the events of a block filtered by event "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "address": "bcrt1qvkluz3xu0dwkdu6whlkfuz0j7q7etzfpr6le3w", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "event": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -1878,7 +1878,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89" + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453" }, { "event_index": 557, @@ -1888,12 +1888,12 @@ Returns the events of a block filtered by event "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "event": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "quantity": 1500000000, "tx_index": 62, - "utxo": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", - "utxo_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", - "block_time": 1729419295, + "utxo": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453:0", + "utxo_address": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -1903,7 +1903,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "15.00000000" }, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89" + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453" }, { "event_index": 554, @@ -1913,22 +1913,22 @@ Returns the events of a block filtered by event "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "event": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "quantity": 1500000000, "tx_index": 62, - "utxo": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", - "utxo_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", - "block_time": 1729419295, + "utxo": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453:0", + "utxo_address": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", + "block_time": 1729447470, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89" + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453" } ], "next_cursor": null, @@ -1991,16 +1991,16 @@ Returns the credits of a block "result": [ { "block_index": 196, - "address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "address": "bcrt1qvkluz3xu0dwkdu6whlkfuz0j7q7etzfpr6le3w", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "event": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "tx_index": 62, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -2016,12 +2016,12 @@ Returns the credits of a block "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "event": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "tx_index": 62, - "utxo": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", - "utxo_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "utxo": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453:0", + "utxo_address": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "confirmed": true, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -2037,16 +2037,16 @@ Returns the credits of a block "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "event": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "tx_index": 62, - "utxo": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", - "utxo_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "utxo": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453:0", + "utxo_address": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "confirmed": true, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -2106,12 +2106,12 @@ Returns the debits of a block "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "event": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "tx_index": 62, - "utxo": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", - "utxo_address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "utxo": "ea7f3e0c42a8b5fd1d052a801db5c9b934b7cbead7d495511fbd6ec515a775d9:1", + "utxo_address": "bcrt1qvkluz3xu0dwkdu6whlkfuz0j7q7etzfpr6le3w", "confirmed": true, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -2127,16 +2127,16 @@ Returns the debits of a block "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "event": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "tx_index": 62, - "utxo": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", - "utxo_address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "utxo": "ea7f3e0c42a8b5fd1d052a801db5c9b934b7cbead7d495511fbd6ec515a775d9:1", + "utxo_address": "bcrt1qvkluz3xu0dwkdu6whlkfuz0j7q7etzfpr6le3w", "confirmed": true, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -2172,24 +2172,24 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "97a614c1cd5ebc6475742cff5c39401b7d7a1c7b9432bf2f31b973c81a8ceeac", + "object_id": "a65fbad5f7e83c65b8c3b5ab58dab74fa7798d0f7497da4f2d17c09f8443df59", "block_index": 184, "confirmed": true, - "block_time": 1729419167 + "block_time": 1729447344 }, { "type": "order", - "object_id": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b", + "object_id": "e3b475745235defa74a454101dd553cc3a3014ad6473b986467cfdb04dd19b5d", "block_index": 184, "confirmed": true, - "block_time": 1729419167 + "block_time": 1729447344 }, { "type": "order_match", - "object_id": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b_97a614c1cd5ebc6475742cff5c39401b7d7a1c7b9432bf2f31b973c81a8ceeac", + "object_id": "e3b475745235defa74a454101dd553cc3a3014ad6473b986467cfdb04dd19b5d_a65fbad5f7e83c65b8c3b5ab58dab74fa7798d0f7497da4f2d17c09f8443df59", "block_index": 184, "confirmed": true, - "block_time": 1729419167 + "block_time": 1729447344 } ], "next_cursor": null, @@ -2221,13 +2221,13 @@ Returns the cancels of a block "result": [ { "tx_index": 58, - "tx_hash": "f034d2fc20879fa54967667975c28e61b9e666da655c2cdeef7b284f057afff6", + "tx_hash": "0c6283d30a020a060bd9b8feb6949b3aa279be9b407f9d8ef97015053977f958", "block_index": 192, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "offer_hash": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "offer_hash": "51bf0f868d20a7ffb1ffb95dda008d72d5440f3c08ebb52cea5e21416bbfe8fd", "status": "valid", "confirmed": true, - "block_time": 1729419257 + "block_time": 1729447437 } ], "next_cursor": null, @@ -2259,15 +2259,15 @@ Returns the destructions of a block "result": [ { "tx_index": 61, - "tx_hash": "857b0199761f230748e7583d48033e2dcc3de8fbea85b2ca971f83f5261bd29a", + "tx_hash": "0b96e09bf2b9b10ea3d1a40906b3834072d951cfcef625173390a816be06fbe3", "block_index": 195, - "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "source": "bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1729419281, + "block_time": 1729447460, "asset_info": { "divisible": true, "asset_longname": null, @@ -2307,14 +2307,14 @@ Returns the issuances of a block "result": [ { "tx_index": 48, - "tx_hash": "e3935cf288cec52794daa26e2783ae06125ca6965f257e7d9ff3585239657033", + "tx_hash": "5791ae7ad84daa69a8a790a14d20e5a1e0b6997b562968904cdc3a9e2295dc00", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "transfer": false, "callable": false, "call_date": 0, @@ -2329,7 +2329,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729419150, + "block_time": 1729447328, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -2363,10 +2363,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 62, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "source": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", - "destination": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", + "source": "ea7f3e0c42a8b5fd1d052a801db5c9b934b7cbead7d495511fbd6ec515a775d9:1", + "destination": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -2374,7 +2374,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -2387,10 +2387,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 62, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "source": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", - "destination": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", + "source": "ea7f3e0c42a8b5fd1d052a801db5c9b934b7cbead7d495511fbd6ec515a775d9:1", + "destination": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -2398,11 +2398,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -2440,27 +2440,27 @@ Returns the dispenses of a block { "tx_index": 62, "dispense_index": 0, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", - "destination": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "source": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", + "destination": "bcrt1qvkluz3xu0dwkdu6whlkfuz0j7q7etzfpr6le3w", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", + "dispenser_tx_hash": "97a6a8715419af93dd8db32ab9443fc20bf92b50e05a20bad0aa71a5bbab6d31", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "source": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "oracle_address": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "last_status_tx_hash": null, - "origin": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "origin": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2475,7 +2475,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -2516,16 +2516,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 60, - "tx_hash": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b", + "tx_hash": "bf68e49ab1ffae81693d197b3de1bb5c91e0725e1272f025cd6f15af53e820c7", "block_index": 194, - "source": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", - "destination": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "source": "bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad", + "destination": "bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729419276, + "block_time": 1729447456, "fee_paid_normalized": "0.00600000" } ], @@ -2559,17 +2559,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "fcd3ac244dcdca9116bd6de331c88e6b7fc07a65cbc5f45a7f4f2731ad085430", + "tx_hash": "0b4133821f51e6916981570ba2585bbb1a69dd93eefbd74bb2dd3b1784387ad6", "block_index": 138, - "block_hash": "6c467086764806b7735d334249f86774ffb144f79bb74c42594c1a9eefbba122", - "block_time": 1729419020, - "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "block_hash": "2c7e2f29fb65b57d8c91fcc7959190aa2d27921c9d2526d8ea6dcbc08b4b9445", + "block_time": 1729447216, + "source": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "fcd3ac244dcdca9116bd6de331c88e6b7fc07a65cbc5f45a7f4f2731ad085430:1", + "utxos_info": "0b4133821f51e6916981570ba2585bbb1a69dd93eefbd74bb2dd3b1784387ad6:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2594,25 +2594,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 53, - "tx_hash": "093e49f3c5553048e93710a95ae3f813e9e9ed5288b166ef5352fa88f6ee9d32", + "tx_hash": "410d59644f017101215e824abcdc0b0f1cd1d477d42a41ddfd5d545703126065", "block_index": 187, - "block_hash": "1e3ef7feb2b0cc9956125c6848ee0b6e7b21aaf7ce801dd0083afef4b9c163fa", - "block_time": 1729419235, - "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", - "destination": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "block_hash": "4b648b3498eddaf2a6de051459f0b2def1fa11208b60b5b6028ad7a771c21688", + "block_time": 1729447415, + "source": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", + "destination": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "btc_amount": 2000, "fee": 10000, - "data": "0bb4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", + "data": "0b53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3ea35ac149cac7ce65aec3f44fde03ff76f1a764dbd2ec69cfdb725a6e730cc7b", "supported": true, - "utxos_info": "093e49f3c5553048e93710a95ae3f813e9e9ed5288b166ef5352fa88f6ee9d32:0", + "utxos_info": "410d59644f017101215e824abcdc0b0f1cd1d477d42a41ddfd5d545703126065:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", - "tx1_hash": "a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", - "order_match_id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", + "tx0_hash": "53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3", + "tx1_hash": "ea35ac149cac7ce65aec3f44fde03ff76f1a764dbd2ec69cfdb725a6e730cc7b", + "order_match_id": "53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3_ea35ac149cac7ce65aec3f44fde03ff76f1a764dbd2ec69cfdb725a6e730cc7b", "status": "valid" } }, @@ -2627,23 +2627,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 58, - "tx_hash": "f034d2fc20879fa54967667975c28e61b9e666da655c2cdeef7b284f057afff6", + "tx_hash": "0c6283d30a020a060bd9b8feb6949b3aa279be9b407f9d8ef97015053977f958", "block_index": 192, - "block_hash": "3658d2f90d22c5ac539825f061b3e1485c9d4cc338f3f9f38f7f545f4254effd", - "block_time": 1729419257, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "block_hash": "36f0f07cfc44e0b08783268e11509ef600352857da8cad31618b92375ed5b7da", + "block_time": 1729447437, + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "468fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", + "data": "4651bf0f868d20a7ffb1ffb95dda008d72d5440f3c08ebb52cea5e21416bbfe8fd", "supported": true, - "utxos_info": "f034d2fc20879fa54967667975c28e61b9e666da655c2cdeef7b284f057afff6:1", + "utxos_info": "0c6283d30a020a060bd9b8feb6949b3aa279be9b407f9d8ef97015053977f958:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", + "offer_hash": "51bf0f868d20a7ffb1ffb95dda008d72d5440f3c08ebb52cea5e21416bbfe8fd", "status": "valid" } }, @@ -2658,17 +2658,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 61, - "tx_hash": "857b0199761f230748e7583d48033e2dcc3de8fbea85b2ca971f83f5261bd29a", + "tx_hash": "0b96e09bf2b9b10ea3d1a40906b3834072d951cfcef625173390a816be06fbe3", "block_index": 195, - "block_hash": "45a86bea1b49d417d16f0cf58b6a3caa438b49eb73a1150d3654da0866e1c113", - "block_time": 1729419281, - "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "block_hash": "5c6c5a7791c4296aea6388bfb4327a93ff21135621868d137409017797ed3b5e", + "block_time": 1729447460, + "source": "bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "857b0199761f230748e7583d48033e2dcc3de8fbea85b2ca971f83f5261bd29a:1", + "utxos_info": "0b96e09bf2b9b10ea3d1a40906b3834072d951cfcef625173390a816be06fbe3:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2698,17 +2698,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 33, - "tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", + "tx_hash": "97a6a8715419af93dd8db32ab9443fc20bf92b50e05a20bad0aa71a5bbab6d31", "block_index": 146, - "block_hash": "3aa4fc3a15314e3ee2b1a49c17b202d0fab33113d94205021e664ad783902083", - "block_time": 1729419074, - "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "block_hash": "77a955d4ce96f4b763614abfebacf3bbcc7cd778e114ba9bd35bc58bef4636ee", + "block_time": 1729447252, + "source": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0c00000000000000010000000000000001000000000000271000000000000000010080be349a1393f05baf3bf827e20714733ce47e0a21", + "data": "0c000000000000000100000000000000010000000000002710000000000000000100800d4744efbb5118ac528ed11ff2ccbd4e8d1bd719", "supported": true, - "utxos_info": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4:1", + "utxos_info": "97a6a8715419af93dd8db32ab9443fc20bf92b50e05a20bad0aa71a5bbab6d31:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2720,7 +2720,7 @@ Here is sample API output for each of these transactions: "mainchainrate": 1, "dispenser_status": 0, "action_address": null, - "oracle_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "oracle_address": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "status": "valid", "asset_info": { "divisible": true, @@ -2744,17 +2744,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 62, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "block_hash": "26010869f45387e5100f965afbf68e7ac474fd78998b5120bd34d7046c79ae6f", - "block_time": 1729419295, - "source": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", - "destination": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "block_hash": "15c3b59a16274e2743ce3a99d689864a2110c643c9ee66a6ae35bef38816a32e", + "block_time": 1729447470, + "source": "bcrt1qvkluz3xu0dwkdu6whlkfuz0j7q7etzfpr6le3w", + "destination": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1 02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", + "utxos_info": "ea7f3e0c42a8b5fd1d052a801db5c9b934b7cbead7d495511fbd6ec515a775d9:1 364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2774,17 +2774,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 41, - "tx_hash": "5954cbb59b8f533b6dc597f67642fe125d0f54d58dd8bd6109079010bc39416b", + "tx_hash": "ccb12d28c1f97f63b03f3d50250a1b73998770f111969ee88849111ec3385cb3", "block_index": 154, - "block_hash": "78914e1f86cb86fda665340d278aeca802e081661842db02ca84d1e19b18fec0", - "block_time": 1729419109, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "block_hash": "362d9ff30de3e08b5f73ff0a7e1e48af32f9a4f7835e50c10634b2d040353f42", + "block_time": 1729447286, + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "5954cbb59b8f533b6dc597f67642fe125d0f54d58dd8bd6109079010bc39416b:1", + "utxos_info": "ccb12d28c1f97f63b03f3d50250a1b73998770f111969ee88849111ec3385cb3:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2797,7 +2797,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -2822,17 +2822,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 48, - "tx_hash": "e3935cf288cec52794daa26e2783ae06125ca6965f257e7d9ff3585239657033", + "tx_hash": "5791ae7ad84daa69a8a790a14d20e5a1e0b6997b562968904cdc3a9e2295dc00", "block_index": 161, - "block_hash": "1a1363f2f691b4e502d3adc980ce1bb319fa2f08b64084fcbe6d73fa5d41c3c8", - "block_time": 1729419150, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "block_hash": "311e660acdc16988a570535e1ca04c5d497a91762ad2c3a6b6ecb031341ee9f4", + "block_time": 1729447328, + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "17015308217a15c0c2000000174876e80001000016987952c23e7c7c94dd9fd148af3f5276f9092bbbc2e941207375626e756d65726963206173736574", "supported": true, - "utxos_info": "e3935cf288cec52794daa26e2783ae06125ca6965f257e7d9ff3585239657033:1", + "utxos_info": "5791ae7ad84daa69a8a790a14d20e5a1e0b6997b562968904cdc3a9e2295dc00:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2864,17 +2864,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", + "tx_hash": "3c8fed50434df20de6b1d183d583fde724a128b0f72ce1baae593b03bd361643", "block_index": 193, - "block_hash": "57dfced2294a097ac30ded16acb47a12f446095f608438f62863069eb55f26a9", - "block_time": 1729419272, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "block_hash": "3db74a68c196dec9f8e79ba19abbf571081d3131d6ecd5aee8199418f1db8b4b", + "block_time": 1729447451, + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da:1", + "utxos_info": "3c8fed50434df20de6b1d183d583fde724a128b0f72ce1baae593b03bd361643:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -2917,17 +2917,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 55, - "tx_hash": "9e959e4d7992f9ebacdffa06990aeb2dc4ae9b61a3bce8e456f2a54430c2047a", + "tx_hash": "efd3181b365de6670bf1a6547dfbff5b41c38a0175263f31288db454ca4fb931", "block_index": 189, - "block_hash": "6c5ca992fd043932898d840d053abe5172afd213cdcd1c4392909643c25f9196", - "block_time": 1729419244, - "source": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "block_hash": "7923b41a29591ba8e5afe35ce5db26718076c5363f80c74bdbf9a7713a5db20e", + "block_time": 1729447424, + "source": "bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710803dcc35a8148c4958edc036d7dbf62f22c9ee7f8c", + "data": "020000000000000001000000000000271080fc49b221b65525eaaf4136051348c3a67c0132fa", "supported": true, - "utxos_info": "9e959e4d7992f9ebacdffa06990aeb2dc4ae9b61a3bce8e456f2a54430c2047a:1", + "utxos_info": "efd3181b365de6670bf1a6547dfbff5b41c38a0175263f31288db454ca4fb931:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -2935,7 +2935,7 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "address": "bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z", "memo": null, "asset_info": { "divisible": true, @@ -2958,17 +2958,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 56, - "tx_hash": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", + "tx_hash": "f513fcb3467cbc7dbfe9958aa5ff4ea88d870361cf31448a92d5d8d36f14f104", "block_index": 190, - "block_hash": "27d56f8f7a9d91d559042a50061b02cd6ae526427d0159cd054bfb1432893317", - "block_time": 1729419248, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "block_hash": "78887eaa67a613258389d53b6241bc28286d718d1e89e8aa330411762b4d0b91", + "block_time": 1729447428, + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d64c08d96d88ea91d982fd48c18244108a8ef38f80d0f087d8a9e67fb02f22722fc8b975fb1e6c473e803dcc35a8148c4958edc036d7dbf62f22c9ee7f8c400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003803a1e55ee5bfb0a744b64a8ee0c32a9e7d98ec01f80eb3525eeb21513f819569078c868d2b17f43d8c980fc49b221b65525eaaf4136051348c3a67c0132fa400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a:0", + "utxos_info": "f513fcb3467cbc7dbfe9958aa5ff4ea88d870361cf31448a92d5d8d36f14f104:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -2976,14 +2976,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "destination": "bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -2991,7 +2991,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "destination": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3017,23 +3017,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 60, - "tx_hash": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b", + "tx_hash": "bf68e49ab1ffae81693d197b3de1bb5c91e0725e1272f025cd6f15af53e820c7", "block_index": 194, - "block_hash": "714288ba07f8f87419ab198860e8bb0175209a1f6f0566ee68441fdb0a948d13", - "block_time": 1729419276, - "source": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "block_hash": "71189bb7c57980feb1f7cc731a4668e278142d5749cd37628f0429baf9b694c6", + "block_time": 1729447456, + "source": "bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "04803dcc35a8148c4958edc036d7dbf62f22c9ee7f8c017377656570206d7920617373657473", + "data": "0480fc49b221b65525eaaf4136051348c3a67c0132fa017377656570206d7920617373657473", "supported": true, - "utxos_info": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b:1", + "utxos_info": "bf68e49ab1ffae81693d197b3de1bb5c91e0725e1272f025cd6f15af53e820c7:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "destination": "bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z", "flags": 1, "memo": "sweep my assets" } @@ -3066,17 +3066,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 62, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "block_hash": "26010869f45387e5100f965afbf68e7ac474fd78998b5120bd34d7046c79ae6f", - "block_time": 1729419295, - "source": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", - "destination": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "block_hash": "15c3b59a16274e2743ce3a99d689864a2110c643c9ee66a6ae35bef38816a32e", + "block_time": 1729447470, + "source": "bcrt1qvkluz3xu0dwkdu6whlkfuz0j7q7etzfpr6le3w", + "destination": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1 02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", + "utxos_info": "ea7f3e0c42a8b5fd1d052a801db5c9b934b7cbead7d495511fbd6ec515a775d9:1 364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3089,17 +3089,17 @@ Returns the list of the last ten transactions }, { "tx_index": 61, - "tx_hash": "857b0199761f230748e7583d48033e2dcc3de8fbea85b2ca971f83f5261bd29a", + "tx_hash": "0b96e09bf2b9b10ea3d1a40906b3834072d951cfcef625173390a816be06fbe3", "block_index": 195, - "block_hash": "45a86bea1b49d417d16f0cf58b6a3caa438b49eb73a1150d3654da0866e1c113", - "block_time": 1729419281, - "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "block_hash": "5c6c5a7791c4296aea6388bfb4327a93ff21135621868d137409017797ed3b5e", + "block_time": 1729447460, + "source": "bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "857b0199761f230748e7583d48033e2dcc3de8fbea85b2ca971f83f5261bd29a:1", + "utxos_info": "0b96e09bf2b9b10ea3d1a40906b3834072d951cfcef625173390a816be06fbe3:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3131,7 +3131,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `020000000001010000000000000000000000000000000000000000000000000000000000000000ffffffff03014300ffffffff0200f2052a01000000160014557b2d77cc0be408f0448c0d51a68f2eb0e135180000000000000000266a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf90120000000000000000000000000000000000000000000000000000000000000000000000000` (str, required) - Raw transaction in hex format + + rawtransaction: `02000000000101cba2039c512376638eb0e186dc647756443f4b0a29d244c36e21a70f17c803a30000000000ffffffff0280f0fa02000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac70da0a2701000000160014d527079b47914fe801aa3f514b98be31d5b7822402473044022001611d702714bb5edc16a2d72179e8ee906f5a11aceae80ae84d53e28a6a87dc0220518f398cc8a5ebc925672f944f37ad258f1b5b6dd2b563ffe86ee065dae5455e012103e74d003a79154c856cdee50e89fb7c82ac054c50ea8ea09ca5c6c5316bdf6d2100000000` (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. @@ -3144,41 +3144,43 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "", - "destination": null, - "btc_amount": null, - "fee": null, + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "destination": "mvCounterpartyXXXXXXXXXXXXXXW24Hef", + "btc_amount": 50000000, + "fee": 10000, "data": "", "decoded_tx": { "version": 2, "segwit": true, - "coinbase": true, + "coinbase": false, "vin": [ { - "hash": "0000000000000000000000000000000000000000000000000000000000000000", - "n": 4294967295, - "script_sig": "014300", + "hash": "cba2039c512376638eb0e186dc647756443f4b0a29d244c36e21a70f17c803a3", + "n": 0, + "script_sig": "", "sequence": 4294967295, - "coinbase": true + "coinbase": false } ], "vout": [ { - "value": 5000000000, - "script_pub_key": "0014557b2d77cc0be408f0448c0d51a68f2eb0e13518" + "value": 50000000, + "script_pub_key": "76a914a11b66a67b3ff69671c8f82254099faf374b800e88ac" }, { - "value": 0, - "script_pub_key": "6a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf9" + "value": 4949990000, + "script_pub_key": "0014d527079b47914fe801aa3f514b98be31d5b78224" } ], "vtxinwit": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "3044022001611d702714bb5edc16a2d72179e8ee906f5a11aceae80ae84d53e28a6a87dc0220518f398cc8a5ebc925672f944f37ad258f1b5b6dd2b563ffe86ee065dae5455e01", + "03e74d003a79154c856cdee50e89fb7c82ac054c50ea8ea09ca5c6c5316bdf6d21" ], "lock_time": 0, - "tx_hash": "be18eb1f6e1b54bd8664947ea547ecd06aaaddf36cfee98d705829f2cb6ad6df", - "tx_id": "be18eb1f6e1b54bd8664947ea547ecd06aaaddf36cfee98d705829f2cb6ad6df" - } + "tx_hash": "46d23e91ffc04371577fb45d7dae9418eb9f1e3b2ca9dd7847ba0e019b49cd51", + "tx_id": "46d23e91ffc04371577fb45d7dae9418eb9f1e3b2ca9dd7847ba0e019b49cd51" + }, + "btc_amount_normalized": "0.50000000" } } ``` @@ -3188,7 +3190,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9` (str, required) - Transaction hash + + tx_hash: `820a058a0b434d28a187f1c447a09de52625d8866c23773f55519d0719fc1128` (str, required) - Transaction hash + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -3199,18 +3201,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "source": "bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080d0f087d8a9e67fb02f22722fc8b975fb1e6c473e", + "data": "020000000000000001000000000000271080eb3525eeb21513f819569078c868d2b17f43d8c9", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "ad281bdd69fda41d84947a3c96849e00efdf25c45f566e010df60d267b160d9c", + "hash": "e79bffcdecb15ed9597ca460fe70d63dfeb27101552c55f06208a441a5d35514", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3220,20 +3222,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2e6edf8cb93c922f5584d61db2f1afffca61b766449448614055330a855b19c57945a96f527e856823677090545303" + "script_pub_key": "6a2ec7d7f9606bfbb6319d397079b83824bdeeec0fb1bc0f7d13d3a45b3f2a23ea75154f579eadab23ad0dbaa68e70d9" }, { "value": 4999955000, - "script_pub_key": "00143dcc35a8148c4958edc036d7dbf62f22c9ee7f8c" + "script_pub_key": "0014fc49b221b65525eaaf4136051348c3a67c0132fa" } ], "vtxinwit": [ - "304402200131af551e7ac8871a81155eceb120e32fba9355e1ea9856f54c9cda15a52f24022060ba85d3792a9a781d1f5c441267cb2d3875331808c5e2eb8adc4dfa1b99e6d801", - "03713b36b6b11c7678f38efbe31df54f86be0d1da0e9448b6e34cd36ce539044af" + "3044022038453072a80a47c902976d314266c454bed80e5cf1535265b84109d651f1fc88022035af7a6d023bfcb8e002988b52bfa02434185d9c923518ba65467eb844981af401", + "0370867360950fa9075b9cc5adbc659867c7a8130015b0c93afe52e588e3138238" ], "lock_time": 0, - "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", - "tx_id": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9" + "tx_hash": "820a058a0b434d28a187f1c447a09de52625d8866c23773f55519d0719fc1128", + "tx_id": "820a058a0b434d28a187f1c447a09de52625d8866c23773f55519d0719fc1128" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3241,7 +3243,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "address": "bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad", "memo": null, "asset_info": { "divisible": true, @@ -3302,17 +3304,17 @@ Returns a transaction by its index. { "result": { "tx_index": 62, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "block_hash": "26010869f45387e5100f965afbf68e7ac474fd78998b5120bd34d7046c79ae6f", - "block_time": 1729419295, - "source": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", - "destination": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "block_hash": "15c3b59a16274e2743ce3a99d689864a2110c643c9ee66a6ae35bef38816a32e", + "block_time": 1729447470, + "source": "bcrt1qvkluz3xu0dwkdu6whlkfuz0j7q7etzfpr6le3w", + "destination": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1 02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", + "utxos_info": "ea7f3e0c42a8b5fd1d052a801db5c9b934b7cbead7d495511fbd6ec515a775d9:1 364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3331,7 +3333,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89` (str, required) - The hash of the transaction + + tx_hash: `364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453` (str, required) - The hash of the transaction + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -3343,17 +3345,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 62, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "block_hash": "26010869f45387e5100f965afbf68e7ac474fd78998b5120bd34d7046c79ae6f", - "block_time": 1729419295, - "source": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", - "destination": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "block_hash": "15c3b59a16274e2743ce3a99d689864a2110c643c9ee66a6ae35bef38816a32e", + "block_time": 1729447470, + "source": "bcrt1qvkluz3xu0dwkdu6whlkfuz0j7q7etzfpr6le3w", + "destination": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1 02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", + "utxos_info": "ea7f3e0c42a8b5fd1d052a801db5c9b934b7cbead7d495511fbd6ec515a775d9:1 364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3396,12 +3398,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "tx_index": 62 }, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "block_time": 1729419295 + "block_time": 1729447470 }, { "event_index": 561, @@ -3410,14 +3412,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "destination": "bcrt1qvkluz3xu0dwkdu6whlkfuz0j7q7etzfpr6le3w", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", - "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "dispenser_tx_hash": "97a6a8715419af93dd8db32ab9443fc20bf92b50e05a20bad0aa71a5bbab6d31", + "source": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "tx_index": 62, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -3428,9 +3430,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "block_time": 1729419295 + "block_time": 1729447470 }, { "event_index": 560, @@ -3439,9 +3441,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "source": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "status": 0, - "tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", + "tx_hash": "97a6a8715419af93dd8db32ab9443fc20bf92b50e05a20bad0aa71a5bbab6d31", "asset_info": { "divisible": true, "asset_longname": null, @@ -3451,24 +3453,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "block_time": 1729419295 + "block_time": 1729447470 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "address": "bcrt1qvkluz3xu0dwkdu6whlkfuz0j7q7etzfpr6le3w", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "event": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -3478,9 +3480,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "block_time": 1729419295 + "block_time": 1729447470 }, { "event_index": 558, @@ -3488,14 +3490,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 196, - "destination": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", + "destination": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453:0", "msg_index": 1, "quantity": 1500000000, - "source": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", + "source": "ea7f3e0c42a8b5fd1d052a801db5c9b934b7cbead7d495511fbd6ec515a775d9:1", "status": "valid", - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "tx_index": 62, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -3505,9 +3507,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "block_time": 1729419295 + "block_time": 1729447470 } ], "next_cursor": 557, @@ -3520,7 +3522,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89` (str, required) - The hash of the transaction to return + + tx_hash: `364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `563` (str, optional) - The last event index to return @@ -3544,12 +3546,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "tx_index": 62 }, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "block_time": 1729419295 + "block_time": 1729447470 }, { "event_index": 561, @@ -3558,14 +3560,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "destination": "bcrt1qvkluz3xu0dwkdu6whlkfuz0j7q7etzfpr6le3w", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", - "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "dispenser_tx_hash": "97a6a8715419af93dd8db32ab9443fc20bf92b50e05a20bad0aa71a5bbab6d31", + "source": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "tx_index": 62, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -3576,9 +3578,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "block_time": 1729419295 + "block_time": 1729447470 }, { "event_index": 560, @@ -3587,9 +3589,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "source": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "status": 0, - "tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", + "tx_hash": "97a6a8715419af93dd8db32ab9443fc20bf92b50e05a20bad0aa71a5bbab6d31", "asset_info": { "divisible": true, "asset_longname": null, @@ -3599,24 +3601,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "block_time": 1729419295 + "block_time": 1729447470 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "address": "bcrt1qvkluz3xu0dwkdu6whlkfuz0j7q7etzfpr6le3w", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "event": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -3626,9 +3628,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "block_time": 1729419295 + "block_time": 1729447470 }, { "event_index": 558, @@ -3636,14 +3638,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 196, - "destination": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", + "destination": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453:0", "msg_index": 1, "quantity": 1500000000, - "source": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", + "source": "ea7f3e0c42a8b5fd1d052a801db5c9b934b7cbead7d495511fbd6ec515a775d9:1", "status": "valid", - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "tx_index": 62, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -3653,9 +3655,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "block_time": 1729419295 + "block_time": 1729447470 } ], "next_cursor": 557, @@ -3668,7 +3670,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89` (str, required) - The hash of the transaction to return + + tx_hash: `364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453` (str, required) - The hash of the transaction to return + cursor (str, optional) - The last index of the debits to return + Default: `None` + limit: `5` (int, optional) - The maximum number of debits to return @@ -3687,10 +3689,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 62, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "source": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", - "destination": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", + "source": "ea7f3e0c42a8b5fd1d052a801db5c9b934b7cbead7d495511fbd6ec515a775d9:1", + "destination": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -3698,7 +3700,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -3711,10 +3713,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 62, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "source": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", - "destination": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", + "source": "ea7f3e0c42a8b5fd1d052a801db5c9b934b7cbead7d495511fbd6ec515a775d9:1", + "destination": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -3722,11 +3724,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -3744,7 +3746,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89` (str, required) - The hash of the transaction to return + + tx_hash: `364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453` (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 @@ -3764,27 +3766,27 @@ Returns the dispenses of a block { "tx_index": 62, "dispense_index": 0, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", - "destination": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "source": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", + "destination": "bcrt1qvkluz3xu0dwkdu6whlkfuz0j7q7etzfpr6le3w", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", + "dispenser_tx_hash": "97a6a8715419af93dd8db32ab9443fc20bf92b50e05a20bad0aa71a5bbab6d31", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "source": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "oracle_address": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "last_status_tx_hash": null, - "origin": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "origin": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3799,7 +3801,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -3843,16 +3845,16 @@ Returns the events of a transaction "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "address": "bcrt1qvkluz3xu0dwkdu6whlkfuz0j7q7etzfpr6le3w", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "event": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -3862,9 +3864,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "block_time": 1729419295 + "block_time": 1729447470 }, { "event_index": 557, @@ -3874,12 +3876,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "event": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "quantity": 1500000000, "tx_index": 62, - "utxo": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", - "utxo_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", - "block_time": 1729419295, + "utxo": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453:0", + "utxo_address": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -3889,9 +3891,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "block_time": 1729419295 + "block_time": 1729447470 }, { "event_index": 554, @@ -3901,24 +3903,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "event": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "quantity": 1500000000, "tx_index": 62, - "utxo": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", - "utxo_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", - "block_time": 1729419295, + "utxo": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453:0", + "utxo_address": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", + "block_time": 1729447470, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "block_time": 1729419295 + "block_time": 1729447470 } ], "next_cursor": null, @@ -3931,7 +3933,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89` (str, required) - The hash of the transaction to return + + tx_hash: `364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `563` (str, optional) - The last event index to return + Default: `None` @@ -3953,16 +3955,16 @@ Returns the events of a transaction "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "address": "bcrt1qvkluz3xu0dwkdu6whlkfuz0j7q7etzfpr6le3w", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "event": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -3972,9 +3974,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "block_time": 1729419295 + "block_time": 1729447470 }, { "event_index": 557, @@ -3984,12 +3986,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "event": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "quantity": 1500000000, "tx_index": 62, - "utxo": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", - "utxo_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", - "block_time": 1729419295, + "utxo": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453:0", + "utxo_address": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -3999,9 +4001,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "block_time": 1729419295 + "block_time": 1729447470 }, { "event_index": 554, @@ -4011,24 +4013,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "event": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "quantity": 1500000000, "tx_index": 62, - "utxo": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", - "utxo_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", - "block_time": 1729419295, + "utxo": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453:0", + "utxo_address": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", + "block_time": 1729447470, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "block_time": 1729419295 + "block_time": 1729447470 } ], "next_cursor": null, @@ -4043,7 +4045,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8,bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu,bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu` (str, required) - Comma separated list of addresses + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -4067,7 +4069,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "address": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4077,7 +4079,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -4088,7 +4090,7 @@ Returns the balances of several addresses "total": 97999999980, "addresses": [ { - "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "address": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -4098,7 +4100,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -4109,7 +4111,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "address": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4119,7 +4121,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -4130,7 +4132,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "address": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4140,7 +4142,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -4151,7 +4153,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "address": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4161,7 +4163,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -4178,7 +4180,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8,bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu,bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu` (str, required) - Comma separated list of addresses to return + cursor: `62` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4197,17 +4199,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 59, - "tx_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", + "tx_hash": "3c8fed50434df20de6b1d183d583fde724a128b0f72ce1baae593b03bd361643", "block_index": 193, - "block_hash": "57dfced2294a097ac30ded16acb47a12f446095f608438f62863069eb55f26a9", - "block_time": 1729419272, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "block_hash": "3db74a68c196dec9f8e79ba19abbf571081d3131d6ecd5aee8199418f1db8b4b", + "block_time": 1729447451, + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da:1", + "utxos_info": "3c8fed50434df20de6b1d183d583fde724a128b0f72ce1baae593b03bd361643:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4243,23 +4245,23 @@ Returns the transactions of a list of addresses }, { "tx_index": 58, - "tx_hash": "f034d2fc20879fa54967667975c28e61b9e666da655c2cdeef7b284f057afff6", + "tx_hash": "0c6283d30a020a060bd9b8feb6949b3aa279be9b407f9d8ef97015053977f958", "block_index": 192, - "block_hash": "3658d2f90d22c5ac539825f061b3e1485c9d4cc338f3f9f38f7f545f4254effd", - "block_time": 1729419257, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "block_hash": "36f0f07cfc44e0b08783268e11509ef600352857da8cad31618b92375ed5b7da", + "block_time": 1729447437, + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "468fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", + "data": "4651bf0f868d20a7ffb1ffb95dda008d72d5440f3c08ebb52cea5e21416bbfe8fd", "supported": true, - "utxos_info": "f034d2fc20879fa54967667975c28e61b9e666da655c2cdeef7b284f057afff6:1", + "utxos_info": "0c6283d30a020a060bd9b8feb6949b3aa279be9b407f9d8ef97015053977f958:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", + "offer_hash": "51bf0f868d20a7ffb1ffb95dda008d72d5440f3c08ebb52cea5e21416bbfe8fd", "status": "valid" } }, @@ -4267,17 +4269,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 57, - "tx_hash": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", + "tx_hash": "51bf0f868d20a7ffb1ffb95dda008d72d5440f3c08ebb52cea5e21416bbfe8fd", "block_index": 191, - "block_hash": "5a79892b45761c6b06ee6c4b9265e5b99130ebf3f085b1f3f60c31c331cb99c7", - "block_time": 1729419253, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "block_hash": "4d68da1b72dc251d1178c430c8fa8957fe6a54d8316e506559bfa4e4afbfc1dc", + "block_time": 1729447432, + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9:1", + "utxos_info": "51bf0f868d20a7ffb1ffb95dda008d72d5440f3c08ebb52cea5e21416bbfe8fd:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4313,17 +4315,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 56, - "tx_hash": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", + "tx_hash": "f513fcb3467cbc7dbfe9958aa5ff4ea88d870361cf31448a92d5d8d36f14f104", "block_index": 190, - "block_hash": "27d56f8f7a9d91d559042a50061b02cd6ae526427d0159cd054bfb1432893317", - "block_time": 1729419248, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "block_hash": "78887eaa67a613258389d53b6241bc28286d718d1e89e8aa330411762b4d0b91", + "block_time": 1729447428, + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d64c08d96d88ea91d982fd48c18244108a8ef38f80d0f087d8a9e67fb02f22722fc8b975fb1e6c473e803dcc35a8148c4958edc036d7dbf62f22c9ee7f8c400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003803a1e55ee5bfb0a744b64a8ee0c32a9e7d98ec01f80eb3525eeb21513f819569078c868d2b17f43d8c980fc49b221b65525eaaf4136051348c3a67c0132fa400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a:0", + "utxos_info": "f513fcb3467cbc7dbfe9958aa5ff4ea88d870361cf31448a92d5d8d36f14f104:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4331,14 +4333,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "destination": "bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -4346,7 +4348,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "destination": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -4365,25 +4367,25 @@ Returns the transactions of a list of addresses }, { "tx_index": 53, - "tx_hash": "093e49f3c5553048e93710a95ae3f813e9e9ed5288b166ef5352fa88f6ee9d32", + "tx_hash": "410d59644f017101215e824abcdc0b0f1cd1d477d42a41ddfd5d545703126065", "block_index": 187, - "block_hash": "1e3ef7feb2b0cc9956125c6848ee0b6e7b21aaf7ce801dd0083afef4b9c163fa", - "block_time": 1729419235, - "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", - "destination": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "block_hash": "4b648b3498eddaf2a6de051459f0b2def1fa11208b60b5b6028ad7a771c21688", + "block_time": 1729447415, + "source": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", + "destination": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "btc_amount": 2000, "fee": 10000, - "data": "0bb4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", + "data": "0b53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3ea35ac149cac7ce65aec3f44fde03ff76f1a764dbd2ec69cfdb725a6e730cc7b", "supported": true, - "utxos_info": "093e49f3c5553048e93710a95ae3f813e9e9ed5288b166ef5352fa88f6ee9d32:0", + "utxos_info": "410d59644f017101215e824abcdc0b0f1cd1d477d42a41ddfd5d545703126065:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", - "tx1_hash": "a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", - "order_match_id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", + "tx0_hash": "53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3", + "tx1_hash": "ea35ac149cac7ce65aec3f44fde03ff76f1a764dbd2ec69cfdb725a6e730cc7b", + "order_match_id": "53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3_ea35ac149cac7ce65aec3f44fde03ff76f1a764dbd2ec69cfdb725a6e730cc7b", "status": "valid" } }, @@ -4400,7 +4402,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8,bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu,bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `563` (str, optional) - The last event index to return @@ -4436,11 +4438,11 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "status": "open", - "tx_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", + "tx_hash": "3c8fed50434df20de6b1d183d583fde724a128b0f72ce1baae593b03bd361643", "tx_index": 59, - "block_time": 1729419272, + "block_time": 1729447451, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4464,24 +4466,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", + "tx_hash": "3c8fed50434df20de6b1d183d583fde724a128b0f72ce1baae593b03bd361643", "block_index": 193, - "block_time": 1729419272 + "block_time": 1729447451 }, { "event_index": 528, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "address": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "XCP", "block_index": 193, - "event": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", + "event": "3c8fed50434df20de6b1d183d583fde724a128b0f72ce1baae593b03bd361643", "quantity": 1000, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1729419272, + "block_time": 1729447451, "asset_info": { "divisible": true, "asset_longname": null, @@ -4491,25 +4493,25 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", + "tx_hash": "3c8fed50434df20de6b1d183d583fde724a128b0f72ce1baae593b03bd361643", "block_index": 193, - "block_time": 1729419272 + "block_time": 1729447451 }, { "event_index": 527, "event": "NEW_TRANSACTION", "params": { - "block_hash": "57dfced2294a097ac30ded16acb47a12f446095f608438f62863069eb55f26a9", + "block_hash": "3db74a68c196dec9f8e79ba19abbf571081d3131d6ecd5aee8199418f1db8b4b", "block_index": 193, - "block_time": 1729419272, + "block_time": 1729447451, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "tx_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "tx_hash": "3c8fed50434df20de6b1d183d583fde724a128b0f72ce1baae593b03bd361643", "tx_index": 59, - "utxos_info": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da:1", + "utxos_info": "3c8fed50434df20de6b1d183d583fde724a128b0f72ce1baae593b03bd361643:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4541,40 +4543,40 @@ Returns the events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", + "tx_hash": "3c8fed50434df20de6b1d183d583fde724a128b0f72ce1baae593b03bd361643", "block_index": 193, - "block_time": 1729419272 + "block_time": 1729447451 }, { "event_index": 523, "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "offer_hash": "51bf0f868d20a7ffb1ffb95dda008d72d5440f3c08ebb52cea5e21416bbfe8fd", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "status": "valid", - "tx_hash": "f034d2fc20879fa54967667975c28e61b9e666da655c2cdeef7b284f057afff6", + "tx_hash": "0c6283d30a020a060bd9b8feb6949b3aa279be9b407f9d8ef97015053977f958", "tx_index": 58, - "block_time": 1729419257 + "block_time": 1729447437 }, - "tx_hash": "f034d2fc20879fa54967667975c28e61b9e666da655c2cdeef7b284f057afff6", + "tx_hash": "0c6283d30a020a060bd9b8feb6949b3aa279be9b407f9d8ef97015053977f958", "block_index": 192, - "block_time": 1729419257 + "block_time": 1729447437 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "address": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "XCP", "block_index": 192, "calling_function": "cancel order", - "event": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", + "event": "51bf0f868d20a7ffb1ffb95dda008d72d5440f3c08ebb52cea5e21416bbfe8fd", "quantity": 1000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1729419257, + "block_time": 1729447437, "asset_info": { "divisible": true, "asset_longname": null, @@ -4584,9 +4586,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "f034d2fc20879fa54967667975c28e61b9e666da655c2cdeef7b284f057afff6", + "tx_hash": "0c6283d30a020a060bd9b8feb6949b3aa279be9b407f9d8ef97015053977f958", "block_index": 192, - "block_time": 1729419257 + "block_time": 1729447437 } ], "next_cursor": 520, @@ -4599,7 +4601,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx,bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad,bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z` (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 @@ -4615,17 +4617,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", + "tx_hash": "820a058a0b434d28a187f1c447a09de52625d8866c23773f55519d0719fc1128", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "destination": "bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad", "memo": null, "quantity": 10000, - "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "source": "bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z", "status": "valid", - "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", + "tx_hash": "820a058a0b434d28a187f1c447a09de52625d8866c23773f55519d0719fc1128", "tx_index": 63, "asset_info": { "divisible": true, @@ -4636,22 +4638,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729419299.9227293 + "timestamp": 1729447474.6791806 }, { - "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", + "tx_hash": "820a058a0b434d28a187f1c447a09de52625d8866c23773f55519d0719fc1128", "event": "CREDIT", "params": { - "address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "address": "bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", + "event": "820a058a0b434d28a187f1c447a09de52625d8866c23773f55519d0719fc1128", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -4661,22 +4663,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729419299.9227293 + "timestamp": 1729447474.6791806 }, { - "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", + "tx_hash": "820a058a0b434d28a187f1c447a09de52625d8866c23773f55519d0719fc1128", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "address": "bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z", "asset": "XCP", "block_index": 196, - "event": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", + "event": "820a058a0b434d28a187f1c447a09de52625d8866c23773f55519d0719fc1128", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -4686,30 +4688,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729419299.9227293 + "timestamp": 1729447474.6791806 }, { - "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", + "tx_hash": "820a058a0b434d28a187f1c447a09de52625d8866c23773f55519d0719fc1128", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729419299.9227293, + "block_time": 1729447474.6791806, "btc_amount": 0, - "data": "020000000000000001000000000000271080d0f087d8a9e67fb02f22722fc8b975fb1e6c473e", + "data": "020000000000000001000000000000271080eb3525eeb21513f819569078c868d2b17f43d8c9", "destination": "", "fee": 10000, - "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", - "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", + "source": "bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z", + "tx_hash": "820a058a0b434d28a187f1c447a09de52625d8866c23773f55519d0719fc1128", "tx_index": 63, - "utxos_info": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9:1", + "utxos_info": "820a058a0b434d28a187f1c447a09de52625d8866c23773f55519d0719fc1128:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "address": "bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad", "memo": null, "asset_info": { "divisible": true, @@ -4723,7 +4725,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729419299.9227293 + "timestamp": 1729447474.6791806 } ], "next_cursor": null, @@ -4736,7 +4738,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address to return + + address: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu` (str, required) - The address to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -4756,7 +4758,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "address": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -4764,14 +4766,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "address": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -4779,14 +4781,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "address": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -4801,7 +4803,7 @@ Returns the balances of an address "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "address": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -4809,7 +4811,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -4826,7 +4828,7 @@ Returns the balances of an address Returns the balance of an address and asset + Parameters - + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address to return + + address: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu` (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` @@ -4838,7 +4840,7 @@ Returns the balance of an address and asset ``` { "result": { - "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "address": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -4860,7 +4862,7 @@ Returns the balance of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address to return + + address: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -4910,16 +4912,16 @@ Returns the credits of an address "result": [ { "block_index": 192, - "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "address": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", + "event": "51bf0f868d20a7ffb1ffb95dda008d72d5440f3c08ebb52cea5e21416bbfe8fd", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729419257, + "block_time": 1729447437, "asset_info": { "divisible": true, "asset_longname": null, @@ -4931,16 +4933,16 @@ Returns the credits of an address }, { "block_index": 184, - "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "address": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b", + "event": "e3b475745235defa74a454101dd553cc3a3014ad6473b986467cfdb04dd19b5d", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729419167, + "block_time": 1729447344, "asset_info": { "divisible": true, "asset_longname": null, @@ -4952,20 +4954,20 @@ Returns the credits of an address }, { "block_index": 161, - "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "address": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "e3935cf288cec52794daa26e2783ae06125ca6965f257e7d9ff3585239657033", + "event": "5791ae7ad84daa69a8a790a14d20e5a1e0b6997b562968904cdc3a9e2295dc00", "tx_index": 48, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729419150, + "block_time": 1729447328, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -4973,20 +4975,20 @@ Returns the credits of an address }, { "block_index": 158, - "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "address": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "82690f74f70a78c1049e4a8fb569f81e1cd0cbf656d4f1c9b006ac977558a1b7", + "event": "61d3b779c4d676929065855bfadf4d4e31ce61f27b40aac632c8f0a5cf35a8de", "tx_index": 45, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729419127, + "block_time": 1729447315, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -4998,16 +5000,16 @@ Returns the credits of an address "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "19241abee68c758ce2acf9aa205d89e2974a82660ba244e8539a1e2db77bf4f6", + "event": "44cf9bd27ce95d617703e5bede8f76b5a05494f84aab5c8d1d902cb91e6af2f6", "tx_index": 39, - "utxo": "19241abee68c758ce2acf9aa205d89e2974a82660ba244e8539a1e2db77bf4f6:1", - "utxo_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "utxo": "44cf9bd27ce95d617703e5bede8f76b5a05494f84aab5c8d1d902cb91e6af2f6:1", + "utxo_address": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "confirmed": true, - "block_time": 1729419100, + "block_time": 1729447278, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -5024,7 +5026,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address to return + + address: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5063,16 +5065,16 @@ Returns the debits of an address "result": [ { "block_index": 193, - "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "address": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", + "event": "3c8fed50434df20de6b1d183d583fde724a128b0f72ce1baae593b03bd361643", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729419272, + "block_time": 1729447451, "asset_info": { "divisible": true, "asset_longname": null, @@ -5084,16 +5086,16 @@ Returns the debits of an address }, { "block_index": 191, - "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "address": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", + "event": "51bf0f868d20a7ffb1ffb95dda008d72d5440f3c08ebb52cea5e21416bbfe8fd", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729419253, + "block_time": 1729447432, "asset_info": { "divisible": true, "asset_longname": null, @@ -5105,16 +5107,16 @@ Returns the debits of an address }, { "block_index": 190, - "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "address": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", + "event": "f513fcb3467cbc7dbfe9958aa5ff4ea88d870361cf31448a92d5d8d36f14f104", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729419248, + "block_time": 1729447428, "asset_info": { "divisible": true, "asset_longname": null, @@ -5126,20 +5128,20 @@ Returns the debits of an address }, { "block_index": 190, - "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "address": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", + "event": "f513fcb3467cbc7dbfe9958aa5ff4ea88d870361cf31448a92d5d8d36f14f104", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729419248, + "block_time": 1729447428, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -5147,16 +5149,16 @@ Returns the debits of an address }, { "block_index": 185, - "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "address": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", + "event": "53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3", "tx_index": 51, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729419226, + "block_time": 1729447406, "asset_info": { "divisible": true, "asset_longname": null, @@ -5177,7 +5179,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address of the feed + + address: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5212,7 +5214,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address to return + + address: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu` (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 @@ -5231,9 +5233,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "d0aca4399eb6a0726cf88725563432f6ab5e40ed7b526c9a96ce23e4881a0b1e", + "tx_hash": "eda98e24c118aa5db35741762f8c160570cc31adf65fd73a70cee9c9673eb57f", "block_index": 137, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5241,7 +5243,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729419015, + "block_time": 1729447212, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5255,7 +5257,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address to return + + address: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu` (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 @@ -5274,14 +5276,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "a51b8fe949db2a0269b1a8e9effb3922c88f84fcd722c1eb0b7f6e8a2c7c1e46", + "tx_hash": "46d23e91ffc04371577fb45d7dae9418eb9f1e3b2ca9dd7847ba0e019b49cd51", "block_index": 112, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1729418910, + "block_time": 1729447105, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5296,7 +5298,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address to return + + address: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu` (str, required) - The address to return + cursor (str, optional) - The last index of the sends to return + Default: `None` + limit: `5` (int, optional) - The maximum number of sends to return @@ -5315,10 +5317,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 56, - "tx_hash": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", + "tx_hash": "f513fcb3467cbc7dbfe9958aa5ff4ea88d870361cf31448a92d5d8d36f14f104", "block_index": 190, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "destination": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5326,7 +5328,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729419248, + "block_time": 1729447428, "asset_info": { "divisible": true, "asset_longname": null, @@ -5339,10 +5341,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 56, - "tx_hash": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", + "tx_hash": "f513fcb3467cbc7dbfe9958aa5ff4ea88d870361cf31448a92d5d8d36f14f104", "block_index": 190, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "destination": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "destination": "bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5350,11 +5352,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729419248, + "block_time": 1729447428, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -5363,10 +5365,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 56, - "tx_hash": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", + "tx_hash": "f513fcb3467cbc7dbfe9958aa5ff4ea88d870361cf31448a92d5d8d36f14f104", "block_index": 190, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "destination": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "destination": "bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5374,11 +5376,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729419248, + "block_time": 1729447428, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -5387,10 +5389,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 39, - "tx_hash": "19241abee68c758ce2acf9aa205d89e2974a82660ba244e8539a1e2db77bf4f6", + "tx_hash": "44cf9bd27ce95d617703e5bede8f76b5a05494f84aab5c8d1d902cb91e6af2f6", "block_index": 152, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "destination": "19241abee68c758ce2acf9aa205d89e2974a82660ba244e8539a1e2db77bf4f6:1", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "destination": "44cf9bd27ce95d617703e5bede8f76b5a05494f84aab5c8d1d902cb91e6af2f6:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5398,11 +5400,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729419100, + "block_time": 1729447278, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -5411,10 +5413,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 36, - "tx_hash": "81515ceb01d9d57d4c9c65502f478c7f3933ad32df8912f05c85977f3919ab9c", + "tx_hash": "bdff000b7f17598937c7f22f9121ff25e70a8cad3dedb67141b663d70341898d", "block_index": 149, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "destination": "8d23f1890ae5570e81293c9c05077a8b43c14f577b2e3b74edf1f125a6764c57:1", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "destination": "a7f1e7f9af3ae9618d3689bb69672337531d72319332b589e7f852271c4c6932:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5422,11 +5424,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729419086, + "block_time": 1729447265, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -5444,7 +5446,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qg6cl5djlpjf8ne6z88eh7rpjt2c9ttupg48l6x` (str, required) - The address to return + + address: `bcrt1qlygmyzhqckmv8007adm0q274ygpaa0zmtlmnt6` (str, required) - The address to return + cursor (str, optional) - The last index of the sends to return + Default: `None` + limit: `5` (int, optional) - The maximum number of sends to return @@ -5463,10 +5465,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "b0bd44f210f49eeff94e14b96de922cb147dc9069d998d38e9ca17d5ad033d1d", + "tx_hash": "5cbb783420ffe519de23b1565c112bffd39de2a6822f18e2d2a12f80c0d36d58", "block_index": 151, - "source": "b97859d82df08aec2a7034a1721052c7eb6e72e5a41716e18796c69e00b4a59b:0", - "destination": "bcrt1qg6cl5djlpjf8ne6z88eh7rpjt2c9ttupg48l6x", + "source": "db2fc3ded8c751431df8bb8e84c166f6f64cf606ee00df30b3852e9324a6547a:0", + "destination": "bcrt1qlygmyzhqckmv8007adm0q274ygpaa0zmtlmnt6", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5474,11 +5476,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729419095, + "block_time": 1729447273, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -5496,7 +5498,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address to return + + address: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu` (str, required) - The address to return + asset: `MYASSETA` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5516,10 +5518,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 56, - "tx_hash": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", + "tx_hash": "f513fcb3467cbc7dbfe9958aa5ff4ea88d870361cf31448a92d5d8d36f14f104", "block_index": 190, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "destination": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "destination": "bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5527,11 +5529,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729419248, + "block_time": 1729447428, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -5540,10 +5542,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 56, - "tx_hash": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", + "tx_hash": "f513fcb3467cbc7dbfe9958aa5ff4ea88d870361cf31448a92d5d8d36f14f104", "block_index": 190, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "destination": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "destination": "bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5551,11 +5553,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729419248, + "block_time": 1729447428, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -5564,10 +5566,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 39, - "tx_hash": "19241abee68c758ce2acf9aa205d89e2974a82660ba244e8539a1e2db77bf4f6", + "tx_hash": "44cf9bd27ce95d617703e5bede8f76b5a05494f84aab5c8d1d902cb91e6af2f6", "block_index": 152, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "destination": "19241abee68c758ce2acf9aa205d89e2974a82660ba244e8539a1e2db77bf4f6:1", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "destination": "44cf9bd27ce95d617703e5bede8f76b5a05494f84aab5c8d1d902cb91e6af2f6:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5575,11 +5577,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729419100, + "block_time": 1729447278, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -5588,10 +5590,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 36, - "tx_hash": "81515ceb01d9d57d4c9c65502f478c7f3933ad32df8912f05c85977f3919ab9c", + "tx_hash": "bdff000b7f17598937c7f22f9121ff25e70a8cad3dedb67141b663d70341898d", "block_index": 149, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "destination": "8d23f1890ae5570e81293c9c05077a8b43c14f577b2e3b74edf1f125a6764c57:1", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "destination": "a7f1e7f9af3ae9618d3689bb69672337531d72319332b589e7f852271c4c6932:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5599,11 +5601,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729419086, + "block_time": 1729447265, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -5621,7 +5623,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qg6cl5djlpjf8ne6z88eh7rpjt2c9ttupg48l6x` (str, required) - The address to return + + address: `bcrt1qlygmyzhqckmv8007adm0q274ygpaa0zmtlmnt6` (str, required) - The address to return + asset: `MYASSETA` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5641,10 +5643,10 @@ Returns the receives of an address and asset "result": [ { "tx_index": 38, - "tx_hash": "b0bd44f210f49eeff94e14b96de922cb147dc9069d998d38e9ca17d5ad033d1d", + "tx_hash": "5cbb783420ffe519de23b1565c112bffd39de2a6822f18e2d2a12f80c0d36d58", "block_index": 151, - "source": "b97859d82df08aec2a7034a1721052c7eb6e72e5a41716e18796c69e00b4a59b:0", - "destination": "bcrt1qg6cl5djlpjf8ne6z88eh7rpjt2c9ttupg48l6x", + "source": "db2fc3ded8c751431df8bb8e84c166f6f64cf606ee00df30b3852e9324a6547a:0", + "destination": "bcrt1qlygmyzhqckmv8007adm0q274ygpaa0zmtlmnt6", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5652,11 +5654,11 @@ Returns the receives of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729419095, + "block_time": 1729447273, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -5674,7 +5676,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address to return + + address: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5703,9 +5705,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", + "tx_hash": "5dff86bc3e7656a76453cde04b43467ee7e36a8ce0015e2cc646fc5063349269", "block_index": 141, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5714,7 +5716,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "origin": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5724,7 +5726,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729419032, + "block_time": 1729447230, "asset_info": { "divisible": true, "asset_longname": null, @@ -5749,7 +5751,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address to return + + address: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu` (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` @@ -5762,9 +5764,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", + "tx_hash": "5dff86bc3e7656a76453cde04b43467ee7e36a8ce0015e2cc646fc5063349269", "block_index": 141, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5773,7 +5775,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "origin": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5783,7 +5785,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729419032, + "block_time": 1729447230, "asset_info": { "divisible": true, "asset_longname": null, @@ -5805,7 +5807,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address to return + + address: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu` (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 @@ -5825,19 +5827,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c6ac5bd9f3a4f413beac1ab01476860538e1080fc55842bd6eb360ede5b96b03", + "tx_hash": "275311cc7bd91918a7fbd44f76fead7b651bd8618ecc35055a8fe826e5a737d0", "block_index": 141, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "destination": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", + "dispenser_tx_hash": "5dff86bc3e7656a76453cde04b43467ee7e36a8ce0015e2cc646fc5063349269", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5845,7 +5847,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "origin": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5860,7 +5862,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729419032, + "block_time": 1729447230, "asset_info": { "divisible": true, "asset_longname": null, @@ -5874,19 +5876,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "5b8b6d8f67be9da23119f8bb3166e1a15862ffe4ad592bfe7e4c4517034b809f", + "tx_hash": "6ef6ab7e7b7c5df724013537bfc0fd6c93202909eb3b7bbfe8dd3187a6f7bd26", "block_index": 140, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "destination": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", + "dispenser_tx_hash": "5dff86bc3e7656a76453cde04b43467ee7e36a8ce0015e2cc646fc5063349269", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5894,7 +5896,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "origin": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5909,7 +5911,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729419028, + "block_time": 1729447225, "asset_info": { "divisible": true, "asset_longname": null, @@ -5931,7 +5933,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw` (str, required) - The address to return + + address: `bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu` (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 @@ -5951,19 +5953,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c6ac5bd9f3a4f413beac1ab01476860538e1080fc55842bd6eb360ede5b96b03", + "tx_hash": "275311cc7bd91918a7fbd44f76fead7b651bd8618ecc35055a8fe826e5a737d0", "block_index": 141, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "destination": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", + "dispenser_tx_hash": "5dff86bc3e7656a76453cde04b43467ee7e36a8ce0015e2cc646fc5063349269", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5971,7 +5973,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "origin": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5986,7 +5988,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729419032, + "block_time": 1729447230, "asset_info": { "divisible": true, "asset_longname": null, @@ -6000,19 +6002,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "5b8b6d8f67be9da23119f8bb3166e1a15862ffe4ad592bfe7e4c4517034b809f", + "tx_hash": "6ef6ab7e7b7c5df724013537bfc0fd6c93202909eb3b7bbfe8dd3187a6f7bd26", "block_index": 140, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "destination": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", + "dispenser_tx_hash": "5dff86bc3e7656a76453cde04b43467ee7e36a8ce0015e2cc646fc5063349269", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6020,7 +6022,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "origin": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6035,7 +6037,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729419028, + "block_time": 1729447225, "asset_info": { "divisible": true, "asset_longname": null, @@ -6057,7 +6059,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address to return + + address: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu` (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` @@ -6078,19 +6080,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c6ac5bd9f3a4f413beac1ab01476860538e1080fc55842bd6eb360ede5b96b03", + "tx_hash": "275311cc7bd91918a7fbd44f76fead7b651bd8618ecc35055a8fe826e5a737d0", "block_index": 141, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "destination": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", + "dispenser_tx_hash": "5dff86bc3e7656a76453cde04b43467ee7e36a8ce0015e2cc646fc5063349269", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6098,7 +6100,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "origin": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6113,7 +6115,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729419032, + "block_time": 1729447230, "asset_info": { "divisible": true, "asset_longname": null, @@ -6127,19 +6129,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "5b8b6d8f67be9da23119f8bb3166e1a15862ffe4ad592bfe7e4c4517034b809f", + "tx_hash": "6ef6ab7e7b7c5df724013537bfc0fd6c93202909eb3b7bbfe8dd3187a6f7bd26", "block_index": 140, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "destination": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", + "dispenser_tx_hash": "5dff86bc3e7656a76453cde04b43467ee7e36a8ce0015e2cc646fc5063349269", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6147,7 +6149,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "origin": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6162,7 +6164,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729419028, + "block_time": 1729447225, "asset_info": { "divisible": true, "asset_longname": null, @@ -6184,7 +6186,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw` (str, required) - The address to return + + address: `bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu` (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` @@ -6205,19 +6207,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c6ac5bd9f3a4f413beac1ab01476860538e1080fc55842bd6eb360ede5b96b03", + "tx_hash": "275311cc7bd91918a7fbd44f76fead7b651bd8618ecc35055a8fe826e5a737d0", "block_index": 141, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "destination": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", + "dispenser_tx_hash": "5dff86bc3e7656a76453cde04b43467ee7e36a8ce0015e2cc646fc5063349269", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6225,7 +6227,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "origin": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6240,7 +6242,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729419032, + "block_time": 1729447230, "asset_info": { "divisible": true, "asset_longname": null, @@ -6254,19 +6256,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "5b8b6d8f67be9da23119f8bb3166e1a15862ffe4ad592bfe7e4c4517034b809f", + "tx_hash": "6ef6ab7e7b7c5df724013537bfc0fd6c93202909eb3b7bbfe8dd3187a6f7bd26", "block_index": 140, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "destination": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", + "dispenser_tx_hash": "5dff86bc3e7656a76453cde04b43467ee7e36a8ce0015e2cc646fc5063349269", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6274,7 +6276,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "origin": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6289,7 +6291,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729419028, + "block_time": 1729447225, "asset_info": { "divisible": true, "asset_longname": null, @@ -6311,7 +6313,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx` (str, required) - The address to return + + address: `bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad` (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 @@ -6330,16 +6332,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 60, - "tx_hash": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b", + "tx_hash": "bf68e49ab1ffae81693d197b3de1bb5c91e0725e1272f025cd6f15af53e820c7", "block_index": 194, - "source": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", - "destination": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "source": "bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad", + "destination": "bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729419276, + "block_time": 1729447456, "fee_paid_normalized": "0.00600000" } ], @@ -6353,7 +6355,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address to return + + address: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu` (str, required) - The address to return + cursor (str, optional) - The last index of the issuances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of issuances to return @@ -6372,14 +6374,14 @@ Returns the issuances of an address "result": [ { "tx_index": 48, - "tx_hash": "e3935cf288cec52794daa26e2783ae06125ca6965f257e7d9ff3585239657033", + "tx_hash": "5791ae7ad84daa69a8a790a14d20e5a1e0b6997b562968904cdc3a9e2295dc00", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "transfer": false, "callable": false, "call_date": 0, @@ -6394,20 +6396,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729419150, + "block_time": 1729447328, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "99d745d7b6cab56067254aafd0c9aedb86c8122f7764c92e39088c6643178415", + "tx_hash": "c8e0d90305735dd8e36376d8a34fbeb27cf1dacf4c0d36c6a70b9854815bff4d", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "transfer": false, "callable": false, "call_date": 0, @@ -6422,20 +6424,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729419146, + "block_time": 1729447324, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "29e7696904677d53d03bc85c345fb128b588bf78d9bc197424431a64bb383969", + "tx_hash": "6f06044bd6162181a1d328afa6584ca4f56db8e51a7ba310153ce343e6f8874a", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "transfer": false, "callable": false, "call_date": 0, @@ -6450,20 +6452,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729419131, + "block_time": 1729447320, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "82690f74f70a78c1049e4a8fb569f81e1cd0cbf656d4f1c9b006ac977558a1b7", + "tx_hash": "61d3b779c4d676929065855bfadf4d4e31ce61f27b40aac632c8f0a5cf35a8de", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "transfer": false, "callable": false, "call_date": 0, @@ -6478,20 +6480,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729419127, + "block_time": 1729447315, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "c8665b67e71ee218d3415890729798887bbc54fb90e4c5e9cfeb24ce802a5b34", + "tx_hash": "e76e7d705f58d6716ca7d02d11d7d384250546ea9d960167434cfae4b41e13fb", "msg_index": 0, "block_index": 155, "asset": "A95428958968845068", "quantity": 0, "divisible": true, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "transfer": false, "callable": false, "call_date": 0, @@ -6506,7 +6508,7 @@ Returns the issuances of an address "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729419113, + "block_time": 1729447301, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -6521,7 +6523,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The issuer or owner to return + + address: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu` (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 @@ -6544,8 +6546,8 @@ Returns the valid assets issued or owned by an address "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "owner": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false, "supply": 10000000000, @@ -6553,16 +6555,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729419127, - "last_issuance_block_time": 1729419146, + "first_issuance_block_time": 1729447315, + "last_issuance_block_time": 1729447324, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "owner": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false, "supply": 100000000000, @@ -6570,16 +6572,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729419083, - "last_issuance_block_time": 1729419083, + "first_issuance_block_time": 1729447260, + "last_issuance_block_time": 1729447260, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "owner": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false, "supply": 40, @@ -6587,16 +6589,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729419007, - "last_issuance_block_time": 1729419011, + "first_issuance_block_time": 1729447203, + "last_issuance_block_time": 1729447208, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "owner": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false, "supply": 19, @@ -6604,16 +6606,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729418990, - "last_issuance_block_time": 1729419002, + "first_issuance_block_time": 1729447186, + "last_issuance_block_time": 1729447199, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "owner": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false, "supply": 0, @@ -6621,8 +6623,8 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729418969, - "last_issuance_block_time": 1729418986, + "first_issuance_block_time": 1729447166, + "last_issuance_block_time": 1729447182, "supply_normalized": "0.00000000" } ], @@ -6636,7 +6638,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The issuer to return + + address: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu` (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 @@ -6659,8 +6661,8 @@ Returns the valid assets issued by an address "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "owner": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false, "supply": 10000000000, @@ -6668,16 +6670,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729419127, - "last_issuance_block_time": 1729419146, + "first_issuance_block_time": 1729447315, + "last_issuance_block_time": 1729447324, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "owner": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false, "supply": 100000000000, @@ -6685,16 +6687,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729419083, - "last_issuance_block_time": 1729419083, + "first_issuance_block_time": 1729447260, + "last_issuance_block_time": 1729447260, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "owner": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false, "supply": 40, @@ -6702,16 +6704,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729419007, - "last_issuance_block_time": 1729419011, + "first_issuance_block_time": 1729447203, + "last_issuance_block_time": 1729447208, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "owner": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false, "supply": 19, @@ -6719,16 +6721,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729418990, - "last_issuance_block_time": 1729419002, + "first_issuance_block_time": 1729447186, + "last_issuance_block_time": 1729447199, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "owner": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false, "supply": 0, @@ -6736,8 +6738,8 @@ Returns the valid assets issued by an address "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729418969, - "last_issuance_block_time": 1729418986, + "first_issuance_block_time": 1729447166, + "last_issuance_block_time": 1729447182, "supply_normalized": "0.00000000" } ], @@ -6751,7 +6753,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The owner to return + + address: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu` (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 @@ -6774,8 +6776,8 @@ Returns the valid assets owned by an address "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "owner": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false, "supply": 10000000000, @@ -6783,16 +6785,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729419127, - "last_issuance_block_time": 1729419146, + "first_issuance_block_time": 1729447315, + "last_issuance_block_time": 1729447324, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "owner": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false, "supply": 100000000000, @@ -6800,16 +6802,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729419083, - "last_issuance_block_time": 1729419083, + "first_issuance_block_time": 1729447260, + "last_issuance_block_time": 1729447260, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "owner": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false, "supply": 40, @@ -6817,16 +6819,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729419007, - "last_issuance_block_time": 1729419011, + "first_issuance_block_time": 1729447203, + "last_issuance_block_time": 1729447208, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "owner": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false, "supply": 19, @@ -6834,16 +6836,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729418990, - "last_issuance_block_time": 1729419002, + "first_issuance_block_time": 1729447186, + "last_issuance_block_time": 1729447199, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "owner": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false, "supply": 0, @@ -6851,8 +6853,8 @@ Returns the valid assets owned by an address "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729418969, - "last_issuance_block_time": 1729418986, + "first_issuance_block_time": 1729447166, + "last_issuance_block_time": 1729447182, "supply_normalized": "0.00000000" } ], @@ -6866,7 +6868,7 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address to return + + address: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu` (str, required) - The address to return + cursor: `62` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -6885,17 +6887,17 @@ Returns the transactions of an address "result": [ { "tx_index": 59, - "tx_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", + "tx_hash": "3c8fed50434df20de6b1d183d583fde724a128b0f72ce1baae593b03bd361643", "block_index": 193, - "block_hash": "57dfced2294a097ac30ded16acb47a12f446095f608438f62863069eb55f26a9", - "block_time": 1729419272, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "block_hash": "3db74a68c196dec9f8e79ba19abbf571081d3131d6ecd5aee8199418f1db8b4b", + "block_time": 1729447451, + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da:1", + "utxos_info": "3c8fed50434df20de6b1d183d583fde724a128b0f72ce1baae593b03bd361643:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6931,23 +6933,23 @@ Returns the transactions of an address }, { "tx_index": 58, - "tx_hash": "f034d2fc20879fa54967667975c28e61b9e666da655c2cdeef7b284f057afff6", + "tx_hash": "0c6283d30a020a060bd9b8feb6949b3aa279be9b407f9d8ef97015053977f958", "block_index": 192, - "block_hash": "3658d2f90d22c5ac539825f061b3e1485c9d4cc338f3f9f38f7f545f4254effd", - "block_time": 1729419257, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "block_hash": "36f0f07cfc44e0b08783268e11509ef600352857da8cad31618b92375ed5b7da", + "block_time": 1729447437, + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "468fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", + "data": "4651bf0f868d20a7ffb1ffb95dda008d72d5440f3c08ebb52cea5e21416bbfe8fd", "supported": true, - "utxos_info": "f034d2fc20879fa54967667975c28e61b9e666da655c2cdeef7b284f057afff6:1", + "utxos_info": "0c6283d30a020a060bd9b8feb6949b3aa279be9b407f9d8ef97015053977f958:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", + "offer_hash": "51bf0f868d20a7ffb1ffb95dda008d72d5440f3c08ebb52cea5e21416bbfe8fd", "status": "valid" } }, @@ -6955,17 +6957,17 @@ Returns the transactions of an address }, { "tx_index": 57, - "tx_hash": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", + "tx_hash": "51bf0f868d20a7ffb1ffb95dda008d72d5440f3c08ebb52cea5e21416bbfe8fd", "block_index": 191, - "block_hash": "5a79892b45761c6b06ee6c4b9265e5b99130ebf3f085b1f3f60c31c331cb99c7", - "block_time": 1729419253, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "block_hash": "4d68da1b72dc251d1178c430c8fa8957fe6a54d8316e506559bfa4e4afbfc1dc", + "block_time": 1729447432, + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9:1", + "utxos_info": "51bf0f868d20a7ffb1ffb95dda008d72d5440f3c08ebb52cea5e21416bbfe8fd:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7001,17 +7003,17 @@ Returns the transactions of an address }, { "tx_index": 56, - "tx_hash": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", + "tx_hash": "f513fcb3467cbc7dbfe9958aa5ff4ea88d870361cf31448a92d5d8d36f14f104", "block_index": 190, - "block_hash": "27d56f8f7a9d91d559042a50061b02cd6ae526427d0159cd054bfb1432893317", - "block_time": 1729419248, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "block_hash": "78887eaa67a613258389d53b6241bc28286d718d1e89e8aa330411762b4d0b91", + "block_time": 1729447428, + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d64c08d96d88ea91d982fd48c18244108a8ef38f80d0f087d8a9e67fb02f22722fc8b975fb1e6c473e803dcc35a8148c4958edc036d7dbf62f22c9ee7f8c400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003803a1e55ee5bfb0a744b64a8ee0c32a9e7d98ec01f80eb3525eeb21513f819569078c868d2b17f43d8c980fc49b221b65525eaaf4136051348c3a67c0132fa400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a:0", + "utxos_info": "f513fcb3467cbc7dbfe9958aa5ff4ea88d870361cf31448a92d5d8d36f14f104:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7019,14 +7021,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "destination": "bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -7034,7 +7036,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "destination": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -7053,17 +7055,17 @@ Returns the transactions of an address }, { "tx_index": 51, - "tx_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", + "tx_hash": "53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3", "block_index": 185, - "block_hash": "696cbe8e6ec91178e31305ec01386699fd8188f612ad44cac93d7c45cac0e8c3", - "block_time": 1729419226, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "block_hash": "29d67896d8b6f9c661b37fb310de0f3b8aee6d7d58b9d6c9924ec7d723f49d43", + "block_time": 1729447406, + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983:1", + "utxos_info": "53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7108,7 +7110,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address to return + + address: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu` (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 @@ -7127,20 +7129,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 41, - "tx_hash": "5954cbb59b8f533b6dc597f67642fe125d0f54d58dd8bd6109079010bc39416b", + "tx_hash": "ccb12d28c1f97f63b03f3d50250a1b73998770f111969ee88849111ec3385cb3", "block_index": 154, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729419109, + "block_time": 1729447286, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -7165,7 +7167,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address to return + + address: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7194,9 +7196,9 @@ Returns the orders of an address "result": [ { "tx_index": 49, - "tx_hash": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b", + "tx_hash": "e3b475745235defa74a454101dd553cc3a3014ad6473b986467cfdb04dd19b5d", "block_index": 184, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7211,7 +7213,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729419167, + "block_time": 1729447344, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7237,9 +7239,9 @@ Returns the orders of an address }, { "tx_index": 51, - "tx_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", + "tx_hash": "53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3", "block_index": 188, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7254,7 +7256,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729419239, + "block_time": 1729447419, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7280,9 +7282,9 @@ Returns the orders of an address }, { "tx_index": 57, - "tx_hash": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", + "tx_hash": "51bf0f868d20a7ffb1ffb95dda008d72d5440f3c08ebb52cea5e21416bbfe8fd", "block_index": 192, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7297,7 +7299,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729419257, + "block_time": 1729447437, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7323,9 +7325,9 @@ Returns the orders of an address }, { "tx_index": 59, - "tx_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", + "tx_hash": "3c8fed50434df20de6b1d183d583fde724a128b0f72ce1baae593b03bd361643", "block_index": 193, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7340,7 +7342,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729419272, + "block_time": 1729447451, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7375,7 +7377,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The source of the fairminter to return + + address: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu` (str, required) - The source of the fairminter to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7393,10 +7395,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "c8665b67e71ee218d3415890729798887bbc54fb90e4c5e9cfeb24ce802a5b34", + "tx_hash": "e76e7d705f58d6716ca7d02d11d7d384250546ea9d960167434cfae4b41e13fb", "tx_index": 42, "block_index": 155, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7421,13 +7423,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729419113 + "block_time": 1729447301 }, { - "tx_hash": "f38ae5c8abb6b49f9591e5eaae9ea1d072612f70aaa73853f25ba05480b5076c", + "tx_hash": "499cda6c892bff542a02d2b575762157df777df8ab8215209fccd8e795319bdd", "tx_index": 22, "block_index": 135, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7452,13 +7454,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729419007 + "block_time": 1729447203 }, { - "tx_hash": "675462aae760c27fbb910a3dec263a6af7602d963a9cf8ee68a2fb5b96eba4c1", + "tx_hash": "11a00a39d209141e68c89e8037caf7d190739bdcfee3c56ffc740b7031ffc633", "tx_index": 18, "block_index": 131, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7483,13 +7485,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729418990 + "block_time": 1729447186 }, { - "tx_hash": "5dbec8408aedd6f8d6d3e7996757c0f4cc868053ef22cea6e506b00fda3c0efd", + "tx_hash": "bd690021efec814e7fe79fe8bbe7ff5a11b9eb1340ce43fa8d60363a7cbb875d", "tx_index": 14, "block_index": 130, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -7514,13 +7516,13 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729418986 + "block_time": 1729447182 }, { - "tx_hash": "a6341ea44902feb982ab97a01f0a8313fc32d0304f32bc76b50b54252f14310c", + "tx_hash": "9ba7a43c8b7a63ca23b7f272bdf6d12b92bf008c4dd73b0f6490b062966d39fc", "tx_index": 10, "block_index": 125, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7545,7 +7547,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729418965 + "block_time": 1729447162 } ], "next_cursor": null, @@ -7558,7 +7560,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw` (str, required) - The address of the mints to return + + address: `bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7576,127 +7578,127 @@ Returns the mints by address { "result": [ { - "tx_hash": "27f936d6cbc64295fbb696767820d4b39f85fcf3a8bd6345ef8efaf104da5fd0", + "tx_hash": "668bf685b6cd3b67b04a2443b8fbe9683abfd2ea36ddc8459375320b4d6d1625", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", - "fairminter_tx_hash": "f38ae5c8abb6b49f9591e5eaae9ea1d072612f70aaa73853f25ba05480b5076c", + "source": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", + "fairminter_tx_hash": "499cda6c892bff542a02d2b575762157df777df8ab8215209fccd8e795319bdd", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729419011, + "block_time": 1729447208, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false } }, { - "tx_hash": "7bb093115a2d0176787d5a006801240eef7f4cd71b84f5f2d06733ba0119c0cc", + "tx_hash": "fd522e662de9b67b2cbc7374ee36aac62312709c67a0b2a03cf92b578eefeccc", "tx_index": 21, "block_index": 134, - "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", - "fairminter_tx_hash": "675462aae760c27fbb910a3dec263a6af7602d963a9cf8ee68a2fb5b96eba4c1", + "source": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", + "fairminter_tx_hash": "11a00a39d209141e68c89e8037caf7d190739bdcfee3c56ffc740b7031ffc633", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729419002, + "block_time": 1729447199, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false } }, { - "tx_hash": "b851cfca13069253a3eeaa7fde8700cce9788279140b0656644aa14fd4e778ce", + "tx_hash": "9130632e59dfb2a8bdbade286bd7ff6c25a9faab67255b5b258045ac0cea6660", "tx_index": 20, "block_index": 133, - "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", - "fairminter_tx_hash": "675462aae760c27fbb910a3dec263a6af7602d963a9cf8ee68a2fb5b96eba4c1", + "source": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", + "fairminter_tx_hash": "11a00a39d209141e68c89e8037caf7d190739bdcfee3c56ffc740b7031ffc633", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729418998, + "block_time": 1729447195, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false } }, { - "tx_hash": "6d92c20c614c253df720b314dc30da74be0cd96f7f70fff35c3407497f7641dc", + "tx_hash": "c9ca8ff82d9863b89c0dad573f0eb9962031b0083ef5f4f542a4a620563afb6f", "tx_index": 19, "block_index": 132, - "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", - "fairminter_tx_hash": "675462aae760c27fbb910a3dec263a6af7602d963a9cf8ee68a2fb5b96eba4c1", + "source": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", + "fairminter_tx_hash": "11a00a39d209141e68c89e8037caf7d190739bdcfee3c56ffc740b7031ffc633", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729418994, + "block_time": 1729447191, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false } }, { - "tx_hash": "4315c703733bd80d7b59b20487cfab9d06f9ef12566fd13539e70991cef34510", + "tx_hash": "bde61f29f9d28c8babe8f9aa351b6fd8a55f66ca384e64edc18c0dfea8412878", "tx_index": 15, "block_index": 127, - "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", - "fairminter_tx_hash": "5dbec8408aedd6f8d6d3e7996757c0f4cc868053ef22cea6e506b00fda3c0efd", + "source": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", + "fairminter_tx_hash": "bd690021efec814e7fe79fe8bbe7ff5a11b9eb1340ce43fa8d60363a7cbb875d", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729418974, + "block_time": 1729447170, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false } }, { - "tx_hash": "9e241c300a1a56ab1d861331e00bfb7fad835c6be25cf243cd75edd3fe306672", + "tx_hash": "adf97ff1d6e59b9ceff9d3c93b3785b3a05e1d42e9267f50c0d1462a040a2ccb", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", - "fairminter_tx_hash": "a6341ea44902feb982ab97a01f0a8313fc32d0304f32bc76b50b54252f14310c", + "source": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", + "fairminter_tx_hash": "9ba7a43c8b7a63ca23b7f272bdf6d12b92bf008c4dd73b0f6490b062966d39fc", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729418956, + "block_time": 1729447153, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false } @@ -7712,7 +7714,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw` (str, required) - The address of the mints to return + + address: `bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu` (str, required) - The address of the mints to return + asset: `FAIRMINTA` (str, required) - The asset of the mints to return + cursor (str, optional) - + Default: `None` @@ -7731,22 +7733,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "9e241c300a1a56ab1d861331e00bfb7fad835c6be25cf243cd75edd3fe306672", + "tx_hash": "adf97ff1d6e59b9ceff9d3c93b3785b3a05e1d42e9267f50c0d1462a040a2ccb", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", - "fairminter_tx_hash": "a6341ea44902feb982ab97a01f0a8313fc32d0304f32bc76b50b54252f14310c", + "source": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", + "fairminter_tx_hash": "9ba7a43c8b7a63ca23b7f272bdf6d12b92bf008c4dd73b0f6490b062966d39fc", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729418956, + "block_time": 1729447153, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false } @@ -7785,8 +7787,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: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address that will make the bet - + feed_address: `bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu` (str, required) - The address that will make the bet + + feed_address: `bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu` (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) @@ -7854,7 +7856,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: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu` (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) @@ -7910,7 +7912,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -7922,7 +7924,7 @@ Composes a transaction to broadcast textual and numerical information to the net "btc_out": 0, "btc_change": 4999985819, "btc_fee": 14181, - "rawtransaction": "0200000000010134379ee0469de525146eef87487832d25d4786eccfd4c014c2b0261f4a6588fc00000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff0200000000000000002b6a29038f5445b352bee2a83265e33904643ebcdcdecbaf0bca734653eedf7d82aa07a2907ed3d8a446e5bf9bba052a01000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000000000000", + "rawtransaction": "02000000000101ee2c5f8d0918d29002403921941846c4f286d3bf950c5b2dd1a9cd52d4f368f400000000160014d527079b47914fe801aa3f514b98be31d5b78224ffffffff0200000000000000002b6a29af1f434d410f0831011ecd4d968e27b6eb2a962a522c1c65f4a084cb48dac22dccfeb9388f3e73f6ed9bba052a01000000160014d527079b47914fe801aa3f514b98be31d5b7822402000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -7944,8 +7946,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: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address that will be sending the payment - + order_match_id: `b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109` (str, required) - The ID of the order match to pay for + + address: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu` (str, required) - The address that will be sending the payment + + order_match_id: `53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3_130bd2486665083b2f9e2f3effca5ee96a8a412f872cb211754d78da496d1465` (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) @@ -7997,23 +7999,23 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "order_match_id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109" + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "order_match_id": "53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3_130bd2486665083b2f9e2f3effca5ee96a8a412f872cb211754d78da496d1465" }, "name": "btcpay", - "data": "434e5452505254590bb4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", + "data": "434e5452505254590b53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3130bd2486665083b2f9e2f3effca5ee96a8a412f872cb211754d78da496d1465", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999978951, "btc_fee": 18049, - "rawtransaction": "020000000001013ac9254fa830022cc186b8a81e9711e9e830138f1b82fed6a5d78f4d7b414b5500000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff03b80b000000000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351800000000000000004b6a499ddc7c9e9c28e3b8fe8dee31d7214aab602159790b17c019fcc281c2de12b88d75fad8a3dd24d913525bbe0af455a3fafa1552ed1351a16f7e7ad2638a63a29e9190fb6a5e375e4b1bc79f052a01000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000000000000", + "rawtransaction": "02000000000101d8605cdf4fbc6db2acdb7457efbbdaaf56ae9765bb139119a2ac181e9098da7800000000160014d527079b47914fe801aa3f514b98be31d5b78224ffffffff03b80b000000000000160014d527079b47914fe801aa3f514b98be31d5b7822400000000000000004b6a49055b7f20853c0173c4b7d0b5dd3c4ec097e5942472b3514a776bdc0e321f2580db29d08db02434b1e2ff77df0dc6959905909c909507c5687837aafc41802139c8531c4faa237e1076c79f052a01000000160014d527079b47914fe801aa3f514b98be31d5b7822402000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", - "tx1_hash": "f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", - "order_match_id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", + "tx0_hash": "53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3", + "tx1_hash": "130bd2486665083b2f9e2f3effca5ee96a8a412f872cb211754d78da496d1465", + "order_match_id": "53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3_130bd2486665083b2f9e2f3effca5ee96a8a412f872cb211754d78da496d1465", "status": "valid" } } @@ -8026,7 +8028,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: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address with the BTC to burn + + address: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu` (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` @@ -8081,7 +8083,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "quantity": 1000, "overburn": false }, @@ -8091,7 +8093,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss "btc_out": 1000, "btc_change": 4999985815, "btc_fee": 13185, - "rawtransaction": "02000000000101099078819364d1bd6ffee494fe691081b8ec7d216d18566ffaee78b0f6382f8400000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a01000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000000000000" + "rawtransaction": "02000000000101538687bfa2525040ac2d114a41b4384811f409006d8108e4d23df4dd1a3ee85900000000160014d527079b47914fe801aa3f514b98be31d5b78224ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a01000000160014d527079b47914fe801aa3f514b98be31d5b7822402000000000000" } } ``` @@ -8101,8 +8103,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: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `3c8fed50434df20de6b1d183d583fde724a128b0f72ce1baae593b03bd361643` (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) @@ -8154,21 +8156,21 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "offer_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da" + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "offer_hash": "3c8fed50434df20de6b1d183d583fde724a128b0f72ce1baae593b03bd361643" }, "name": "cancel", - "data": "434e545250525459466c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", + "data": "434e545250525459463c8fed50434df20de6b1d183d583fde724a128b0f72ce1baae593b03bd361643", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985819, "btc_fee": 14181, - "rawtransaction": "02000000000101a0026619cc15a01340ff7034b1dd615f3446caf32eb3cbe5df21c8ec3d40bf4400000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff0200000000000000002b6a2921a0609fed30e4f020d92f90fd89f3ff49b947c1e1889d036ab61bbd82156c7ba3a149aaec7fa3c00a9bba052a01000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000000000000", + "rawtransaction": "02000000000101604ee3bcb612494be52e687579b65bb1def99f50a7e83553075243e705be27cd00000000160014d527079b47914fe801aa3f514b98be31d5b78224ffffffff0200000000000000002b6a2916ea32cb301d130df790bcc937d601c14a66af85bec254dee9c04e4df49e6a180863ee9babe2c5531a9bba052a01000000160014d527079b47914fe801aa3f514b98be31d5b7822402000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", + "offer_hash": "3c8fed50434df20de6b1d183d583fde724a128b0f72ce1baae593b03bd361643", "status": "valid" } } @@ -8181,7 +8183,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu` (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 @@ -8236,7 +8238,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8255,7 +8257,7 @@ Composes a transaction to destroy a quantity of an asset. "btc_out": 0, "btc_change": 4999986346, "btc_fee": 13654, - "rawtransaction": "02000000000101480b39575c3ae8af03eda9cef959d3c9fa8321bd166809d31d968dd7d74fde1c00000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff020000000000000000226a20ea180e87c568d394d61a2c0bbf9c94393ed3fef91ca1f7c58dc0e5f39e09287faabc052a01000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000000000000", + "rawtransaction": "02000000000101884a5867fc540f7c9182430756da20a2409f678c02a6425c35f0e3f3d8acbef100000000160014d527079b47914fe801aa3f514b98be31d5b78224ffffffff020000000000000000226a205a4621f82dfab26acabd526c0073d56063a05acdb83301cd2ba13fc21db914acaabc052a01000000160014d527079b47914fe801aa3f514b98be31d5b7822402000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8275,7 +8277,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: `bcrt1qpt0kqhne88xpxhdekucjewsutuh8v0srmad5le` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qphcgel4555re0q3xjhgkvntrcugp5emt47xvgx` (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) @@ -8336,7 +8338,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qpt0kqhne88xpxhdekucjewsutuh8v0srmad5le", + "source": "bcrt1qphcgel4555re0q3xjhgkvntrcugp5emt47xvgx", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8360,7 +8362,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "btc_out": 0, "btc_change": 4949955760, "btc_fee": 14240, - "rawtransaction": "020000000001018a76074adb09c2d37cc57169219c493040c2f343ba55a4fafd7b6af3bd13fe88020000001600140adf605e7939cc135db9b7312cba1c5f2e763e03ffffffff0200000000000000002c6a2a78c7f4d9fe6cedbf93cf5e6e4c5edce0f44ead4670c59eafc99a36fbf624434fbb12ef2ce23b97190bfbb0540a27010000001600140adf605e7939cc135db9b7312cba1c5f2e763e0302000000000000", + "rawtransaction": "0200000000010193d257aea77d231896d1637bb4555fc43e8989a6f52cc9e6586202d1fcc8fe28020000001600140df08cfeb4a50797822695d1664d63c7101a676bffffffff0200000000000000002c6a2a045de32f533db50e795b6e02cd9617c771faa86d470f0a9df33d53af8a7e04536166324497838e7e1b6eb0540a27010000001600140df08cfeb4a50797822695d1664d63c7101a676b02000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -8386,7 +8388,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: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (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: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu` (str, required) - The address that will be issuing the dividend (must have the ownership of the asset which the dividend is being issued on) + quantity_per_unit: `1` (int, required) - The amount of dividend_asset rewarded (in satoshis, hence integer) + asset: `FAIRMINTA` (str, required) - The asset or subasset that the dividends are being rewarded on + dividend_asset: `XCP` (str, required) - The asset or subasset that the dividends are paid in @@ -8441,14 +8443,14 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -8467,7 +8469,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "btc_out": 0, "btc_change": 4999986287, "btc_fee": 13713, - "rawtransaction": "0200000000010172befe6314e0252d4d5a546342b3c29900012fbb8a9252adb5e15fbded4b48ee00000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff020000000000000000236a214592ed2fce9c665a66b110835a38f2541d3e31c01631433f72f9676c3a404ec3886fbc052a01000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000000000000", + "rawtransaction": "020000000001019c716e754002fbc9c239267cd403d82c256be57b0b8356f9fd394dadf820e58900000000160014d527079b47914fe801aa3f514b98be31d5b78224ffffffff020000000000000000236a218eae6afa8637074f35a76793825c4632d8adb7cd799de1f8fb2da71c65675ab6876fbc052a01000000160014d527079b47914fe801aa3f514b98be31d5b7822402000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -8488,10 +8490,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: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu` (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: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu` (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` @@ -8552,10 +8554,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "transfer_destination": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "lock": false, "reset": false, @@ -8568,7 +8570,7 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo "btc_out": 546, "btc_change": 4999983749, "btc_fee": 15705, - "rawtransaction": "0200000000010141320b3b064b77e9fea5b91fa44bcc9c25aa746d78d0d0aa7ba4408c41742bfc00000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff032202000000000000160014557b2d77cc0be408f0448c0d51a68f2eb0e135180000000000000000236a219cf3441277c7dd41343a20990c64dcf383ec1d872335624f32468fc8fda59afcb285b2052a01000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000000000000", + "rawtransaction": "020000000001016baa65edb103e9b78d728565bfca7b0860b713147c4913ab612f7c67225d4c1a00000000160014d527079b47914fe801aa3f514b98be31d5b78224ffffffff032202000000000000160014d527079b47914fe801aa3f514b98be31d5b782240000000000000000236a21d4c9e78b30c8c5151caa2da9956290ef51fe894ed1438efaabd32da20988df622785b2052a01000000160014d527079b47914fe801aa3f514b98be31d5b7822402000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -8597,9 +8599,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: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + assets: `XCP,MYASSETA` (str, required) - comma-separated list of assets to send - + destinations: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8,bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu,bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu` (str, required) - comma-separated list of addresses to send to + quantities: `1,2` (str, required) - comma-separated list of quantities to send (in satoshis, hence integer) + memo: `"Hello, world!"` (str, optional) - The Memo associated with this transaction + Default: `None` @@ -8656,16 +8658,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", 1 ], [ "MYASSETA", - "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", 2 ] ], @@ -8673,26 +8675,26 @@ Composes a transaction to send multiple payments to multiple addresses. "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280557b2d77cc0be408f0448c0d51a68f2eb0e1351880d64c08d96d88ea91d982fd48c18244108a8ef38f8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e54525052545903000280d527079b47914fe801aa3f514b98be31d5b78224803a1e55ee5bfb0a744b64a8ee0c32a9e7d98ec01f8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945492, "btc_fee": 52508, - "rawtransaction": "02000000000104872099d46dc4ce3f6ad0c361ce9d947cb034f9d81b1801aaea2de1363bd8fe4800000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff512d67af5c060aeaf2779bd07f5c60b7672b3bd33e2915bb7dbdd0d2c926e53f00000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffffa2e4f6f8781073461dcf3ae985a590d8edec751fcebf229538f925cf7045839300000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff8ef0f89317a99912e38142a6c4f6ea380b03ed3a5ed3d6783217577798f70bc200000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff03e8030000000000006951210344f7d4bb2c81a7b02feea09c29fb3d77fdd508e35831099f77b240362bf5b8d62102a232db0d2c6e4f90afae80aa2bf0b1942c6b8b60faa643cb693b63f1685dac262103affaa19ddc10bf87091cfd5b2bb70bbf61dbbe6e47c42d281a8eb11cd006464753aee803000000000000695121034bf7d4bb2c81a7b02fcdd7f1dbc2227ba89903075cd4d698cdc3e6b9054559212103972a13db606696fd27441973a90df955ae2f99ea7455cc444b73069d043280e32103affaa19ddc10bf87091cfd5b2bb70bbf61dbbe6e47c42d281a8eb11cd006464753ae14f316a804000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000002000002000002000000000000", + "rawtransaction": "02000000000104b4dd707fbeef9fa0c8906c6aa2454650149aa83b85a0142a2e3c57a6bcf60b0400000000160014d527079b47914fe801aa3f514b98be31d5b78224ffffffff5b61391448718ce6ed4cbfe8667bbcb6d1b0f1e6a546a22aafde2b1062eae7c200000000160014d527079b47914fe801aa3f514b98be31d5b78224ffffffff13b4bd8f46b981df1b7998eb30847be6e887db8dfb8872a4e930b3accb83c4c900000000160014d527079b47914fe801aa3f514b98be31d5b78224ffffffff8b9ab8531d1f95baab9f57d8de90c5ad030c618b852bd3d5ac41842f03ecb56e00000000160014d527079b47914fe801aa3f514b98be31d5b78224ffffffff03e803000000000000695121029586fce07bdbc0e0e6a3eb00dd689f360e881b64019f7f54fdb693bd62d90dd7210384741a534d027f8bd2f1ea90606088baed5516a00bd7b1fca0272ae64a3232d72103e74d003a79154c856cdee50e89fb7c82ac054c50ea8ea09ca5c6c5316bdf6d2153aee803000000000000695121039a86fce07bdbc0e0e6809c6d2fd1dc10b74f8a2be58b4ee01bdd0b03530cba6f21030650d269535791d029fb96db04c866b6dffcf3798517ae73826f4f8a265d1e9f2103e74d003a79154c856cdee50e89fb7c82ac054c50ea8ea09ca5c6c5316bdf6d2153ae14f316a804000000160014d527079b47914fe801aa3f514b98be31d5b7822402000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "destination": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "quantity": 2, "memo": "\"Hello, world!\"", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "destination": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "quantity": 1, "memo": "\"Hello, world!\"", "memo_is_hex": false @@ -8708,7 +8710,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + give_asset: `XCP` (str, required) - The asset that will be given in the trade + give_quantity: `1000` (int, required) - The quantity of the asset that will be given (in satoshis, hence integer) + get_asset: `FAIRMINTA` (str, required) - The asset that will be received in the trade @@ -8766,7 +8768,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -8783,7 +8785,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -8797,7 +8799,7 @@ Composes a transaction to place an order on the distributed exchange. "btc_out": 0, "btc_change": 4999985233, "btc_fee": 14767, - "rawtransaction": "0200000000010128775239981478a97966a85861e5fc1755ff978bcb0b425411c22907a40e7ddb00000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff020000000000000000356a337770e05b3aabf76a9469096af287405436f2cae0c408b9a068c9bf1c07c67d861a89a939893a087501a74d6950a8519a92572e51b8052a01000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000000000000", + "rawtransaction": "0200000000010153d3a4253523cc76976c09cd0b86e54e1526d77768fc21ae39bd7a4d33e362ea00000000160014d527079b47914fe801aa3f514b98be31d5b78224ffffffff020000000000000000356a33fcc177a234bf53ba8e9714111bec768483d746a1c813aa7dd2bca94626c8506f27b2830ee63ec87a32ff8cc4739841ab66049251b8052a01000000160014d527079b47914fe801aa3f514b98be31d5b7822402000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -8823,8 +8825,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: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw` (str, required) - The address that will be receiving the asset + + address: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu` (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 @@ -8884,8 +8886,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "destination": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "asset": "XCP", "quantity": 1000, "memo": null, @@ -8901,19 +8903,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880d64c08d96d88ea91d982fd48c18244108a8ef38f", + "data": "434e54525052545902000000000000000100000000000003e8803a1e55ee5bfb0a744b64a8ee0c32a9e7d98ec01f", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985526, "btc_fee": 14474, - "rawtransaction": "020000000001013aef4e61fa90767b43f53050df3b5c3606cf70c15cb9056e93f97b89906a0bb100000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff020000000000000000306a2e6d5364169c39378a5cbd37c5f7568e54c86811c7f236a73c33a7da755d47f78422c6b73cfb926cdc13735fa2568576b9052a01000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000000000000", + "rawtransaction": "020000000001013334ef0441fb0cd68a7404400397bbc49de4ce69e062b29ff9405b086277e78900000000160014d527079b47914fe801aa3f514b98be31d5b78224ffffffff020000000000000000306a2e082de41d64ad6817d62284e01821481eddab427a00fff1eb6e744bbd36a5433afeeed7e0c6e95adf861d1f47961c76b9052a01000000160014d527079b47914fe801aa3f514b98be31d5b7822402000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "address": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "memo": null, "quantity_normalized": "0.00001000" } @@ -8927,8 +8929,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: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address that will be sending - + destination: `bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu` (str, required) - The address that will be sending + + destination: `bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu` (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 @@ -8982,23 +8984,23 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "destination": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480d64c08d96d88ea91d982fd48c18244108a8ef38f07ffff", + "data": "434e54525052545904803a1e55ee5bfb0a744b64a8ee0c32a9e7d98ec01f07ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986287, "btc_fee": 13713, - "rawtransaction": "02000000000101bccec179aa47263a72e38ff037acd33b61961a2de721ab85455c77af0ef6288900000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff020000000000000000236a2138d73af38cfb2ed202b8b53ce996892dfb014260b15177c4ddebafc7f720ce45f86fbc052a01000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000000000000", + "rawtransaction": "02000000000101be1e937b0bebd2036a3682a8ada581fe03315229afd67fcfab26198bc99e179e00000000160014d527079b47914fe801aa3f514b98be31d5b78224ffffffff020000000000000000236a216cc563417ca37c334ea7de24d2036df90c59babe3e903dc95204f9f4c425d6d3566fbc052a01000000160014d527079b47914fe801aa3f514b98be31d5b7822402000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "destination": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "flags": 7, "memo": "ffff" } @@ -9012,8 +9014,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: `bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z` (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` @@ -9066,8 +9068,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", - "destination": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "source": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", + "destination": "bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z", "quantity": 1000 }, "name": "dispense", @@ -9076,7 +9078,7 @@ Composes a transaction to send BTC to a dispenser. "btc_out": 1000, "btc_change": 4949852643, "btc_fee": 14357, - "rawtransaction": "02000000000101329deef688fa5253ef66b18852ede9e913f8e35aa91037e9483055c5f3493e0902000000160014d64c08d96d88ea91d982fd48c18244108a8ef38fffffffff03e8030000000000001600143dcc35a8148c4958edc036d7dbf62f22c9ee7f8c00000000000000000c6a0a987ab516920b133faea7e3c1082701000000160014d64c08d96d88ea91d982fd48c18244108a8ef38f02000000000000", + "rawtransaction": "020000000001016560120357545dfddd412ad477d4d11c0f0bdcbc4a825e210171014f64590d41020000001600143a1e55ee5bfb0a744b64a8ee0c32a9e7d98ec01fffffffff03e803000000000000160014fc49b221b65525eaaf4136051348c3a67c0132fa00000000000000000c6a0a7a1f447464dcb0710011e3c10827010000001600143a1e55ee5bfb0a744b64a8ee0c32a9e7d98ec01f02000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9093,7 +9095,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address that will be issuing the asset + + address: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu` (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: `` @@ -9125,7 +9127,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. + Default: `False` + divisible (bool, optional) - If True, the asset is divisible + Default: `True` - + description (str, optional) - The description of the asset + + description (str, optional) - The description of the asset. Overrides the current description if the asset already exists. + Default: `` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -9178,7 +9180,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9203,7 +9205,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "btc_out": 0, "btc_change": 4999985467, "btc_fee": 14533, - "rawtransaction": "0200000000010119b378c662e58853c1348d64e6eb24bea86ad258d65edea5c46e3a3066945dad00000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff020000000000000000316a2f7770f3fda885000fecf9982d1bd5470fcfe09b713f5ab032aba6a04c462c7e62318cde01a00ffff3a8c2d24e4f38ca3bb9052a01000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000000000000", + "rawtransaction": "02000000000101abc46182b502dd3b475cdf9dba3291e7b2e79f0754e250ead04deeb3bd70be4100000000160014d527079b47914fe801aa3f514b98be31d5b78224ffffffff020000000000000000316a2fffc2a20b1cea802360f8401b73af1ca6cbf8588a58da67808a7f4459320345c15b28154aab32e54c6f5f688acb5fd63bb9052a01000000160014d527079b47914fe801aa3f514b98be31d5b7822402000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9236,7 +9238,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: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address that will be minting the asset + + address: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu` (str, required) - The address that will be minting the asset + asset: `FAIRMINTC` (str, required) - The asset to mint + quantity: `1` (int, optional) - The quantity of the asset to mint (in satoshis, hence integer) + Default: `0` @@ -9291,13 +9293,13 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -9309,7 +9311,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto "btc_out": 0, "btc_change": 4999987049, "btc_fee": 12951, - "rawtransaction": "02000000000101aa8f3dc7530a42a6d54ec70ec455b82ffdd975d2b57553f9efefeb7cfbaccc9600000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff020000000000000000166a142eaf0bc20ec8c24db516a8d68d159aa278543cad69bf052a01000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000000000000", + "rawtransaction": "02000000000101792a4b530af5e83cb6ffd64357b81110b81579279565b50625403a0bc46660c700000000160014d527079b47914fe801aa3f514b98be31d5b78224ffffffff020000000000000000166a14ca6fdec75b58438c96cdee84eddf9d855ebd7ec169bf052a01000000160014d527079b47914fe801aa3f514b98be31d5b7822402000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -9327,10 +9329,10 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto Composes a transaction to attach assets from an address to UTXO. + Parameters - + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address from which the assets are attached + + address: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu` (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: `be18eb1f6e1b54bd8664947ea547ecd06aaaddf36cfee98d705829f2cb6ad6df:0` (str, optional) - The utxo to attach the assets to + + destination: `46d23e91ffc04371577fb45d7dae9418eb9f1e3b2ca9dd7847ba0e019b49cd51:1` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -9383,8 +9385,8 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "destination": "be18eb1f6e1b54bd8664947ea547ecd06aaaddf36cfee98d705829f2cb6ad6df:0", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "destination": "46d23e91ffc04371577fb45d7dae9418eb9f1e3b2ca9dd7847ba0e019b49cd51:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9397,12 +9399,12 @@ Composes a transaction to attach assets from an address to UTXO. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e545250525459646263727431713234616a3661377670306a7133757a793373783472663530393663777a64676374786b7263387c626531386562316636653162353462643836363439343765613534376563643036616161646466333663666565393864373035383239663263623661643664663a307c5843507c31303030", + "data": "434e5452505254596462637274317136356e73307836386a3938377371643238616735687839377838326d307133796370633274757c343664323365393166666330343337313537376662343564376461653934313865623966316533623263613964643738343762613065303139623439636435313a317c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999918531, "btc_fee": 78469, - "rawtransaction": "0200000000010630dcdc266cd86fabe3b8ab5e25df57e4c5cfa946e8186bf4bbea813ec4561fed00000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff5a6be5e1f5af695aefa60d94b1492c99bd42a437ed966f05a7a130520cfe6ba900000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff4bda285c4094cdfe2eab438e2a0934ed50bccade6f0dab8915efc41c963edce900000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffffb27fe2cf50f9acdc84d3f7cc4aa3a202dcafd338aaf49df482ac5c267eef006200000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff9c937712c574e688348ecc1802eb78f78aa7810f24143835f9bee6aac970ad0100000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff78871c3829dcefbc03fa10a30ff9b64a490e99a84d9170997a4946aa581606b500000000160014557b2d77cc0be408f0448c0d51a68f2eb0e13518ffffffff04e803000000000000695121025bef3a5bcc2da7ee4be733d8c975743a4a8c856bc1c65327f9cda79dcf7d88192103178ba980fa6c935472863ee09b6f298a47eb1aac9dcc74f80bfc9876f1063fc92103affaa19ddc10bf87091cfd5b2bb70bbf61dbbe6e47c42d281a8eb11cd006464753aee803000000000000695121025bef3a5bcc2da7ee4be567de8a63707f1adcdc37c1935d65be98acd9c83f97a021020ddceaceaf7f940526d93bb58f7328881da706f0df9a74b650ff9b2df6526f232103affaa19ddc10bf87091cfd5b2bb70bbf61dbbe6e47c42d281a8eb11cd006464753aee8030000000000006951210371ef3a5bcc2da7ee4be767dfdd3b753720fbb47dc697546189fdcdecfc08f2dd21026eb8daf8ce1ef56142bf0883ec154ded249f62c7efaf4c846999a94e94640ece2103affaa19ddc10bf87091cfd5b2bb70bbf61dbbe6e47c42d281a8eb11cd006464753aec36d22fc06000000160014557b2d77cc0be408f0448c0d51a68f2eb0e1351802000002000002000002000002000002000000000000", + "rawtransaction": "02000000000106326cc233f42fa81583f7e65e209213acbc0011e91203844c78963e0e7789a84e00000000160014d527079b47914fe801aa3f514b98be31d5b78224ffffffff766db744208d131c4d356ecdd536f5b7a4b8c5647a5ee2cc0743e54e5f22e5b700000000160014d527079b47914fe801aa3f514b98be31d5b78224ffffffffd8faa050fc93d7f8e92483ff3f2588f8ba57ca6b860eb9d61a73ee65bcc5937700000000160014d527079b47914fe801aa3f514b98be31d5b78224ffffffff35f01f688471dc69c67dcb174b51ef703af42e0386d7f1098120096014457cae00000000160014d527079b47914fe801aa3f514b98be31d5b78224ffffffff038d6dc3aad5e4f46e0d89cf32016870a31d472db5c2d24825cb7da924b29b9b00000000160014d527079b47914fe801aa3f514b98be31d5b78224ffffffff4a47af87149353e4d66feea51ffc37393389a572f31e75feb36c209dcba8bfc300000000160014d527079b47914fe801aa3f514b98be31d5b78224ffffffff04e80300000000000069512102b2eaa8358a206a62dbe39964f8b7bf71a97479562908a3703aae94e80640f4de2102699ba735fd460e45242a2b0bc64956008da562db4114c5997e250083aac236cc2103e74d003a79154c856cdee50e89fb7c82ac054c50ea8ea09ca5c6c5316bdf6d2153aee80300000000000069512103b2eaa8358a206a62dbb69d61e9f3ba33a87022122e16f77c65f39bbb1454a95421026f92fe37aa17104d7661710bc8181e5790f12a8c4402d1d52f235588fb9336512103e74d003a79154c856cdee50e89fb7c82ac054c50ea8ea09ca5c6c5316bdf6d2153aee8030000000000006951210298eaa8358a206a62dbe49f32bbf9bf7cc70247592840a5785097acdf7531902821025ba3c652c82e767c13521339ab792733f4c612b87360b0e54a1364b199a70fff2103e74d003a79154c856cdee50e89fb7c82ac054c50ea8ea09ca5c6c5316bdf6d2153aec36d22fc06000000160014d527079b47914fe801aa3f514b98be31d5b7822402000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -9419,8 +9421,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: `02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address to detach the assets to + + utxo: `364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu` (str, required) - The address to detach the assets to + asset: `XCP` (str, required) - The asset or subasset to detach + quantity: `1000` (int, required) - The quantity of the asset to detach (in satoshis, hence integer) + encoding (str, optional) - The encoding method to use @@ -9474,8 +9476,8 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", - "destination": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453:0", + "destination": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9488,12 +9490,12 @@ Composes a transaction to detach assets from UTXO to an address. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964303261383361623766643037353237666236636230626230643163613337643361373666613235303433643031393463663866323237623266353233636538393a307c6263727431713234616a3661377670306a7133757a793373783472663530393663777a64676374786b7263387c5843507c31303030", + "data": "434e54525052545964333634363438643365666236393265303430326230323235373665313634623934636133386430656237326666383762303134653639333337313937303435333a307c62637274317136356e73307836386a3938377371643238616735687839377838326d307133796370633274757c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, "btc_change": 4950030353, "btc_fee": 46647, - "rawtransaction": "02000000000103c44e3a56a63826b2dbfd1a63be0925eece0ae9140c72e520728421038a5d14e801000000160014be349a1393f05baf3bf827e20714733ce47e0a21ffffffff8a76074adb09c2d37cc57169219c493040c2f343ba55a4fafd7b6af3bd13fe8800000000160014be349a1393f05baf3bf827e20714733ce47e0a21ffffffff19eb293896eb217d94e36694ad3157ab2bc9f28a8aae3c1f7e54292e2e0d926201000000160014be349a1393f05baf3bf827e20714733ce47e0a21ffffffff04e803000000000000695121027088824e7c0765c0fab07b28837d09a77417033261d987972d5b00b5fdad6a4821020d3a3764f657241581c71e8da2662a3d251b2c0a884daafd7402b6ddd13e966a210326c408f412d836117adec973b8f41ca15fa95a3652199afab7cbea30203e4c7e53aee803000000000000695121027088824e7c0765c0fae67c78d0230ff42543006e68d482d9785e10f7afbe682621025b396d36a603335686c95cdfe02a356f6456284cdd1caaf57b55a2c18d3fc752210326c408f412d836117adec973b8f41ca15fa95a3652199afab7cbea30203e4c7e53aee803000000000000695121035a88824e7c0765c0faa03371902602ba4e63352a60de82951a3d62839ecf5a0721036f580700c7344526b6a32dec95504c5c172e1c3ebb299acc4d36d5bbe958a47b210326c408f412d836117adec973b8f41ca15fa95a3652199afab7cbea30203e4c7e53ae11780b2701000000160014be349a1393f05baf3bf827e20714733ce47e0a2102000002000002000000000000", + "rawtransaction": "02000000000103316dabbba571aad0ba205ae0502bf90bc23f44b92ab38ddd93af195471a8a697010000001600140d4744efbb5118ac528ed11ff2ccbd4e8d1bd719ffffffff93d257aea77d231896d1637bb4555fc43e8989a6f52cc9e6586202d1fcc8fe28000000001600140d4744efbb5118ac528ed11ff2ccbd4e8d1bd719ffffffff69dfb75fbbbf4d6a009911f0321a83f7199422fde9750a1eec2b5a6cea8881ea010000001600140d4744efbb5118ac528ed11ff2ccbd4e8d1bd719ffffffff04e80300000000000069512102e7737a34b49c912b82c8649b2d68766a56cb44ab09515de8df9303b70c82d55621030f22f8ae553b5b496d0d47ddd4c20c8c44e45cfa45e848c75e1d7062269dd664210251055f80cf155769eddd72964752e4913175b6e38e798658fb282125295cd92e53aee80300000000000069512103e7737a34b49c912b829a6e9e2a69736b05c815f8585d54a6d8c045f30f91d3352102087ebea91b6852156057499ac6c70d8c41b30cf00ae319d95e187f62669aca6f210251055f80cf155769eddd72964752e4913175b6e38e798658fb282125295cd92e53aee80300000000000069512103cd737a34b49c912b82cf27ce2b2a372e6abb71b15a5754eabaa337873ee0e5b221033d10cd99635e6a7f596f7ee9b7a33fb420d4399872da2ea1662a125217a9b370210251055f80cf155769eddd72964752e4913175b6e38e798658fb282125295cd92e53ae11780b27010000001600140d4744efbb5118ac528ed11ff2ccbd4e8d1bd71902000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -9548,8 +9550,8 @@ Returns the valid assets "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "owner": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false, "supply": 10000000000, @@ -9557,16 +9559,16 @@ Returns the valid assets "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729419127, - "last_issuance_block_time": 1729419146, + "first_issuance_block_time": 1729447315, + "last_issuance_block_time": 1729447324, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", - "owner": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "issuer": "bcrt1qvkluz3xu0dwkdu6whlkfuz0j7q7etzfpr6le3w", + "owner": "bcrt1qvkluz3xu0dwkdu6whlkfuz0j7q7etzfpr6le3w", "divisible": true, "locked": false, "supply": 100000000000, @@ -9574,16 +9576,16 @@ Returns the valid assets "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1729419123, - "last_issuance_block_time": 1729419123, + "first_issuance_block_time": 1729447311, + "last_issuance_block_time": 1729447311, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "owner": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false, "supply": 100000000000, @@ -9591,16 +9593,16 @@ Returns the valid assets "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729419083, - "last_issuance_block_time": 1729419083, + "first_issuance_block_time": 1729447260, + "last_issuance_block_time": 1729447260, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "owner": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false, "supply": 40, @@ -9608,16 +9610,16 @@ Returns the valid assets "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729419007, - "last_issuance_block_time": 1729419011, + "first_issuance_block_time": 1729447203, + "last_issuance_block_time": 1729447208, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "owner": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false, "supply": 19, @@ -9625,8 +9627,8 @@ Returns the valid assets "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729418990, - "last_issuance_block_time": 1729419002, + "first_issuance_block_time": 1729447186, + "last_issuance_block_time": 1729447199, "supply_normalized": "0.00000019" } ], @@ -9654,8 +9656,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "owner": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false, "supply": 10000000000, @@ -9663,8 +9665,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1729418953, - "last_issuance_block_time": 1729418965, + "first_issuance_block_time": 1729447148, + "last_issuance_block_time": 1729447162, "supply_normalized": "100.00000000" } } @@ -9695,7 +9697,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "address": "bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9703,14 +9705,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "address": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9718,7 +9720,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -9736,7 +9738,7 @@ Returns the balance of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address to return + + address: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu` (str, required) - The address to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -9747,7 +9749,7 @@ Returns the balance of an address and asset ``` { "result": { - "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "address": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -9798,9 +9800,9 @@ Returns the orders of an asset "result": [ { "tx_index": 49, - "tx_hash": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b", + "tx_hash": "e3b475745235defa74a454101dd553cc3a3014ad6473b986467cfdb04dd19b5d", "block_index": 184, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9815,7 +9817,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729419167, + "block_time": 1729447344, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9841,9 +9843,9 @@ Returns the orders of an asset }, { "tx_index": 51, - "tx_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", + "tx_hash": "53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3", "block_index": 188, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -9858,7 +9860,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729419239, + "block_time": 1729447419, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9884,9 +9886,9 @@ Returns the orders of an asset }, { "tx_index": 57, - "tx_hash": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", + "tx_hash": "51bf0f868d20a7ffb1ffb95dda008d72d5440f3c08ebb52cea5e21416bbfe8fd", "block_index": 192, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9901,7 +9903,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729419257, + "block_time": 1729447437, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9927,9 +9929,9 @@ Returns the orders of an asset }, { "tx_index": 59, - "tx_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", + "tx_hash": "3c8fed50434df20de6b1d183d583fde724a128b0f72ce1baae593b03bd361643", "block_index": 193, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9944,7 +9946,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729419272, + "block_time": 1729447451, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9970,9 +9972,9 @@ Returns the orders of an asset }, { "tx_index": 52, - "tx_hash": "a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", + "tx_hash": "ea35ac149cac7ce65aec3f44fde03ff76f1a764dbd2ec69cfdb725a6e730cc7b", "block_index": 187, - "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "source": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -9987,7 +9989,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729419235, + "block_time": 1729447415, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10049,13 +10051,13 @@ Returns the orders of an asset { "result": [ { - "id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", + "id": "53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3_130bd2486665083b2f9e2f3effca5ee96a8a412f872cb211754d78da496d1465", "tx0_index": 51, - "tx0_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", - "tx0_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "tx0_hash": "53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3", + "tx0_address": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "tx1_index": 54, - "tx1_hash": "f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", - "tx1_address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "tx1_hash": "130bd2486665083b2f9e2f3effca5ee96a8a412f872cb211754d78da496d1465", + "tx1_address": "bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10069,7 +10071,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729419239, + "block_time": 1729447419, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10089,13 +10091,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", + "id": "53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3_ea35ac149cac7ce65aec3f44fde03ff76f1a764dbd2ec69cfdb725a6e730cc7b", "tx0_index": 51, - "tx0_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", - "tx0_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "tx0_hash": "53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3", + "tx0_address": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "tx1_index": 52, - "tx1_hash": "a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", - "tx1_address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "tx1_hash": "ea35ac149cac7ce65aec3f44fde03ff76f1a764dbd2ec69cfdb725a6e730cc7b", + "tx1_address": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10109,7 +10111,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729419235, + "block_time": 1729447415, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10129,13 +10131,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b_97a614c1cd5ebc6475742cff5c39401b7d7a1c7b9432bf2f31b973c81a8ceeac", + "id": "e3b475745235defa74a454101dd553cc3a3014ad6473b986467cfdb04dd19b5d_a65fbad5f7e83c65b8c3b5ab58dab74fa7798d0f7497da4f2d17c09f8443df59", "tx0_index": 49, - "tx0_hash": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b", - "tx0_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "tx0_hash": "e3b475745235defa74a454101dd553cc3a3014ad6473b986467cfdb04dd19b5d", + "tx0_address": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "tx1_index": 50, - "tx1_hash": "97a614c1cd5ebc6475742cff5c39401b7d7a1c7b9432bf2f31b973c81a8ceeac", - "tx1_address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "tx1_hash": "a65fbad5f7e83c65b8c3b5ab58dab74fa7798d0f7497da4f2d17c09f8443df59", + "tx1_address": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10149,7 +10151,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729419167, + "block_time": 1729447344, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10229,20 +10231,20 @@ Returns the credits of an asset "result": [ { "block_index": 194, - "address": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "address": "bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b", + "event": "bf68e49ab1ffae81693d197b3de1bb5c91e0725e1272f025cd6f15af53e820c7", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729419276, + "block_time": 1729447456, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -10250,20 +10252,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "address": "bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "45c5ae041f18c2fc862a1c82ae645f4f0627dac8edf11736fa4d1533720381f7", + "event": "70d03c26a00f21e99f913f934ffffb6cb88770ed7538a982a6354d4dc084d458", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729418965, + "block_time": 1729447162, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -10271,20 +10273,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "address": "bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "fa630def9f37d80f4fb7036a427e5b2458137478095ee22a8bd99036659e19bf", + "event": "fab5dda40be9b5a187883473c80286bfbc52ec97de1c45cd45d018ab990413c0", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729418961, + "block_time": 1729447157, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -10292,20 +10294,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "address": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "9e241c300a1a56ab1d861331e00bfb7fad835c6be25cf243cd75edd3fe306672", + "event": "adf97ff1d6e59b9ceff9d3c93b3785b3a05e1d42e9267f50c0d1462a040a2ccb", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729418961, + "block_time": 1729447157, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -10317,16 +10319,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "fa630def9f37d80f4fb7036a427e5b2458137478095ee22a8bd99036659e19bf", + "event": "fab5dda40be9b5a187883473c80286bfbc52ec97de1c45cd45d018ab990413c0", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729418961, + "block_time": 1729447157, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -10386,12 +10388,12 @@ Returns the debits of an asset "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "event": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "tx_index": 62, - "utxo": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", - "utxo_address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "utxo": "ea7f3e0c42a8b5fd1d052a801db5c9b934b7cbead7d495511fbd6ec515a775d9:1", + "utxo_address": "bcrt1qvkluz3xu0dwkdu6whlkfuz0j7q7etzfpr6le3w", "confirmed": true, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -10403,16 +10405,16 @@ Returns the debits of an asset }, { "block_index": 195, - "address": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "address": "bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "857b0199761f230748e7583d48033e2dcc3de8fbea85b2ca971f83f5261bd29a", + "event": "0b96e09bf2b9b10ea3d1a40906b3834072d951cfcef625173390a816be06fbe3", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729419281, + "block_time": 1729447460, "asset_info": { "divisible": true, "asset_longname": null, @@ -10424,16 +10426,16 @@ Returns the debits of an asset }, { "block_index": 194, - "address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "address": "bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b", + "event": "bf68e49ab1ffae81693d197b3de1bb5c91e0725e1272f025cd6f15af53e820c7", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729419276, + "block_time": 1729447456, "asset_info": { "divisible": true, "asset_longname": null, @@ -10445,16 +10447,16 @@ Returns the debits of an asset }, { "block_index": 194, - "address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "address": "bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b", + "event": "bf68e49ab1ffae81693d197b3de1bb5c91e0725e1272f025cd6f15af53e820c7", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729419276, + "block_time": 1729447456, "asset_info": { "divisible": true, "asset_longname": null, @@ -10466,16 +10468,16 @@ Returns the debits of an asset }, { "block_index": 193, - "address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "address": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", + "event": "3c8fed50434df20de6b1d183d583fde724a128b0f72ce1baae593b03bd361643", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729419272, + "block_time": 1729447451, "asset_info": { "divisible": true, "asset_longname": null, @@ -10515,20 +10517,20 @@ Returns the dividends of an asset "result": [ { "tx_index": 41, - "tx_hash": "5954cbb59b8f533b6dc597f67642fe125d0f54d58dd8bd6109079010bc39416b", + "tx_hash": "ccb12d28c1f97f63b03f3d50250a1b73998770f111969ee88849111ec3385cb3", "block_index": 154, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729419109, + "block_time": 1729447286, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -10572,14 +10574,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "45c5ae041f18c2fc862a1c82ae645f4f0627dac8edf11736fa4d1533720381f7", + "tx_hash": "70d03c26a00f21e99f913f934ffffb6cb88770ed7538a982a6354d4dc084d458", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "transfer": false, "callable": false, "call_date": 0, @@ -10594,20 +10596,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729418965, + "block_time": 1729447162, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "fa630def9f37d80f4fb7036a427e5b2458137478095ee22a8bd99036659e19bf", + "tx_hash": "fab5dda40be9b5a187883473c80286bfbc52ec97de1c45cd45d018ab990413c0", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "transfer": false, "callable": false, "call_date": 0, @@ -10622,20 +10624,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729418961, + "block_time": 1729447157, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "9e241c300a1a56ab1d861331e00bfb7fad835c6be25cf243cd75edd3fe306672", + "tx_hash": "adf97ff1d6e59b9ceff9d3c93b3785b3a05e1d42e9267f50c0d1462a040a2ccb", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "transfer": false, "callable": false, "call_date": 0, @@ -10650,20 +10652,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729418956, + "block_time": 1729447153, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "a6341ea44902feb982ab97a01f0a8313fc32d0304f32bc76b50b54252f14310c", + "tx_hash": "9ba7a43c8b7a63ca23b7f272bdf6d12b92bf008c4dd73b0f6490b062966d39fc", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "transfer": false, "callable": false, "call_date": 0, @@ -10678,7 +10680,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729418953, + "block_time": 1729447148, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -10712,10 +10714,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 62, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "source": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", - "destination": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", + "source": "ea7f3e0c42a8b5fd1d052a801db5c9b934b7cbead7d495511fbd6ec515a775d9:1", + "destination": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10723,7 +10725,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -10736,10 +10738,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 56, - "tx_hash": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", + "tx_hash": "f513fcb3467cbc7dbfe9958aa5ff4ea88d870361cf31448a92d5d8d36f14f104", "block_index": 190, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "destination": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "asset": "XCP", "quantity": 10, "status": "valid", @@ -10747,7 +10749,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729419248, + "block_time": 1729447428, "asset_info": { "divisible": true, "asset_longname": null, @@ -10760,10 +10762,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 55, - "tx_hash": "9e959e4d7992f9ebacdffa06990aeb2dc4ae9b61a3bce8e456f2a54430c2047a", + "tx_hash": "efd3181b365de6670bf1a6547dfbff5b41c38a0175263f31288db454ca4fb931", "block_index": 189, - "source": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", - "destination": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "source": "bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad", + "destination": "bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -10771,7 +10773,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729419244, + "block_time": 1729447424, "asset_info": { "divisible": true, "asset_longname": null, @@ -10784,10 +10786,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 44, - "tx_hash": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80", + "tx_hash": "ea7f3e0c42a8b5fd1d052a801db5c9b934b7cbead7d495511fbd6ec515a775d9", "block_index": 157, - "source": "62920d2e2e29547e1f3cae8a8af2c92bab5731ad9466e3947d21eb963829eb19:0", - "destination": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", + "source": "ea8188ea6c5a2bec1e0a75e9fd229419f7831a32f01199006a4dbfbb5fb7df69:0", + "destination": "ea7f3e0c42a8b5fd1d052a801db5c9b934b7cbead7d495511fbd6ec515a775d9:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10795,7 +10797,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729419123, + "block_time": 1729447311, "asset_info": { "divisible": true, "asset_longname": null, @@ -10808,10 +10810,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 43, - "tx_hash": "62920d2e2e29547e1f3cae8a8af2c92bab5731ad9466e3947d21eb963829eb19", + "tx_hash": "ea8188ea6c5a2bec1e0a75e9fd229419f7831a32f01199006a4dbfbb5fb7df69", "block_index": 156, - "source": "9c0d167b260df60d016e565fc425dfef009e84963c7a94841da4fd69dd1b28ad:0", - "destination": "62920d2e2e29547e1f3cae8a8af2c92bab5731ad9466e3947d21eb963829eb19:0", + "source": "1455d3a541a40862f0552c550171b2fe3dd670fe60a47c59d95eb1eccdff9be7:0", + "destination": "ea8188ea6c5a2bec1e0a75e9fd229419f7831a32f01199006a4dbfbb5fb7df69:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10819,7 +10821,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729419118, + "block_time": 1729447305, "asset_info": { "divisible": true, "asset_longname": null, @@ -10870,9 +10872,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", + "tx_hash": "5dff86bc3e7656a76453cde04b43467ee7e36a8ce0015e2cc646fc5063349269", "block_index": 141, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -10881,7 +10883,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "origin": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10891,7 +10893,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729419032, + "block_time": 1729447230, "asset_info": { "divisible": true, "asset_longname": null, @@ -10907,9 +10909,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "0c3886c49a507aedd17fd9f356a72b16d9353097e6c76fdd57bb6e87e969db10", + "tx_hash": "6b942a8ea092faf4124cbd5e7e73977e3a0d3748a3e5f1ea63df048d936a3df0", "block_index": 142, - "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "source": "bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -10918,7 +10920,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "origin": "bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -10928,7 +10930,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729419037, + "block_time": 1729447234, "asset_info": { "divisible": true, "asset_longname": null, @@ -10944,9 +10946,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "03163da185ecd4f58783c6feb8cdf29574011d5410f7983f983644aaaec1d685", + "tx_hash": "0e7f77c7eb398dc9d8a016b57e8d90470eccce2a1e740a0289757820b0df3bb9", "block_index": 150, - "source": "mgm25pVEpj1Ey3H9pdvQUT6kCysXns3ZpB", + "source": "n2QS8qnKWbBiGnzYZTMNVjNwQX8Pe9NYa5", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -10954,10 +10956,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "a3c2dead7d58200fd37472fd2f94ec1d701f506e1d89f0b07418841bd75ee124", - "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "last_status_tx_hash": "9ea5e0fd19ac23db8d3d1aa79fc89a9e87e5cfd7a9ee9bf3d14fc9c968bf9e8b", + "origin": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "dispense_count": 0, - "last_status_tx_source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "last_status_tx_source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -10965,7 +10967,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729419091, + "block_time": 1729447269, "asset_info": { "divisible": true, "asset_longname": null, @@ -10981,18 +10983,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", + "tx_hash": "97a6a8715419af93dd8db32ab9443fc20bf92b50e05a20bad0aa71a5bbab6d31", "block_index": 196, - "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "source": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "oracle_address": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "last_status_tx_hash": null, - "origin": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "origin": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11002,7 +11004,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -11027,7 +11029,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - The address to return + + address: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu` (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` @@ -11040,9 +11042,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", + "tx_hash": "5dff86bc3e7656a76453cde04b43467ee7e36a8ce0015e2cc646fc5063349269", "block_index": 141, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11051,7 +11053,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "origin": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11061,7 +11063,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729419032, + "block_time": 1729447230, "asset_info": { "divisible": true, "asset_longname": null, @@ -11111,7 +11113,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -11119,7 +11121,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "address": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -11128,7 +11130,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -11136,7 +11138,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "address": "bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -11145,7 +11147,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -11153,7 +11155,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "address": "bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -11162,7 +11164,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -11199,27 +11201,27 @@ Returns the dispenses of an asset { "tx_index": 62, "dispense_index": 0, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", - "destination": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "source": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", + "destination": "bcrt1qvkluz3xu0dwkdu6whlkfuz0j7q7etzfpr6le3w", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", + "dispenser_tx_hash": "97a6a8715419af93dd8db32ab9443fc20bf92b50e05a20bad0aa71a5bbab6d31", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "source": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "oracle_address": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "last_status_tx_hash": null, - "origin": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "origin": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11234,7 +11236,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -11248,27 +11250,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "88fe13bdf36a7bfdfaa455ba43f3c24030499c216971c57cd3c209db4a07768a", + "tx_hash": "28fec8fcd1026258e6c92cf5a689893ec45f55b47b63d19618237da7ae57d293", "block_index": 147, - "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", - "destination": "bcrt1qpt0kqhne88xpxhdekucjewsutuh8v0srmad5le", + "source": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", + "destination": "bcrt1qphcgel4555re0q3xjhgkvntrcugp5emt47xvgx", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", + "dispenser_tx_hash": "97a6a8715419af93dd8db32ab9443fc20bf92b50e05a20bad0aa71a5bbab6d31", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "source": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "oracle_address": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "last_status_tx_hash": null, - "origin": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "origin": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11283,7 +11285,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729419079, + "block_time": 1729447256, "asset_info": { "divisible": true, "asset_longname": null, @@ -11297,19 +11299,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c6ac5bd9f3a4f413beac1ab01476860538e1080fc55842bd6eb360ede5b96b03", + "tx_hash": "275311cc7bd91918a7fbd44f76fead7b651bd8618ecc35055a8fe826e5a737d0", "block_index": 141, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "destination": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", + "dispenser_tx_hash": "5dff86bc3e7656a76453cde04b43467ee7e36a8ce0015e2cc646fc5063349269", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11317,7 +11319,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "origin": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11332,7 +11334,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729419032, + "block_time": 1729447230, "asset_info": { "divisible": true, "asset_longname": null, @@ -11346,19 +11348,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "5b8b6d8f67be9da23119f8bb3166e1a15862ffe4ad592bfe7e4c4517034b809f", + "tx_hash": "6ef6ab7e7b7c5df724013537bfc0fd6c93202909eb3b7bbfe8dd3187a6f7bd26", "block_index": 140, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "destination": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", + "dispenser_tx_hash": "5dff86bc3e7656a76453cde04b43467ee7e36a8ce0015e2cc646fc5063349269", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11366,7 +11368,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "origin": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11381,7 +11383,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729419028, + "block_time": 1729447225, "asset_info": { "divisible": true, "asset_longname": null, @@ -11424,8 +11426,8 @@ Returns asset subassets "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "owner": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "owner": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false, "supply": 0, @@ -11433,8 +11435,8 @@ Returns asset subassets "first_issuance_block_index": 159, "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1729419131, - "last_issuance_block_time": 1729419131, + "first_issuance_block_time": 1729447320, + "last_issuance_block_time": 1729447320, "supply_normalized": "0.00000000" } ], @@ -11466,10 +11468,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "a6341ea44902feb982ab97a01f0a8313fc32d0304f32bc76b50b54252f14310c", + "tx_hash": "9ba7a43c8b7a63ca23b7f272bdf6d12b92bf008c4dd73b0f6490b062966d39fc", "tx_index": 10, "block_index": 125, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -11494,7 +11496,7 @@ Returns the fairminter by its asset "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729418965 + "block_time": 1729447162 } ], "next_cursor": null, @@ -11525,64 +11527,64 @@ Returns the mints by asset { "result": [ { - "tx_hash": "45c5ae041f18c2fc862a1c82ae645f4f0627dac8edf11736fa4d1533720381f7", + "tx_hash": "70d03c26a00f21e99f913f934ffffb6cb88770ed7538a982a6354d4dc084d458", "tx_index": 13, "block_index": 125, - "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", - "fairminter_tx_hash": "a6341ea44902feb982ab97a01f0a8313fc32d0304f32bc76b50b54252f14310c", + "source": "bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z", + "fairminter_tx_hash": "9ba7a43c8b7a63ca23b7f272bdf6d12b92bf008c4dd73b0f6490b062966d39fc", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729418965, + "block_time": 1729447162, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false } }, { - "tx_hash": "fa630def9f37d80f4fb7036a427e5b2458137478095ee22a8bd99036659e19bf", + "tx_hash": "fab5dda40be9b5a187883473c80286bfbc52ec97de1c45cd45d018ab990413c0", "tx_index": 12, "block_index": 124, - "source": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", - "fairminter_tx_hash": "a6341ea44902feb982ab97a01f0a8313fc32d0304f32bc76b50b54252f14310c", + "source": "bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad", + "fairminter_tx_hash": "9ba7a43c8b7a63ca23b7f272bdf6d12b92bf008c4dd73b0f6490b062966d39fc", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729418961, + "block_time": 1729447157, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false } }, { - "tx_hash": "9e241c300a1a56ab1d861331e00bfb7fad835c6be25cf243cd75edd3fe306672", + "tx_hash": "adf97ff1d6e59b9ceff9d3c93b3785b3a05e1d42e9267f50c0d1462a040a2ccb", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", - "fairminter_tx_hash": "a6341ea44902feb982ab97a01f0a8313fc32d0304f32bc76b50b54252f14310c", + "source": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", + "fairminter_tx_hash": "9ba7a43c8b7a63ca23b7f272bdf6d12b92bf008c4dd73b0f6490b062966d39fc", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729418956, + "block_time": 1729447153, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false } @@ -11598,7 +11600,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw` (str, required) - The address of the mints to return + + address: `bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu` (str, required) - The address of the mints to return + asset: `FAIRMINTA` (str, required) - The asset of the mints to return + cursor (str, optional) - + Default: `None` @@ -11617,22 +11619,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "9e241c300a1a56ab1d861331e00bfb7fad835c6be25cf243cd75edd3fe306672", + "tx_hash": "adf97ff1d6e59b9ceff9d3c93b3785b3a05e1d42e9267f50c0d1462a040a2ccb", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", - "fairminter_tx_hash": "a6341ea44902feb982ab97a01f0a8313fc32d0304f32bc76b50b54252f14310c", + "source": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", + "fairminter_tx_hash": "9ba7a43c8b7a63ca23b7f272bdf6d12b92bf008c4dd73b0f6490b062966d39fc", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729418956, + "block_time": 1729447153, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false } @@ -11678,9 +11680,9 @@ Returns all the orders "result": [ { "tx_index": 49, - "tx_hash": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b", + "tx_hash": "e3b475745235defa74a454101dd553cc3a3014ad6473b986467cfdb04dd19b5d", "block_index": 184, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11695,7 +11697,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729419167, + "block_time": 1729447344, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11721,9 +11723,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", + "tx_hash": "ea35ac149cac7ce65aec3f44fde03ff76f1a764dbd2ec69cfdb725a6e730cc7b", "block_index": 187, - "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "source": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -11738,7 +11740,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729419235, + "block_time": 1729447415, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11764,9 +11766,9 @@ Returns all the orders }, { "tx_index": 51, - "tx_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", + "tx_hash": "53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3", "block_index": 188, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -11781,7 +11783,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729419239, + "block_time": 1729447419, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11807,9 +11809,9 @@ Returns all the orders }, { "tx_index": 54, - "tx_hash": "f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", + "tx_hash": "130bd2486665083b2f9e2f3effca5ee96a8a412f872cb211754d78da496d1465", "block_index": 188, - "source": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "source": "bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -11824,7 +11826,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729419239, + "block_time": 1729447419, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11850,9 +11852,9 @@ Returns all the orders }, { "tx_index": 57, - "tx_hash": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", + "tx_hash": "51bf0f868d20a7ffb1ffb95dda008d72d5440f3c08ebb52cea5e21416bbfe8fd", "block_index": 192, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11867,7 +11869,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729419257, + "block_time": 1729447437, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11902,7 +11904,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da` (str, required) - The hash of the transaction that created the order + + order_hash: `3c8fed50434df20de6b1d183d583fde724a128b0f72ce1baae593b03bd361643` (str, required) - The hash of the transaction that created the order + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -11914,9 +11916,9 @@ Returns the information of an order { "result": { "tx_index": 59, - "tx_hash": "6c8ded62c9b67aaf74f9c5c6c2a0d60b19272ccbaa0c8cf35d4537e42e7b47da", + "tx_hash": "3c8fed50434df20de6b1d183d583fde724a128b0f72ce1baae593b03bd361643", "block_index": 193, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11931,7 +11933,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729419272, + "block_time": 1729447451, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11963,7 +11965,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983` (str, required) - The hash of the transaction that created the order + + order_hash: `53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3` (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 @@ -11990,13 +11992,13 @@ Returns the order matches of an order { "result": [ { - "id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", + "id": "53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3_130bd2486665083b2f9e2f3effca5ee96a8a412f872cb211754d78da496d1465", "tx0_index": 51, - "tx0_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", - "tx0_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "tx0_hash": "53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3", + "tx0_address": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "tx1_index": 54, - "tx1_hash": "f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", - "tx1_address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "tx1_hash": "130bd2486665083b2f9e2f3effca5ee96a8a412f872cb211754d78da496d1465", + "tx1_address": "bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12010,7 +12012,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729419239, + "block_time": 1729447419, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12030,13 +12032,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", + "id": "53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3_ea35ac149cac7ce65aec3f44fde03ff76f1a764dbd2ec69cfdb725a6e730cc7b", "tx0_index": 51, - "tx0_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", - "tx0_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "tx0_hash": "53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3", + "tx0_address": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "tx1_index": 52, - "tx1_hash": "a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", - "tx1_address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "tx1_hash": "ea35ac149cac7ce65aec3f44fde03ff76f1a764dbd2ec69cfdb725a6e730cc7b", + "tx1_address": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12050,7 +12052,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729419235, + "block_time": 1729447415, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12080,7 +12082,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983` (str, required) - The hash of the transaction that created the order + + order_hash: `53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3` (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 @@ -12099,15 +12101,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 53, - "tx_hash": "093e49f3c5553048e93710a95ae3f813e9e9ed5288b166ef5352fa88f6ee9d32", + "tx_hash": "410d59644f017101215e824abcdc0b0f1cd1d477d42a41ddfd5d545703126065", "block_index": 187, - "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", - "destination": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", + "destination": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "btc_amount": 2000, - "order_match_id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", + "order_match_id": "53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3_ea35ac149cac7ce65aec3f44fde03ff76f1a764dbd2ec69cfdb725a6e730cc7b", "status": "valid", "confirmed": true, - "block_time": 1729419235, + "block_time": 1729447415, "btc_amount_normalized": "0.00002000" } ], @@ -12151,9 +12153,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 52, - "tx_hash": "a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", + "tx_hash": "ea35ac149cac7ce65aec3f44fde03ff76f1a764dbd2ec69cfdb725a6e730cc7b", "block_index": 187, - "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "source": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12171,7 +12173,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729419235, + "block_time": 1729447415, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12197,9 +12199,9 @@ Returns the orders to exchange two assets }, { "tx_index": 54, - "tx_hash": "f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", + "tx_hash": "130bd2486665083b2f9e2f3effca5ee96a8a412f872cb211754d78da496d1465", "block_index": 188, - "source": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "source": "bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -12217,7 +12219,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729419239, + "block_time": 1729447419, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12243,9 +12245,9 @@ Returns the orders to exchange two assets }, { "tx_index": 49, - "tx_hash": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b", + "tx_hash": "e3b475745235defa74a454101dd553cc3a3014ad6473b986467cfdb04dd19b5d", "block_index": 184, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12263,7 +12265,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729419167, + "block_time": 1729447344, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12289,9 +12291,9 @@ Returns the orders to exchange two assets }, { "tx_index": 51, - "tx_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", + "tx_hash": "53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3", "block_index": 188, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12309,7 +12311,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729419239, + "block_time": 1729447419, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12335,9 +12337,9 @@ Returns the orders to exchange two assets }, { "tx_index": 57, - "tx_hash": "8fa880a3f490fca7563b3233dbb8000f9c42232847a5f6e6581b2d0b701511f9", + "tx_hash": "51bf0f868d20a7ffb1ffb95dda008d72d5440f3c08ebb52cea5e21416bbfe8fd", "block_index": 192, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12355,7 +12357,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729419257, + "block_time": 1729447437, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12418,13 +12420,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", + "id": "53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3_130bd2486665083b2f9e2f3effca5ee96a8a412f872cb211754d78da496d1465", "tx0_index": 51, - "tx0_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", - "tx0_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "tx0_hash": "53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3", + "tx0_address": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "tx1_index": 54, - "tx1_hash": "f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", - "tx1_address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "tx1_hash": "130bd2486665083b2f9e2f3effca5ee96a8a412f872cb211754d78da496d1465", + "tx1_address": "bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12441,7 +12443,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729419239, + "block_time": 1729447419, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12461,13 +12463,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", + "id": "53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3_ea35ac149cac7ce65aec3f44fde03ff76f1a764dbd2ec69cfdb725a6e730cc7b", "tx0_index": 51, - "tx0_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", - "tx0_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "tx0_hash": "53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3", + "tx0_address": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "tx1_index": 52, - "tx1_hash": "a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", - "tx1_address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "tx1_hash": "ea35ac149cac7ce65aec3f44fde03ff76f1a764dbd2ec69cfdb725a6e730cc7b", + "tx1_address": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12484,7 +12486,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729419235, + "block_time": 1729447415, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12504,13 +12506,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b_97a614c1cd5ebc6475742cff5c39401b7d7a1c7b9432bf2f31b973c81a8ceeac", + "id": "e3b475745235defa74a454101dd553cc3a3014ad6473b986467cfdb04dd19b5d_a65fbad5f7e83c65b8c3b5ab58dab74fa7798d0f7497da4f2d17c09f8443df59", "tx0_index": 49, - "tx0_hash": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b", - "tx0_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "tx0_hash": "e3b475745235defa74a454101dd553cc3a3014ad6473b986467cfdb04dd19b5d", + "tx0_address": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "tx1_index": 50, - "tx1_hash": "97a614c1cd5ebc6475742cff5c39401b7d7a1c7b9432bf2f31b973c81a8ceeac", - "tx1_address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "tx1_hash": "a65fbad5f7e83c65b8c3b5ab58dab74fa7798d0f7497da4f2d17c09f8443df59", + "tx1_address": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12527,7 +12529,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729419167, + "block_time": 1729447344, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12585,13 +12587,13 @@ Returns all the order matches { "result": [ { - "id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", + "id": "53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3_130bd2486665083b2f9e2f3effca5ee96a8a412f872cb211754d78da496d1465", "tx0_index": 51, - "tx0_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", - "tx0_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "tx0_hash": "53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3", + "tx0_address": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "tx1_index": 54, - "tx1_hash": "f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109", - "tx1_address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "tx1_hash": "130bd2486665083b2f9e2f3effca5ee96a8a412f872cb211754d78da496d1465", + "tx1_address": "bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12605,7 +12607,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729419239, + "block_time": 1729447419, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12625,13 +12627,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983_a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", + "id": "53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3_ea35ac149cac7ce65aec3f44fde03ff76f1a764dbd2ec69cfdb725a6e730cc7b", "tx0_index": 51, - "tx0_hash": "b4e2f544fa0773ecfb1cab435c424794b67d80aa82e953c273af959cedfbd983", - "tx0_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "tx0_hash": "53c7ebe654c0e763d7d7d4c387fd7ba865351f9c326bd8958eaf6e13e4e594e3", + "tx0_address": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "tx1_index": 52, - "tx1_hash": "a90ea9485d1f6ffedfcda69f50d9ab2450a8653126be29628e2438aa8a7d36c6", - "tx1_address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "tx1_hash": "ea35ac149cac7ce65aec3f44fde03ff76f1a764dbd2ec69cfdb725a6e730cc7b", + "tx1_address": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12645,7 +12647,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729419235, + "block_time": 1729447415, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12665,13 +12667,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b_97a614c1cd5ebc6475742cff5c39401b7d7a1c7b9432bf2f31b973c81a8ceeac", + "id": "e3b475745235defa74a454101dd553cc3a3014ad6473b986467cfdb04dd19b5d_a65fbad5f7e83c65b8c3b5ab58dab74fa7798d0f7497da4f2d17c09f8443df59", "tx0_index": 49, - "tx0_hash": "7ba2d6c1266ce6cb7f00748fed2ca3485bcffa6b5e9b67c4c99e28abe4b2613b", - "tx0_address": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "tx0_hash": "e3b475745235defa74a454101dd553cc3a3014ad6473b986467cfdb04dd19b5d", + "tx0_address": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "tx1_index": 50, - "tx1_hash": "97a614c1cd5ebc6475742cff5c39401b7d7a1c7b9432bf2f31b973c81a8ceeac", - "tx1_address": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "tx1_hash": "a65fbad5f7e83c65b8c3b5ab58dab74fa7798d0f7497da4f2d17c09f8443df59", + "tx1_address": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12685,7 +12687,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729419167, + "block_time": 1729447344, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12853,66 +12855,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "aeb9c55ef28fc0085850c3f2ab1825dcc5c218dd40c691ca08b32a7f0413ef81", + "tx_hash": "1e44004c0faa5346a209e8ef47274e3e9880c0dadae72597eac4556a14403f47", "block_index": 121, - "source": "bcrt1qwel02ewd5s0334xz3z95wd9t2ycslyadsevzhv", + "source": "bcrt1qyg8fqfmjduy4dytlcctt0c58pfzmzwxkjue25m", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1729418948, + "block_time": 1729447143, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "ffeaf1b43f7569fa148705559404ea437e0b212a8024f587ec394ccaaf938315", + "tx_hash": "552b5dcfaa88604ff38ca47856c618adc17b2a1fa29e489fb8c3afe25f4133a5", "block_index": 120, - "source": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "source": "bcrt1qvkluz3xu0dwkdu6whlkfuz0j7q7etzfpr6le3w", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1729418944, + "block_time": 1729447139, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "1f62d539da180fa0ed76247c29ab849571c519f9748bf0292ea54f051dc0bda9", + "tx_hash": "2a242768f191967065daa12dcd8d55a17dd53c66cadbc2d6b6d1e27a9cd96e9b", "block_index": 119, - "source": "bcrt1qvvmxpag7eapq07zz0rua2xxaf3ph7mac4j3sql", + "source": "bcrt1qve0h0j4n8w7657wznnjfhtte9wlhz5tue6u3z8", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1729418939, + "block_time": 1729447135, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "dcedbaa79e315ea1c900f0458b3685e41de188628a8548e91b811c840a594afc", + "tx_hash": "58eb06c461b927df3bfd53c6e7caf56d82953ae6f8344b36438e34001e0d903a", "block_index": 118, - "source": "bcrt1qpt0kqhne88xpxhdekucjewsutuh8v0srmad5le", + "source": "bcrt1qphcgel4555re0q3xjhgkvntrcugp5emt47xvgx", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1729418935, + "block_time": 1729447130, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "4017707d2086d5a37548fb576553c50b86d9358b3d0d76a82700bc6cf841633b", + "tx_hash": "b44dac1839148ed5726c3d1ac272893d22eae5ce8056b3fe581541ff375bfffb", "block_index": 117, - "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "source": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1729418931, + "block_time": 1729447126, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -12957,9 +12959,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", + "tx_hash": "5dff86bc3e7656a76453cde04b43467ee7e36a8ce0015e2cc646fc5063349269", "block_index": 141, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -12968,7 +12970,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "origin": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12978,7 +12980,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729419032, + "block_time": 1729447230, "asset_info": { "divisible": true, "asset_longname": null, @@ -12994,9 +12996,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "0c3886c49a507aedd17fd9f356a72b16d9353097e6c76fdd57bb6e87e969db10", + "tx_hash": "6b942a8ea092faf4124cbd5e7e73977e3a0d3748a3e5f1ea63df048d936a3df0", "block_index": 142, - "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "source": "bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13005,7 +13007,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "origin": "bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13015,7 +13017,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729419037, + "block_time": 1729447234, "asset_info": { "divisible": true, "asset_longname": null, @@ -13031,9 +13033,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "03163da185ecd4f58783c6feb8cdf29574011d5410f7983f983644aaaec1d685", + "tx_hash": "0e7f77c7eb398dc9d8a016b57e8d90470eccce2a1e740a0289757820b0df3bb9", "block_index": 150, - "source": "mgm25pVEpj1Ey3H9pdvQUT6kCysXns3ZpB", + "source": "n2QS8qnKWbBiGnzYZTMNVjNwQX8Pe9NYa5", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -13041,10 +13043,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "a3c2dead7d58200fd37472fd2f94ec1d701f506e1d89f0b07418841bd75ee124", - "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "last_status_tx_hash": "9ea5e0fd19ac23db8d3d1aa79fc89a9e87e5cfd7a9ee9bf3d14fc9c968bf9e8b", + "origin": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "dispense_count": 0, - "last_status_tx_source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "last_status_tx_source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -13052,7 +13054,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729419091, + "block_time": 1729447269, "asset_info": { "divisible": true, "asset_longname": null, @@ -13068,18 +13070,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", + "tx_hash": "97a6a8715419af93dd8db32ab9443fc20bf92b50e05a20bad0aa71a5bbab6d31", "block_index": 196, - "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "source": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "oracle_address": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "last_status_tx_hash": null, - "origin": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "origin": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13089,7 +13091,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -13114,7 +13116,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b` (str, required) - The hash of the dispenser to return + + dispenser_hash: `5dff86bc3e7656a76453cde04b43467ee7e36a8ce0015e2cc646fc5063349269` (str, required) - The hash of the dispenser to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -13126,9 +13128,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", + "tx_hash": "5dff86bc3e7656a76453cde04b43467ee7e36a8ce0015e2cc646fc5063349269", "block_index": 141, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13137,7 +13139,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "origin": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13147,7 +13149,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729419032, + "block_time": 1729447230, "asset_info": { "divisible": true, "asset_longname": null, @@ -13169,7 +13171,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b` (str, required) - The hash of the dispenser to return + + dispenser_hash: `5dff86bc3e7656a76453cde04b43467ee7e36a8ce0015e2cc646fc5063349269` (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 @@ -13189,19 +13191,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c6ac5bd9f3a4f413beac1ab01476860538e1080fc55842bd6eb360ede5b96b03", + "tx_hash": "275311cc7bd91918a7fbd44f76fead7b651bd8618ecc35055a8fe826e5a737d0", "block_index": 141, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "destination": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", + "dispenser_tx_hash": "5dff86bc3e7656a76453cde04b43467ee7e36a8ce0015e2cc646fc5063349269", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13209,7 +13211,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "origin": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13224,7 +13226,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729419032, + "block_time": 1729447230, "asset_info": { "divisible": true, "asset_longname": null, @@ -13238,19 +13240,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "5b8b6d8f67be9da23119f8bb3166e1a15862ffe4ad592bfe7e4c4517034b809f", + "tx_hash": "6ef6ab7e7b7c5df724013537bfc0fd6c93202909eb3b7bbfe8dd3187a6f7bd26", "block_index": 140, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "destination": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", + "dispenser_tx_hash": "5dff86bc3e7656a76453cde04b43467ee7e36a8ce0015e2cc646fc5063349269", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13258,7 +13260,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "origin": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13273,7 +13275,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729419028, + "block_time": 1729447225, "asset_info": { "divisible": true, "asset_longname": null, @@ -13315,20 +13317,20 @@ Returns all the dividends "result": [ { "tx_index": 41, - "tx_hash": "5954cbb59b8f533b6dc597f67642fe125d0f54d58dd8bd6109079010bc39416b", + "tx_hash": "ccb12d28c1f97f63b03f3d50250a1b73998770f111969ee88849111ec3385cb3", "block_index": 154, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729419109, + "block_time": 1729447286, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -13353,7 +13355,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `5954cbb59b8f533b6dc597f67642fe125d0f54d58dd8bd6109079010bc39416b` (str, required) - The hash of the dividend to return + + dividend_hash: `ccb12d28c1f97f63b03f3d50250a1b73998770f111969ee88849111ec3385cb3` (str, required) - The hash of the dividend to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -13365,20 +13367,20 @@ Returns a dividend by its hash { "result": { "tx_index": 41, - "tx_hash": "5954cbb59b8f533b6dc597f67642fe125d0f54d58dd8bd6109079010bc39416b", + "tx_hash": "ccb12d28c1f97f63b03f3d50250a1b73998770f111969ee88849111ec3385cb3", "block_index": 154, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729419109, + "block_time": 1729447286, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -13400,7 +13402,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `5954cbb59b8f533b6dc597f67642fe125d0f54d58dd8bd6109079010bc39416b` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `ccb12d28c1f97f63b03f3d50250a1b73998770f111969ee88849111ec3385cb3` (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 @@ -13423,12 +13425,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "5954cbb59b8f533b6dc597f67642fe125d0f54d58dd8bd6109079010bc39416b", + "event": "ccb12d28c1f97f63b03f3d50250a1b73998770f111969ee88849111ec3385cb3", "tx_index": 41, - "utxo": "9c0d167b260df60d016e565fc425dfef009e84963c7a94841da4fd69dd1b28ad:0", - "utxo_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "utxo": "1455d3a541a40862f0552c550171b2fe3dd670fe60a47c59d95eb1eccdff9be7:0", + "utxo_address": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "confirmed": true, - "block_time": 1729419109, + "block_time": 1729447286, "asset_info": { "divisible": true, "asset_longname": null, @@ -13440,16 +13442,16 @@ Returns a dividend distribution by its hash }, { "block_index": 154, - "address": "bcrt1qg6cl5djlpjf8ne6z88eh7rpjt2c9ttupg48l6x", + "address": "bcrt1qlygmyzhqckmv8007adm0q274ygpaa0zmtlmnt6", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "5954cbb59b8f533b6dc597f67642fe125d0f54d58dd8bd6109079010bc39416b", + "event": "ccb12d28c1f97f63b03f3d50250a1b73998770f111969ee88849111ec3385cb3", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729419109, + "block_time": 1729447286, "asset_info": { "divisible": true, "asset_longname": null, @@ -13495,27 +13497,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "eead9d1cf4256ee6a5064148d170bd143227743df35f8eaf771be669fbacdefc", - "messages_hash": "ed329d64324602888971f8c2cfcdb14ded0ce770d8b6530880d3cdb734881033", + "ledger_hash": "92f40b235813f85660fe0e245bc8dca845fd340c73a60aabd4099a4236fc3daa", + "messages_hash": "03bd02c4fb712f2d5b962d381353ae13fe6386aeca5c968b6b97daa0bc19ba5f", "transaction_count": 1, - "txlist_hash": "4168e789766cc3d4a561e1a4d9324b0838ffcd186cbb040b504e385bbfab51dc", - "block_time": 1729419295 + "txlist_hash": "65bc95a4ed3a9588527395651776698f1d6dc89df72381127560eff0c603cf4f", + "block_time": 1729447470 }, "tx_hash": null, "block_index": 196, - "block_time": 1729419295 + "block_time": 1729447470 }, { "event_index": 562, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "tx_index": 62 }, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "block_time": 1729419295 + "block_time": 1729447470 }, { "event_index": 561, @@ -13524,14 +13526,14 @@ Returns all events "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "destination": "bcrt1qvkluz3xu0dwkdu6whlkfuz0j7q7etzfpr6le3w", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", - "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "dispenser_tx_hash": "97a6a8715419af93dd8db32ab9443fc20bf92b50e05a20bad0aa71a5bbab6d31", + "source": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "tx_index": 62, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -13542,9 +13544,9 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "block_time": 1729419295 + "block_time": 1729447470 }, { "event_index": 560, @@ -13553,9 +13555,9 @@ Returns all events "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "source": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "status": 0, - "tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", + "tx_hash": "97a6a8715419af93dd8db32ab9443fc20bf92b50e05a20bad0aa71a5bbab6d31", "asset_info": { "divisible": true, "asset_longname": null, @@ -13565,24 +13567,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "block_time": 1729419295 + "block_time": 1729447470 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "address": "bcrt1qvkluz3xu0dwkdu6whlkfuz0j7q7etzfpr6le3w", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "event": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -13592,9 +13594,9 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "block_time": 1729419295 + "block_time": 1729447470 } ], "next_cursor": 558, @@ -13622,15 +13624,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "eead9d1cf4256ee6a5064148d170bd143227743df35f8eaf771be669fbacdefc", - "messages_hash": "ed329d64324602888971f8c2cfcdb14ded0ce770d8b6530880d3cdb734881033", + "ledger_hash": "92f40b235813f85660fe0e245bc8dca845fd340c73a60aabd4099a4236fc3daa", + "messages_hash": "03bd02c4fb712f2d5b962d381353ae13fe6386aeca5c968b6b97daa0bc19ba5f", "transaction_count": 1, - "txlist_hash": "4168e789766cc3d4a561e1a4d9324b0838ffcd186cbb040b504e385bbfab51dc", - "block_time": 1729419295 + "txlist_hash": "65bc95a4ed3a9588527395651776698f1d6dc89df72381127560eff0c603cf4f", + "block_time": 1729447470 }, "tx_hash": null, "block_index": 196, - "block_time": 1729419295 + "block_time": 1729447470 } } ``` @@ -13708,16 +13710,16 @@ Returns the events filtered by event name "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "address": "bcrt1qvkluz3xu0dwkdu6whlkfuz0j7q7etzfpr6le3w", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "event": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -13727,9 +13729,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "block_time": 1729419295 + "block_time": 1729447470 }, { "event_index": 557, @@ -13739,12 +13741,12 @@ Returns the events filtered by event name "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "event": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "quantity": 1500000000, "tx_index": 62, - "utxo": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", - "utxo_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", - "block_time": 1729419295, + "utxo": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453:0", + "utxo_address": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -13754,9 +13756,9 @@ Returns the events filtered by event name }, "quantity_normalized": "15.00000000" }, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "block_time": 1729419295 + "block_time": 1729447470 }, { "event_index": 554, @@ -13766,39 +13768,39 @@ Returns the events filtered by event name "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "event": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "quantity": 1500000000, "tx_index": 62, - "utxo": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", - "utxo_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", - "block_time": 1729419295, + "utxo": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453:0", + "utxo_address": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", + "block_time": 1729447470, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "block_time": 1729419295 + "block_time": 1729447470 }, { "event_index": 540, "event": "CREDIT", "params": { - "address": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "address": "bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z", "asset": "XCP", "block_index": 194, "calling_function": "sweep", - "event": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b", + "event": "bf68e49ab1ffae81693d197b3de1bb5c91e0725e1272f025cd6f15af53e820c7", "quantity": 74499387833, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1729419276, + "block_time": 1729447456, "asset_info": { "divisible": true, "asset_longname": null, @@ -13808,36 +13810,36 @@ Returns the events filtered by event name }, "quantity_normalized": "744.99388000" }, - "tx_hash": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b", + "tx_hash": "bf68e49ab1ffae81693d197b3de1bb5c91e0725e1272f025cd6f15af53e820c7", "block_index": 194, - "block_time": 1729419276 + "block_time": 1729447456 }, { "event_index": 538, "event": "CREDIT", "params": { - "address": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "address": "bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z", "asset": "MYASSETA", "block_index": 194, "calling_function": "sweep", - "event": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b", + "event": "bf68e49ab1ffae81693d197b3de1bb5c91e0725e1272f025cd6f15af53e820c7", "quantity": 10, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1729419276, + "block_time": 1729447456, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b", + "tx_hash": "bf68e49ab1ffae81693d197b3de1bb5c91e0725e1272f025cd6f15af53e820c7", "block_index": 194, - "block_time": 1729419276 + "block_time": 1729447456 } ], "next_cursor": 536, @@ -13893,27 +13895,27 @@ Returns all the dispenses { "tx_index": 62, "dispense_index": 0, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", - "destination": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "source": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", + "destination": "bcrt1qvkluz3xu0dwkdu6whlkfuz0j7q7etzfpr6le3w", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", + "dispenser_tx_hash": "97a6a8715419af93dd8db32ab9443fc20bf92b50e05a20bad0aa71a5bbab6d31", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "source": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "oracle_address": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "last_status_tx_hash": null, - "origin": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "origin": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13928,7 +13930,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -13942,27 +13944,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "88fe13bdf36a7bfdfaa455ba43f3c24030499c216971c57cd3c209db4a07768a", + "tx_hash": "28fec8fcd1026258e6c92cf5a689893ec45f55b47b63d19618237da7ae57d293", "block_index": 147, - "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", - "destination": "bcrt1qpt0kqhne88xpxhdekucjewsutuh8v0srmad5le", + "source": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", + "destination": "bcrt1qphcgel4555re0q3xjhgkvntrcugp5emt47xvgx", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "e8145d8a0321847220e5720c14e90aceee2509be631afddbb22638a6563a4ec4", + "dispenser_tx_hash": "97a6a8715419af93dd8db32ab9443fc20bf92b50e05a20bad0aa71a5bbab6d31", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "source": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "oracle_address": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "last_status_tx_hash": null, - "origin": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "origin": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13977,7 +13979,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729419079, + "block_time": 1729447256, "asset_info": { "divisible": true, "asset_longname": null, @@ -13991,19 +13993,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c6ac5bd9f3a4f413beac1ab01476860538e1080fc55842bd6eb360ede5b96b03", + "tx_hash": "275311cc7bd91918a7fbd44f76fead7b651bd8618ecc35055a8fe826e5a737d0", "block_index": 141, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "destination": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", + "dispenser_tx_hash": "5dff86bc3e7656a76453cde04b43467ee7e36a8ce0015e2cc646fc5063349269", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14011,7 +14013,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "origin": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14026,7 +14028,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729419032, + "block_time": 1729447230, "asset_info": { "divisible": true, "asset_longname": null, @@ -14040,19 +14042,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "5b8b6d8f67be9da23119f8bb3166e1a15862ffe4ad592bfe7e4c4517034b809f", + "tx_hash": "6ef6ab7e7b7c5df724013537bfc0fd6c93202909eb3b7bbfe8dd3187a6f7bd26", "block_index": 140, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "destination": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d356c8b732bda95993b4b561bcd9b2850bfdc0034f879b6e3efa58715a39df2b", + "dispenser_tx_hash": "5dff86bc3e7656a76453cde04b43467ee7e36a8ce0015e2cc646fc5063349269", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14060,7 +14062,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "origin": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14075,7 +14077,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729419028, + "block_time": 1729447225, "asset_info": { "divisible": true, "asset_longname": null, @@ -14117,10 +14119,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 62, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "source": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", - "destination": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", + "source": "ea7f3e0c42a8b5fd1d052a801db5c9b934b7cbead7d495511fbd6ec515a775d9:1", + "destination": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -14128,7 +14130,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -14141,10 +14143,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 62, - "tx_hash": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89", + "tx_hash": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453", "block_index": 196, - "source": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80:1", - "destination": "02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89:0", + "source": "ea7f3e0c42a8b5fd1d052a801db5c9b934b7cbead7d495511fbd6ec515a775d9:1", + "destination": "364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -14152,11 +14154,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -14165,10 +14167,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 56, - "tx_hash": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", + "tx_hash": "f513fcb3467cbc7dbfe9958aa5ff4ea88d870361cf31448a92d5d8d36f14f104", "block_index": 190, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "destination": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "destination": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", "asset": "XCP", "quantity": 10, "status": "valid", @@ -14176,7 +14178,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729419248, + "block_time": 1729447428, "asset_info": { "divisible": true, "asset_longname": null, @@ -14189,10 +14191,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 56, - "tx_hash": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", + "tx_hash": "f513fcb3467cbc7dbfe9958aa5ff4ea88d870361cf31448a92d5d8d36f14f104", "block_index": 190, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "destination": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "destination": "bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -14200,11 +14202,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729419248, + "block_time": 1729447428, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -14213,10 +14215,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 56, - "tx_hash": "d9743b63e8199e05ebb83cdb81d8f1fd6d62072d07a5a29c17dc27880b798c9a", + "tx_hash": "f513fcb3467cbc7dbfe9958aa5ff4ea88d870361cf31448a92d5d8d36f14f104", "block_index": 190, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "destination": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "destination": "bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -14224,11 +14226,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729419248, + "block_time": 1729447428, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false }, @@ -14266,14 +14268,14 @@ Returns all the issuances "result": [ { "tx_index": 48, - "tx_hash": "e3935cf288cec52794daa26e2783ae06125ca6965f257e7d9ff3585239657033", + "tx_hash": "5791ae7ad84daa69a8a790a14d20e5a1e0b6997b562968904cdc3a9e2295dc00", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "transfer": false, "callable": false, "call_date": 0, @@ -14288,20 +14290,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729419150, + "block_time": 1729447328, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "99d745d7b6cab56067254aafd0c9aedb86c8122f7764c92e39088c6643178415", + "tx_hash": "c8e0d90305735dd8e36376d8a34fbeb27cf1dacf4c0d36c6a70b9854815bff4d", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "transfer": false, "callable": false, "call_date": 0, @@ -14316,20 +14318,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729419146, + "block_time": 1729447324, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "29e7696904677d53d03bc85c345fb128b588bf78d9bc197424431a64bb383969", + "tx_hash": "6f06044bd6162181a1d328afa6584ca4f56db8e51a7ba310153ce343e6f8874a", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "transfer": false, "callable": false, "call_date": 0, @@ -14344,20 +14346,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729419131, + "block_time": 1729447320, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "82690f74f70a78c1049e4a8fb569f81e1cd0cbf656d4f1c9b006ac977558a1b7", + "tx_hash": "61d3b779c4d676929065855bfadf4d4e31ce61f27b40aac632c8f0a5cf35a8de", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "transfer": false, "callable": false, "call_date": 0, @@ -14372,20 +14374,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729419127, + "block_time": 1729447315, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 44, - "tx_hash": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80", + "tx_hash": "ea7f3e0c42a8b5fd1d052a801db5c9b934b7cbead7d495511fbd6ec515a775d9", "msg_index": 0, "block_index": 157, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", - "issuer": "bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0", + "source": "bcrt1qvkluz3xu0dwkdu6whlkfuz0j7q7etzfpr6le3w", + "issuer": "bcrt1qvkluz3xu0dwkdu6whlkfuz0j7q7etzfpr6le3w", "transfer": false, "callable": false, "call_date": 0, @@ -14400,7 +14402,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729419123, + "block_time": 1729447311, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -14415,7 +14417,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `e3935cf288cec52794daa26e2783ae06125ca6965f257e7d9ff3585239657033` (str, required) - The hash of the transaction to return + + tx_hash: `5791ae7ad84daa69a8a790a14d20e5a1e0b6997b562968904cdc3a9e2295dc00` (str, required) - The hash of the transaction to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -14427,14 +14429,14 @@ Returns the issuances of a block { "result": { "tx_index": 48, - "tx_hash": "e3935cf288cec52794daa26e2783ae06125ca6965f257e7d9ff3585239657033", + "tx_hash": "5791ae7ad84daa69a8a790a14d20e5a1e0b6997b562968904cdc3a9e2295dc00", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "transfer": false, "callable": false, "call_date": 0, @@ -14449,7 +14451,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729419150, + "block_time": 1729447328, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -14481,16 +14483,16 @@ Returns all sweeps "result": [ { "tx_index": 60, - "tx_hash": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b", + "tx_hash": "bf68e49ab1ffae81693d197b3de1bb5c91e0725e1272f025cd6f15af53e820c7", "block_index": 194, - "source": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", - "destination": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "source": "bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad", + "destination": "bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729419276, + "block_time": 1729447456, "fee_paid_normalized": "0.00600000" } ], @@ -14504,7 +14506,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b` (str, required) - The hash of the transaction to return + + tx_hash: `bf68e49ab1ffae81693d197b3de1bb5c91e0725e1272f025cd6f15af53e820c7` (str, required) - The hash of the transaction to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -14517,16 +14519,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 60, - "tx_hash": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b", + "tx_hash": "bf68e49ab1ffae81693d197b3de1bb5c91e0725e1272f025cd6f15af53e820c7", "block_index": 194, - "source": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", - "destination": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "source": "bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad", + "destination": "bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729419276, + "block_time": 1729447456, "fee_paid_normalized": "0.00600000" } ], @@ -14560,9 +14562,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "fcd3ac244dcdca9116bd6de331c88e6b7fc07a65cbc5f45a7f4f2731ad085430", + "tx_hash": "0b4133821f51e6916981570ba2585bbb1a69dd93eefbd74bb2dd3b1784387ad6", "block_index": 138, - "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "source": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14570,14 +14572,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729419020, + "block_time": 1729447216, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "d0aca4399eb6a0726cf88725563432f6ab5e40ed7b526c9a96ce23e4881a0b1e", + "tx_hash": "eda98e24c118aa5db35741762f8c160570cc31adf65fd73a70cee9c9673eb57f", "block_index": 137, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -14585,7 +14587,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729419015, + "block_time": 1729447212, "fee_fraction_int_normalized": "0.00000000" } ], @@ -14599,7 +14601,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `fcd3ac244dcdca9116bd6de331c88e6b7fc07a65cbc5f45a7f4f2731ad085430` (str, required) - The hash of the transaction to return + + tx_hash: `0b4133821f51e6916981570ba2585bbb1a69dd93eefbd74bb2dd3b1784387ad6` (str, required) - The hash of the transaction to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -14611,9 +14613,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "fcd3ac244dcdca9116bd6de331c88e6b7fc07a65cbc5f45a7f4f2731ad085430", + "tx_hash": "0b4133821f51e6916981570ba2585bbb1a69dd93eefbd74bb2dd3b1784387ad6", "block_index": 138, - "source": "bcrt1qhc6f5yun7pd67wlcyl3qw9rn8nj8uz3p3a835l", + "source": "bcrt1qp4r5fmam2yv2c55w6y0l9n9af6x3h4ceg8ngqm", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14621,7 +14623,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729419020, + "block_time": 1729447216, "fee_fraction_int_normalized": "0.00000000" } } @@ -14651,10 +14653,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "c8665b67e71ee218d3415890729798887bbc54fb90e4c5e9cfeb24ce802a5b34", + "tx_hash": "e76e7d705f58d6716ca7d02d11d7d384250546ea9d960167434cfae4b41e13fb", "tx_index": 42, "block_index": 155, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -14679,13 +14681,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729419113 + "block_time": 1729447301 }, { - "tx_hash": "f38ae5c8abb6b49f9591e5eaae9ea1d072612f70aaa73853f25ba05480b5076c", + "tx_hash": "499cda6c892bff542a02d2b575762157df777df8ab8215209fccd8e795319bdd", "tx_index": 22, "block_index": 135, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -14710,13 +14712,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729419007 + "block_time": 1729447203 }, { - "tx_hash": "675462aae760c27fbb910a3dec263a6af7602d963a9cf8ee68a2fb5b96eba4c1", + "tx_hash": "11a00a39d209141e68c89e8037caf7d190739bdcfee3c56ffc740b7031ffc633", "tx_index": 18, "block_index": 131, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -14741,13 +14743,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729418990 + "block_time": 1729447186 }, { - "tx_hash": "5dbec8408aedd6f8d6d3e7996757c0f4cc868053ef22cea6e506b00fda3c0efd", + "tx_hash": "bd690021efec814e7fe79fe8bbe7ff5a11b9eb1340ce43fa8d60363a7cbb875d", "tx_index": 14, "block_index": 130, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -14772,13 +14774,13 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729418986 + "block_time": 1729447182 }, { - "tx_hash": "a6341ea44902feb982ab97a01f0a8313fc32d0304f32bc76b50b54252f14310c", + "tx_hash": "9ba7a43c8b7a63ca23b7f272bdf6d12b92bf008c4dd73b0f6490b062966d39fc", "tx_index": 10, "block_index": 125, - "source": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "source": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -14803,7 +14805,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729418965 + "block_time": 1729447162 } ], "next_cursor": null, @@ -14863,106 +14865,106 @@ Returns all fairmints { "result": [ { - "tx_hash": "27f936d6cbc64295fbb696767820d4b39f85fcf3a8bd6345ef8efaf104da5fd0", + "tx_hash": "668bf685b6cd3b67b04a2443b8fbe9683abfd2ea36ddc8459375320b4d6d1625", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", - "fairminter_tx_hash": "f38ae5c8abb6b49f9591e5eaae9ea1d072612f70aaa73853f25ba05480b5076c", + "source": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", + "fairminter_tx_hash": "499cda6c892bff542a02d2b575762157df777df8ab8215209fccd8e795319bdd", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729419011, + "block_time": 1729447208, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false } }, { - "tx_hash": "7bb093115a2d0176787d5a006801240eef7f4cd71b84f5f2d06733ba0119c0cc", + "tx_hash": "fd522e662de9b67b2cbc7374ee36aac62312709c67a0b2a03cf92b578eefeccc", "tx_index": 21, "block_index": 134, - "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", - "fairminter_tx_hash": "675462aae760c27fbb910a3dec263a6af7602d963a9cf8ee68a2fb5b96eba4c1", + "source": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", + "fairminter_tx_hash": "11a00a39d209141e68c89e8037caf7d190739bdcfee3c56ffc740b7031ffc633", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729419002, + "block_time": 1729447199, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false } }, { - "tx_hash": "b851cfca13069253a3eeaa7fde8700cce9788279140b0656644aa14fd4e778ce", + "tx_hash": "9130632e59dfb2a8bdbade286bd7ff6c25a9faab67255b5b258045ac0cea6660", "tx_index": 20, "block_index": 133, - "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", - "fairminter_tx_hash": "675462aae760c27fbb910a3dec263a6af7602d963a9cf8ee68a2fb5b96eba4c1", + "source": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", + "fairminter_tx_hash": "11a00a39d209141e68c89e8037caf7d190739bdcfee3c56ffc740b7031ffc633", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729418998, + "block_time": 1729447195, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false } }, { - "tx_hash": "6d92c20c614c253df720b314dc30da74be0cd96f7f70fff35c3407497f7641dc", + "tx_hash": "c9ca8ff82d9863b89c0dad573f0eb9962031b0083ef5f4f542a4a620563afb6f", "tx_index": 19, "block_index": 132, - "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", - "fairminter_tx_hash": "675462aae760c27fbb910a3dec263a6af7602d963a9cf8ee68a2fb5b96eba4c1", + "source": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", + "fairminter_tx_hash": "11a00a39d209141e68c89e8037caf7d190739bdcfee3c56ffc740b7031ffc633", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729418994, + "block_time": 1729447191, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false } }, { - "tx_hash": "b42956a53cd087cdbd64c8e1b3444907d632c8beaab2790a2a1707d469dbcd1d", + "tx_hash": "bd1083a85fcab01a2f0e9ea1ad31a25a4ba37316265cea462e22c0fe534f1ba3", "tx_index": 17, "block_index": 129, - "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", - "fairminter_tx_hash": "5dbec8408aedd6f8d6d3e7996757c0f4cc868053ef22cea6e506b00fda3c0efd", + "source": "bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z", + "fairminter_tx_hash": "bd690021efec814e7fe79fe8bbe7ff5a11b9eb1340ce43fa8d60363a7cbb875d", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729418982, + "block_time": 1729447178, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false } @@ -14978,7 +14980,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `27f936d6cbc64295fbb696767820d4b39f85fcf3a8bd6345ef8efaf104da5fd0` (str, required) - The hash of the fairmint to return + + tx_hash: `668bf685b6cd3b67b04a2443b8fbe9683abfd2ea36ddc8459375320b4d6d1625` (str, required) - The hash of the fairmint to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -14989,22 +14991,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "27f936d6cbc64295fbb696767820d4b39f85fcf3a8bd6345ef8efaf104da5fd0", + "tx_hash": "668bf685b6cd3b67b04a2443b8fbe9683abfd2ea36ddc8459375320b4d6d1625", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6exq3ktd3r4frkvzl4yvrqjyzz9gauu0zvt4kw", - "fairminter_tx_hash": "f38ae5c8abb6b49f9591e5eaae9ea1d072612f70aaa73853f25ba05480b5076c", + "source": "bcrt1q8g09tmjmlv98gjmy4rhqcv4fulvcasqlsy9czu", + "fairminter_tx_hash": "499cda6c892bff542a02d2b575762157df777df8ab8215209fccd8e795319bdd", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729419011, + "block_time": 1729447208, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8", + "issuer": "bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu", "divisible": true, "locked": false } @@ -15019,7 +15021,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qpt0kqhne88xpxhdekucjewsutuh8v0srmad5le,bcrt1qvvmxpag7eapq07zz0rua2xxaf3ph7mac4j3sql` (str, required) - The addresses to search for + + addresses: `bcrt1qphcgel4555re0q3xjhgkvntrcugp5emt47xvgx,bcrt1qve0h0j4n8w7657wznnjfhtte9wlhz5tue6u3z8` (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. @@ -15038,8 +15040,8 @@ Returns a list of unspent outputs for a list of addresses "value": 4949970000, "confirmations": 50, "amount": 49.4997, - "txid": "88fe13bdf36a7bfdfaa455ba43f3c24030499c216971c57cd3c209db4a07768a", - "address": "bcrt1qpt0kqhne88xpxhdekucjewsutuh8v0srmad5le" + "txid": "28fec8fcd1026258e6c92cf5a689893ec45f55b47b63d19618237da7ae57d293", + "address": "bcrt1qphcgel4555re0q3xjhgkvntrcugp5emt47xvgx" }, { "vout": 2, @@ -15047,8 +15049,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 40, "amount": 0.001, - "txid": "e62f8caf168fc9eb36b430ed7e39694d429645e89d35fb4c3a54b21b3dd32b80", - "address": "bcrt1qvvmxpag7eapq07zz0rua2xxaf3ph7mac4j3sql" + "txid": "ea7f3e0c42a8b5fd1d052a801db5c9b934b7cbead7d495511fbd6ec515a775d9", + "address": "bcrt1qve0h0j4n8w7657wznnjfhtte9wlhz5tue6u3z8" } ], "next_cursor": null, @@ -15061,7 +15063,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx` (str, required) - The address to search for + + address: `bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad` (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 @@ -15077,28 +15079,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "f94389c8104896b2fb6c6d7b4817801601921cc4e3297283105268f28b027109" + "tx_hash": "efd3181b365de6670bf1a6547dfbff5b41c38a0175263f31288db454ca4fb931" }, { - "tx_hash": "291954d409cde1ab25a8963ca4e7281e19eb8e0d2e85bb42b68cba304f6afd0b" + "tx_hash": "a7f1e7f9af3ae9618d3689bb69672337531d72319332b589e7f852271c4c6932" }, { - "tx_hash": "8d23f1890ae5570e81293c9c05077a8b43c14f577b2e3b74edf1f125a6764c57" + "tx_hash": "130bd2486665083b2f9e2f3effca5ee96a8a412f872cb211754d78da496d1465" }, { - "tx_hash": "9e959e4d7992f9ebacdffa06990aeb2dc4ae9b61a3bce8e456f2a54430c2047a" + "tx_hash": "c44214262fb9f90792336bd580ab022052cc529bde6f2c26e90fb57838900d68" }, { - "tx_hash": "b97859d82df08aec2a7034a1721052c7eb6e72e5a41716e18796c69e00b4a59b" + "tx_hash": "db2fc3ded8c751431df8bb8e84c166f6f64cf606ee00df30b3852e9324a6547a" }, { - "tx_hash": "f34d6f9e951e1f65aeec2550ceeaefec67e13aa7c7ec069886aa14e508a81fab" + "tx_hash": "7b97042bb5da615e892512f29814c09d270876608344f215c9955b2991b8dab2" }, { - "tx_hash": "fa630def9f37d80f4fb7036a427e5b2458137478095ee22a8bd99036659e19bf" + "tx_hash": "fab5dda40be9b5a187883473c80286bfbc52ec97de1c45cd45d018ab990413c0" }, { - "tx_hash": "d5655c17204f4afcd976f8e236802d6ba005c5eb6c5c851c9f9df06a67b362cc" + "tx_hash": "bf68e49ab1ffae81693d197b3de1bb5c91e0725e1272f025cd6f15af53e820c7" } ], "next_cursor": null, @@ -15111,7 +15113,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qvw7xglaetvdge240qu8ag7ecneh07geysd0hy0` (str, required) - The address to search for. + + address: `bcrt1qvkluz3xu0dwkdu6whlkfuz0j7q7etzfpr6le3w` (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. @@ -15124,8 +15126,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 8, - "tx_hash": "2cc5d11d7cf036554b2248d330e894ac68203a296a5a937032a5a04a9fbd98ed" + "block_index": 1, + "tx_hash": "cb609bae35482ff887e053df559ac2aa23faba288ea40ff33b513a7d77d5f829" } } ``` @@ -15135,7 +15137,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qpt0kqhne88xpxhdekucjewsutuh8v0srmad5le` (str, required) - The address to search for + + address: `bcrt1qphcgel4555re0q3xjhgkvntrcugp5emt47xvgx` (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 @@ -15156,7 +15158,7 @@ Returns a list of unspent outputs for a specific address "value": 4949970000, "confirmations": 50, "amount": 49.4997, - "txid": "88fe13bdf36a7bfdfaa455ba43f3c24030499c216971c57cd3c209db4a07768a" + "txid": "28fec8fcd1026258e6c92cf5a689893ec45f55b47b63d19618237da7ae57d293" } ], "next_cursor": null, @@ -15169,7 +15171,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q24aj6a7vp0jq3uzy3sx4rf5096cwzdgctxkrc8` (str, required) - Address to get pubkey for. + + address: `bcrt1q65ns0x68j987sqd28ag5hx97x82m0q3ycpc2tu` (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. @@ -15181,7 +15183,7 @@ Get pubkey for an address. ``` { - "result": "03affaa19ddc10bf87091cfd5b2bb70bbf61dbbe6e47c42d281a8eb11cd0064647" + "result": "03e74d003a79154c856cdee50e89fb7c82ac054c50ea8ea09ca5c6c5316bdf6d21" } ``` @@ -15190,7 +15192,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `02a83ab7fd07527fb6cb0bb0d1ca37d3a76fa25043d0194cf8f227b2f523ce89` (str, required) - The transaction hash + + tx_hash: `364648d3efb692e0402b022576e164b94ca38d0eb72ff87b014e693371970453` (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. @@ -15202,7 +15204,7 @@ Get a transaction from the blockchain ``` { - "result": "02000000000101802bd33d1bb2543a4cfb359de84596424d69397eed30b436ebc98f16af8c2fe60100000000ffffffff03e803000000000000160014be349a1393f05baf3bf827e20714733ce47e0a2100000000000000000c6a0a4533ae9c62bb15aa58a3dced08270100000016001463bc647fb95b1a8caaaf070fd47b389e6eff23240247304402201f8dee0903c0db6d0d7fdd76ba352904f8c9fbb00bc2342ace11312d2cb3e05f02201f0ab9fd9b6ff44fff1c8d12bb74ad3f3b0b790c30c3e1f6b11b40aa6952fb5101210209d94ed54c33b6494134dd0fd179ad960f0c4cb1fe3ad5c8b7011adfaa0f90cb00000000" + "result": "02000000000101d975a715c56ebd1f5195d4d7eacbb734b9c9b51d802a051dfdb5a8420c3e7fea0100000000ffffffff03e8030000000000001600140d4744efbb5118ac528ed11ff2ccbd4e8d1bd71900000000000000000c6a0add22a360d0ab3c90ac3ddced08270100000016001465bfc144dc7b5d66f34ebfec9e09f2f03d95892102473044022038b9598ddc45655a2e0d9d99c0284b650fb9cbb01ca4bb7f1bf910f110697e6a022030960230013a7f00e02b1d579274f067c72e6a5d25b5809f9bd0c21a1864be67012103e527d89494f32c31ed02e89104a84207451621a77a3763582c55e4434060677300000000" } ``` @@ -15297,27 +15299,27 @@ Returns all mempool events { "result": [ { - "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", + "tx_hash": "820a058a0b434d28a187f1c447a09de52625d8866c23773f55519d0719fc1128", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", + "tx_hash": "820a058a0b434d28a187f1c447a09de52625d8866c23773f55519d0719fc1128", "tx_index": 63 }, - "timestamp": 1729419299.9227293 + "timestamp": 1729447474.6791806 }, { - "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", + "tx_hash": "820a058a0b434d28a187f1c447a09de52625d8866c23773f55519d0719fc1128", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "destination": "bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad", "memo": null, "quantity": 10000, - "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "source": "bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z", "status": "valid", - "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", + "tx_hash": "820a058a0b434d28a187f1c447a09de52625d8866c23773f55519d0719fc1128", "tx_index": 63, "asset_info": { "divisible": true, @@ -15328,22 +15330,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729419299.9227293 + "timestamp": 1729447474.6791806 }, { - "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", + "tx_hash": "820a058a0b434d28a187f1c447a09de52625d8866c23773f55519d0719fc1128", "event": "CREDIT", "params": { - "address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "address": "bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", + "event": "820a058a0b434d28a187f1c447a09de52625d8866c23773f55519d0719fc1128", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -15353,22 +15355,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729419299.9227293 + "timestamp": 1729447474.6791806 }, { - "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", + "tx_hash": "820a058a0b434d28a187f1c447a09de52625d8866c23773f55519d0719fc1128", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "address": "bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z", "asset": "XCP", "block_index": 196, - "event": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", + "event": "820a058a0b434d28a187f1c447a09de52625d8866c23773f55519d0719fc1128", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -15378,30 +15380,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729419299.9227293 + "timestamp": 1729447474.6791806 }, { - "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", + "tx_hash": "820a058a0b434d28a187f1c447a09de52625d8866c23773f55519d0719fc1128", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729419299.9227293, + "block_time": 1729447474.6791806, "btc_amount": 0, - "data": "020000000000000001000000000000271080d0f087d8a9e67fb02f22722fc8b975fb1e6c473e", + "data": "020000000000000001000000000000271080eb3525eeb21513f819569078c868d2b17f43d8c9", "destination": "", "fee": 10000, - "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", - "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", + "source": "bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z", + "tx_hash": "820a058a0b434d28a187f1c447a09de52625d8866c23773f55519d0719fc1128", "tx_index": 63, - "utxos_info": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9:1", + "utxos_info": "820a058a0b434d28a187f1c447a09de52625d8866c23773f55519d0719fc1128:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "address": "bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad", "memo": null, "asset_info": { "divisible": true, @@ -15415,7 +15417,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729419299.9227293 + "timestamp": 1729447474.6791806 } ], "next_cursor": null, @@ -15446,19 +15448,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", + "tx_hash": "820a058a0b434d28a187f1c447a09de52625d8866c23773f55519d0719fc1128", "event": "CREDIT", "params": { - "address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "address": "bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", + "event": "820a058a0b434d28a187f1c447a09de52625d8866c23773f55519d0719fc1128", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -15468,7 +15470,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729419299.9227293 + "timestamp": 1729447474.6791806 } ], "next_cursor": null, @@ -15481,7 +15483,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9` (str, required) - The hash of the transaction to return + + tx_hash: `820a058a0b434d28a187f1c447a09de52625d8866c23773f55519d0719fc1128` (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 @@ -15501,27 +15503,27 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", + "tx_hash": "820a058a0b434d28a187f1c447a09de52625d8866c23773f55519d0719fc1128", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", + "tx_hash": "820a058a0b434d28a187f1c447a09de52625d8866c23773f55519d0719fc1128", "tx_index": 63 }, - "timestamp": 1729419299.9227293 + "timestamp": 1729447474.6791806 }, { - "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", + "tx_hash": "820a058a0b434d28a187f1c447a09de52625d8866c23773f55519d0719fc1128", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "destination": "bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad", "memo": null, "quantity": 10000, - "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "source": "bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z", "status": "valid", - "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", + "tx_hash": "820a058a0b434d28a187f1c447a09de52625d8866c23773f55519d0719fc1128", "tx_index": 63, "asset_info": { "divisible": true, @@ -15532,22 +15534,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729419299.9227293 + "timestamp": 1729447474.6791806 }, { - "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", + "tx_hash": "820a058a0b434d28a187f1c447a09de52625d8866c23773f55519d0719fc1128", "event": "CREDIT", "params": { - "address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "address": "bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", + "event": "820a058a0b434d28a187f1c447a09de52625d8866c23773f55519d0719fc1128", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -15557,22 +15559,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729419299.9227293 + "timestamp": 1729447474.6791806 }, { - "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", + "tx_hash": "820a058a0b434d28a187f1c447a09de52625d8866c23773f55519d0719fc1128", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", + "address": "bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z", "asset": "XCP", "block_index": 196, - "event": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", + "event": "820a058a0b434d28a187f1c447a09de52625d8866c23773f55519d0719fc1128", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729419295, + "block_time": 1729447470, "asset_info": { "divisible": true, "asset_longname": null, @@ -15582,30 +15584,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729419299.9227293 + "timestamp": 1729447474.6791806 }, { - "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", + "tx_hash": "820a058a0b434d28a187f1c447a09de52625d8866c23773f55519d0719fc1128", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729419299.9227293, + "block_time": 1729447474.6791806, "btc_amount": 0, - "data": "020000000000000001000000000000271080d0f087d8a9e67fb02f22722fc8b975fb1e6c473e", + "data": "020000000000000001000000000000271080eb3525eeb21513f819569078c868d2b17f43d8c9", "destination": "", "fee": 10000, - "source": "bcrt1q8hxrt2q533y43mwqxmtaha30yty7uluvgmdut3", - "tx_hash": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9", + "source": "bcrt1ql3ymygdk25j74t6pxcz3xjxr5e7qzvh6v5ym3z", + "tx_hash": "820a058a0b434d28a187f1c447a09de52625d8866c23773f55519d0719fc1128", "tx_index": 63, - "utxos_info": "55cb9e094ee5aa0f347f94fb786c108c298ad5f4278b7494acd6df2f28816de9:1", + "utxos_info": "820a058a0b434d28a187f1c447a09de52625d8866c23773f55519d0719fc1128:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q6rcg0k9fuelmqtezwghu3wt4lv0xc3e7s7h6fx", + "address": "bcrt1qav6jtm4jz5flsx2kjpuvs6xjk9l58kxfg4a8ad", "memo": null, "asset_info": { "divisible": true, @@ -15619,7 +15621,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729419299.9227293 + "timestamp": 1729447474.6791806 } ], "next_cursor": null, From 10324f852af903474bda1d1409abc0a75fa3ce6d Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sun, 20 Oct 2024 19:55:36 +0000 Subject: [PATCH 36/37] bump version --- apiary.apib | 2 +- counterparty-core/counterpartycore/lib/config.py | 2 +- .../counterpartycore/test/regtest/apidoc/blueprint-template.md | 2 +- counterparty-core/requirements.txt | 2 +- counterparty-rs/Cargo.lock | 2 +- counterparty-rs/Cargo.toml | 2 +- counterparty-wallet/requirements.txt | 2 +- docker-compose.yml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/apiary.apib b/apiary.apib index 3bd59c85d9..aa91a65e37 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1438,7 +1438,7 @@ Returns server information and the list of documented routes in JSON format. "result": { "server_ready": true, "network": "mainnet", - "version": "10.5.0-alpha.3", + "version": "10.5.0-rc.1", "backend_height": 850214, "counterparty_height": 850214, "documentation": "https://counterpartycore.docs.apiary.io/", diff --git a/counterparty-core/counterpartycore/lib/config.py b/counterparty-core/counterpartycore/lib/config.py index 9b8e56b10b..91b16b1756 100644 --- a/counterparty-core/counterpartycore/lib/config.py +++ b/counterparty-core/counterpartycore/lib/config.py @@ -5,7 +5,7 @@ # Semantic Version -__version__ = "10.5.0-alpha.3" # for hatch +__version__ = "10.5.0-rc.1" # for hatch VERSION_STRING = __version__ version = VERSION_STRING.split("-")[0].split(".") VERSION_MAJOR = int(version[0]) diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/blueprint-template.md b/counterparty-core/counterpartycore/test/regtest/apidoc/blueprint-template.md index 4fdc53afa2..daecc7e1da 100644 --- a/counterparty-core/counterpartycore/test/regtest/apidoc/blueprint-template.md +++ b/counterparty-core/counterpartycore/test/regtest/apidoc/blueprint-template.md @@ -158,7 +158,7 @@ Returns server information and the list of documented routes in JSON format. "result": { "server_ready": true, "network": "mainnet", - "version": "10.5.0-alpha.3", + "version": "10.5.0-rc.1", "backend_height": 850214, "counterparty_height": 850214, "documentation": "https://counterpartycore.docs.apiary.io/", diff --git a/counterparty-core/requirements.txt b/counterparty-core/requirements.txt index adad2e19dd..ffac2ba0a7 100644 --- a/counterparty-core/requirements.txt +++ b/counterparty-core/requirements.txt @@ -34,4 +34,4 @@ JSON-log-formatter==1.0 yoyo-migrations==8.2.0 gunicorn==23.0.0 waitress==3.0.0 -counterparty-rs==10.5.0-alpha.3 +counterparty-rs==10.5.0-rc.1 diff --git a/counterparty-rs/Cargo.lock b/counterparty-rs/Cargo.lock index 629801bccd..6ceb0f11dd 100644 --- a/counterparty-rs/Cargo.lock +++ b/counterparty-rs/Cargo.lock @@ -382,7 +382,7 @@ checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" [[package]] name = "counterparty-rs" -version = "10.5.0-alpha.3" +version = "10.5.0-rc.1" dependencies = [ "bip32", "bitcoin 0.29.2", diff --git a/counterparty-rs/Cargo.toml b/counterparty-rs/Cargo.toml index 9382e28ffd..ab03841d83 100644 --- a/counterparty-rs/Cargo.toml +++ b/counterparty-rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "counterparty-rs" -version = "10.5.0-alpha.3" +version = "10.5.0-rc.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/counterparty-wallet/requirements.txt b/counterparty-wallet/requirements.txt index 3c759556b5..5644485030 100644 --- a/counterparty-wallet/requirements.txt +++ b/counterparty-wallet/requirements.txt @@ -5,4 +5,4 @@ colorlog==6.8.0 python-dateutil==2.8.2 requests==2.32.0 termcolor==2.4.0 -counterparty-core==10.5.0-alpha.3 +counterparty-core==10.5.0-rc.1 diff --git a/docker-compose.yml b/docker-compose.yml index ddb3788c01..0dcbda19fd 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -15,7 +15,7 @@ x-addrindexrs-common: &addrindexrs-common restart: unless-stopped x-counterparty-common: &counterparty-common - image: counterparty/counterparty:v10.5.0-alpha.3 + image: counterparty/counterparty:v10.5.0-rc.1 stop_grace_period: 1m volumes: - data:/root/.bitcoin From 3aac51e99c027d09d4f55406a16426e23cae948c Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Sun, 20 Oct 2024 16:07:18 -0400 Subject: [PATCH 37/37] Tweak Release Notes for v10.5.0 --- release-notes/release-notes-v10.5.0.md | 27 +++++++++++++------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/release-notes/release-notes-v10.5.0.md b/release-notes/release-notes-v10.5.0.md index 5d0858c39c..aa963b95f0 100644 --- a/release-notes/release-notes-v10.5.0.md +++ b/release-notes/release-notes-v10.5.0.md @@ -1,6 +1,6 @@ -# Release Notes - Counterparty Core v10.5.0 (2024-10-19) +# Release Notes - Counterparty Core v10.5.0 (2024-10-20) -This is a hotfix release and includes fixes for a number of critical stability bugs in the nodes software as well as significant performance optimizations for parsing Fair Mint transactions. +This is a hotfix release and includes fixes for a number of critical stability bugs in the node software as well as significant performance optimizations for parsing Fair Mint transactions. We have also made numerous other bugfixes and tweaks to the API and CLI in response to user feedback. # Upgrading @@ -10,29 +10,28 @@ This update requires an automatic reparse from block 865999. ## Bugfixes -- Fix non-deterministic bug in asset name generation +- Fix critical non-determinism in asset name generation - Fix subasset name in `issuances` table when created by a fairminter +- Fix check for when a fairmint reachs its hard cap +- Fix missing check for locked asset descriptions - Fix missing balance check for fairminter creation -- Fix missing check of locked description -- Fix missing compound index on `status`, `tx_index` and `asset_longname` -- Fix checking when a fairmint reach the hard cap -- Fix divisibility check when creating a fairminter -- Fix description checking when creating a fairminter +- Fix divisibility check for fairminter creation +- Fix description check for fairminter creation ## Codebase -- Mandatory reparse for all alphas and betas +- Redo mandatory reparses for all pre-release versions - Add missing index to `address_events` table - Add missing compound index to `issuances` table -- Support several required reparsing by major version +- Add missing compound index on `status`, `tx_index` and `asset_longname` - Optimize database `rowtracer` - Optimize `ledger.get_last_issuance()`, `ledger.asset_issued_total()` and `ledger.asset_destroyed_total()` -- Tweak thread handling logic +- Tweak thread-handling logic ## API -- Have `--force` bypass checks that node is caught up -- Have `/v2/blocks/last` return the last parsed block and not the block currently being parsed +- Have `--force` properly bypass checks that node is caught up +- Have `/v2/blocks/last` return the last-parsed block and not the block currently being parsed - Change route `/v2/fairminters//mints` to `/v2/fairminters//fairmints` - Add the following new routes: - `/v2/fairmints` @@ -44,7 +43,7 @@ This update requires an automatic reparse from block 865999. - Disable mempool synchronization when `--no-mempool` is passed - Make the number of Waitress threads configurable - Make the number of Gunicorn threads per worker configurable -- Log all configuration options on startup at `DEBUG` level +- Log all configuration options on startup at the `DEBUG` level # Credits